W What is the output of this C code ? | Recursion Program in C | Recursion in C August 28, 2021 1 Min Read 0 1287 August 28, 2021 1 Min Read 0 1287 Answer : D. This code will generate an error. Recursion and Iteration Editor Continue Reading
R Ravi and Rupali are asked to write a program to sum the rows of 2X2 matrices stored in the array A..? August 28, 2021 1 Min Read 0 214 August 28, 2021 1 Min Read 0 214 Answer : B. Code b will execute faster than a Recursion and Iteration Editor Continue Reading
W What is the output of the following pseudo code ? Int a = 456, b, c, d = 10; b = a/d; c = a-b; print c ? August 28, 2021 1 Min Read 0 2789 August 28, 2021 1 Min Read 0 2789 Answer : B. 411 Recursion and Iteration Editor Continue Reading
I 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) ? August 28, 2021 1 Min Read 0 1090 August 28, 2021 1 Min Read 0 1090 Answer : A . Differ by 80 Recursion and Iteration Editor Continue Reading
T The construct “if (condition) then A else B” is used for which of the following purposes ? August 28, 2021 1 Min Read 0 153 August 28, 2021 1 Min Read 0 153 Answer : A. Decision making Recursion and Iteration Editor Continue Reading
A Ashima wants to print a pattern which includes checking and changing a variables value iteratively She decides to use a loop/condition … August 28, 2021 1 Min Read 0 771 August 28, 2021 1 Min Read 0 771 Answer : C. Do-while loop Recursion and Iteration Editor Continue Reading
W What is the output of this C code ? | Recursive Function in C Program August 28, 2021 1 Min Read 0 643 August 28, 2021 1 Min Read 0 643 Answer : D. Error Recursion and Iteration Editor Continue Reading