101. |
What will the value of variable a?
int a = 10 + 5 * 2 * 8 / 2 + 4;
|
||||||||
Answer:
Option (b) |
102. |
What will the value of variable a?
int a = 4 + 5/2*10 + 5;
|
||||||||
Answer:
Option (a) |
103. |
What will the value of variable a?
int a = 10 + 2 * 12 /(3*2) + 5;
|
||||||||
Answer:
Option (b) |
104. |
Which of the following correctly shows the hierarchy of arithmetic operations in C?
|
||||||||
Answer:
Option (c) |
105. |
In the following expression guess the correct order of execution of operator
z = x - y / z * 1 % 2 + 1
|
||||||||
Answer:
Option (a) |
106. |
What is the output?
void main()
|
||||||||
Answer:
Option (b) |
107. |
What is the output?
void main()
|
||||||||
Answer:
Option (b) |