Difference between shift left and shift right?
Answer / devesh kumar patel
in shift left we multiply the no by 2^n and in right shift
we multiply the no by 2^-n (where 'n' is no. of shift)
| Is This Answer Correct ? | 7 Yes | 1 No |
How would you differentiate between a pre and post increment operators while overloading?
Profiler in projects?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
Can you Mention some Application of C/C++?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
What is vector processing?
What is a manipulative person?
What are C++ inline functions?
Array base access faster or pointer base access is faster?
Define friend function.