Time Left - 10:00 mins

Campus Recruitment Tech Quiz-17

Attempt now to get your rank among 165 students!

Question 1

Find the right option
#include<stdio.h>
int main()
{
     int n;
     printf("enter a no. : ");
     scanf(" %d",&n);
     (n & 1)?printf("yes"):printf("No");
}

Question 2

Consider the following C-program:

The value of z at the end of program is____.

Question 3

What will be the output of the program?

Question 4

T(n) = 1 if n=1

T(n)= T(n/2) + n else

Question 5

SELECT name

FROM instructor

WHERE salary <= 100000 AND salary >= 90000;

This query can be replaced by which of the following ?

  • 165 attempts
  • 0 upvotes
  • 1 comment
May 29GATE & PSU CS