Time Left - 10:00 mins

Campus Recruitment Tech Quiz-10

Attempt now to get your rank among 247 students!

Question 1

The sorting algorithm which requires least number of swaps in the worst case is

Question 2

SELECT __________

FROM instructor

WHERE dept name= ’Comp. Sci.’;

Which of the following should be used to find the mean of the salary?

Question 3

In OSI model, what are the responsibility of presentation layer ?

Question 4

void main( )

{

static char *s[] = {“Raj”, “Ram”, “Sri”, “Sai”, “Vinay”};

static char **ptr[] = {s + 2, s + 1, s, s + 3, s + 4};

char ***p = ptr;

printf(“%s”, **++p);

}

What is the output?

Question 5

The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, is
  • 247 attempts
  • 1 upvote
  • 4 comments
May 15GATE & PSU CS