In private inheritance derived class members can access base class members that are
1) Public 2) Private 3) Protected
The output of an OR Gate is LOW when
What will be the O/P?
main() { int i=3,a=4,n; float t=4.2; n = a*a / i + i / 2 * t + 2 + t; printf("%d",n); }
What will be the O/P?
main() { int i=0; switch(i){ case 0 : printf("%d",i);break; case 1 : printf("%d",i);break; } }
What will be the O/P?
main() { int q=2,d=3,st; st=q*d/4-12/12+12/3*16/d; printf("st=%d",st); }
what is the electronic signal that cause computer to stop current program?
which is the language for transformational programming?
Which two entities(reading from left to right) are connected by the dot operator(or class member access operator)?
What is the cycle speed for high-end business PCs,servers, and workstations?
The working set hypothesis in paging schemes for memory management is the hypothesis that
Return address will be returned by function to
if (A > B) F=F(G); else if (B > C) F=G(G);
In this , for 75% times A > B and 25% times B > C then, if 10000 instructions are there, what will be the ratio of F to G?
In a compiler there is 36 bit for a word and to store a character 8bits are needed. IN this to store a character two words are appended .Then for storing a K characters string, How many words are needed.
int zap(int n) { if(n<=1) return 1; else return zap(n-3) + zap(n-1); }
The call zap(6) gives the result as?
Virtual memory size depends on
Critical section is
load a
mul a
store t1
load b
mul b
store t2
mul t2
add t1
Then the content in accumulator is
Convert the infix to postfix for A-(B+C)*(D/E)
Assignment operator targets to
How to improve your Interview, Salary Negotiation, Communication & Presentation Skills.
Got a tip or Question?
Let us know