Time Left - 10:00 mins

Campus Recruitment Tech Quiz-5

Attempt now to get your rank among 188 students!

Question 1

What is the output of the following program-

main ()

{

int a = 324;

char * b = (char *) & a;

b++;

*b = 2;

printf("%d”, a);
}

Question 2

a << 1 is equivalent to?

Question 3

Which of the following input will give best case time for selection sort?

Question 4

What is the time complexity of following code:

int a = 0;

for (i = 0; i < N; i++)

{

for (j = N; j > i; j--)

{

a = a + i + j;

}

}

Question 5

Select ___________ dept_name

from instructor;

Here which of the following displays the unique values of the column?

  • 188 attempts
  • 0 upvotes
  • 2 comments
Aug 12GATE & PSU CS