What is the output of this C code ? | Recursion Program in C | Recursion in C Answer : D. This code will generate an error. View Answer
Ravi and Rupali are asked to write a program to sum the rows of 2X2 matrices stored in the array A..? Answer : B. Code b will execute faster than a View Answer
What is the output of the following pseudo code ? Int a = 456, b, c, d = 10; b = a/d; c = a-b; print c ? Answer : B. 411 View Answer
Integer a =40, b =35, c=20, d =10 Comment about the output of the following two statements Print a*b/c-d Print a*b/(c-d) ? Answer : A . Differ by 80 View Answer
The construct “if (condition) then A else B” is used for which of the following purposes ? Answer : A. Decision making View Answer
Ashima wants to print a pattern which includes checking and changing a variables value iteratively She decides to use a loop/condition … Answer : C. Do-while loop View Answer