Time Left - 08:00 mins

ISRO Quiz 2023 31

Attempt now to get your rank among 59 students!

Question 1

Consider the following function recursion(a, b). What is the value of recursion( 8,6)?
int recursion(int a, int b)
{
if (a == 0)
return b;
return recursion( a -1, a + b);
}

Question 2

Which of the following is true for input restricted double-ended queue?

Question 3

What will be the output of the following program? Assume address takes 2 bytes.

Question 4

What will be the output of the program?


[if input given is 100,101]

Question 5

Select the option that is related to the third term in the same way as the second term is related to the first term and the sixth term is related to the fifth term.

120 : 126 :: 45 : ? :: 90 : 98

  • 59 attempts
  • 0 upvotes
  • 0 comments
Dec 5GATE & PSU CS