71. |
What is the output?
void main()
|
||||||||
Answer:
Option (d) |
72. |
Choose a C formatted Input-Output function below.
|
||||||||
Answer:
Option (d) |
73. |
Multiple variable declarations are separated with
|
||||||||
Answer:
Option (c) |
74. |
What is the other name of backslash character constants?
|
||||||||
Answer:
Option (c) |
75. |
Which operator is used to compare two values?
|
||||||||
Answer:
Option (b) |
76. |
The operator ‘&’ is used as
|
||||||||
Answer:
Option (b) |
77. |
Which of the following is a valid relational operator?
|
||||||||
Answer:
Option (c) |
78. |
What will be the value of variable a?
float a = 3.5 + 4.5;
|
||||||||
Answer:
Option (a) |
79. |
What will be the value of variable a?
int a = 3.5 + 4.5;
|
||||||||
Answer:
Option (c) |
80. |
Choose a right statement
int a = 5/2; int b = 5.0/2; int c = 5 / 2.0; int d = 5.0/2.0;
|
||||||||
Answer:
Option (a) |