Time Left - 10:00 mins

Campus Recruitment Tech Quiz- 35

Attempt now to get your rank among 208 students!

Question 1

int f(int n)

{

static int i=1;

if(n>=5)

return n;

n=n+i;

i++;

return f(n);

}

What is the return value of f(1)?

Question 2

Which of the following is true regarding structure in C language ?

Question 3

What will be the output of the following C code?

Question 4

Consider the following functional dependencies in a database:

A → B

B → C

D → E

E → D

F → G

F → H

(E, F) → I

The relation (E, D, A, B) is in?

Question 5

The primary key must be
  • 208 attempts
  • 0 upvotes
  • 3 comments
Jul 27GATE & PSU CS