An expression involving byte, int, and literal numbers is promoted to which of these?
Anonymous Quiz
31%
int
42%
long
14%
byte
13%
float
The break statement is used to take control out of switch and continue statement is used to take control of the beginning of the switch?
Anonymous Quiz
73%
Yes
27%
No
🔥1🥰1👏1
Which is more effective while calling the C++ functions?
Anonymous Quiz
27%
call by object
21%
call by pointer
17%
call by value
35%
call by reference
If the elements “A”, “B”, “C” and “D” are placed in a stack and are deleted one at a time, what is the order of removal?
Anonymous Quiz
21%
ABCD
68%
DCBA
7%
DCAB
4%
ABDC
❤1🔥1
Which one of the following symbol is used for creating comments in the javascript:
Anonymous Quiz
19%
\\
45%
//
28%
\* *\
7%
\* */
👍2
Which of these literals can be contained in float data type variable?
Anonymous Quiz
20%
-1.7e+308
37%
-3.4e+038
34%
+1.7e+308
10%
-3.4e+050
For printing the value of a and b given, which printf() statement will you use?
Anonymous Quiz
9%
printf("%Lf %f", a, b);
29%
printf("%Lf %Lf", a, b);
24%
printf("%f %Lf", a, b);
38%
printf("%f %lf", a, b);
👍1👏1
What will be the output of the C++ program?
Anonymous Quiz
28%
Hello
6%
World
31%
Error
36%
Hello World
A linear list of elements in which deletion can be done from one end (front) and insertion can take place only at the other end (rear) is known as _____________
Anonymous Quiz
60%
Queue
23%
Stack
3%
Tree
14%
Linked list