|
|
which of the following is not language
- Pascal
- pl/1
- findles
- java
which of the following stores highest amt of data. - Floppy
- Cd
- Book
- None of above
main() { int x=10,y=20,z=5; x=x cout < } - 1
- 0
- 2
- None of the Given Answers
main() { int i,j=9999; char buff[5]; i=sprintf(buff,"%d",j);
cout< }
- 9999, 4
- 9999,5
- 4,9999
- 9999,1
class ab{}; main() { cout< }
- 1
- 0
- 2
- 4
class ab { int i; public: virtual void fun(){} } main() { cout< } - 4
- 3
- 7
- None of the Given Answers
#define f(a,b) a+b #define g(x,y) x*y main() { int i; i=f(4,g(5,6)); cout< } - 34
- 43
- 56
- None of the Given Answers
mutable is used for
- changing the value in the const functions
- changing the value in the static functions
- changing the value in the normal functions
- None of the Given Answers
__stdcall calling convention - stack is cleaned by the callee
- Queue is cleaned by the master
- Queue is cleaned by the callee
- None of the Given Answers
What statement is relevant foo & const ref - This is not a good practise since references are always constants
- This is not a good practise since references are always varies
- This is a good practise since references are always constants
- None of the Given Answers
|
|
|