Functions – General Questions1. The keyword used to transfer control from a function back to the calling function is A. switch…
Expressions – Yes / No Questions1. Are the following two statement same? 1. a <= 20 ? (b = 30): (c = 30);…
Expressions – True / False Questions1. Associativity has no role to play unless the precedence of the operator is the same. A. True…
Expressions – Find Output of Program1. What will be the output of the program? A. -2, 3, 1, 1 B. 2, 3, 1,…
Expressions – General Questions1. Which of the following is the correct order of evaluation for the below expression? A. * /…
Declarations and Initializations – Yes / No Questions1. Is there any difference in the following declarations? A. Yes B. No 2. Suppose a program is…
Declarations and Initializations – True / False Questions1. A long double can be used if range of a double is not enough to accommodate a…
Declarations and Initializations – Point Out Correct Statements1. Which of the declaration is correct? A. int length; B. char int; C. int long; D. float…
Declarations and Initializations – Point Out Errors1. Point out the error in the following program (if it is compiled with Turbo C compiler). A.…
Declarations and Initializations – Find Output of Program1. What is the output of the program given below? A. 0, 1, 2 B. 1, 2, 3…