0 votes
1 answer
124
If $log_{4}\left ( \frac{2}{x} \right )+log_{16}\left ( 0.5 \right )=2$ then$(A)$ $4log_{4}x=-7$$\left ( B \right )2log_{4}x=-7$$\left ( C \right )2log_{16}x=-7$$\left ( ...
0 votes
1 answer
125
Which of the following is /are TRUE ?S1 : $n^{a} . n^{b} = 0$$((n^{a})^{b})$ for any a, b 1S2 : $(n^{a})^{b} = 0$$((n^{a})^{b})$ for any a, b 1(1) Both S1 and S2(2) S1 ...
1 votes
2 answers
127
How addition of $+3$ and $-3$ in sign magnitude form is $-5?$
0 votes
1 answer
128
For creating a N integer arrayis there any mistake in this line?int numArray[N]=(int *) malloc(N);
0 votes
1 answer
131
1 votes
0 answers
133
void find(int x){ static int i=10,y=0; y=y+i; for(i;i>0;i=i-10){ if(x!=0) find(x-1); else{ printf("%d",y); } } }What will be output printed for find(4)?
2 votes
0 answers
135
What will be output of the program?int d=0; int f(int a,int b){ int c; d++; if(b==3) return a*a*a; else{ c=f(a,b/3); return(c*c*c); } } int main(){ printf("%d",f(4,81)); ...
1 votes
0 answers
137
2 votes
3 answers
138
Runtime stack doesnot contain(A) Local variables(B) Static Variables(C) Parameter Passed(D) Return Address
0 votes
1 answer
139
void print(int i){ static int x=4; if(i!=0){ print( x); } printf("%d",x); }What will be output printed for print(10)?Will it print value as call by value or call by refer...
1 votes
0 answers
140
If $L_{1}\preceq L_{2}$ and $L_{2}$ turing recognizableThen $L_{1}$ cannot beA)not RELB)Context SensitiveC)Context Free​​​​​​​​​​​​​​D)Recursi...