Time Left - 10:00 mins

UGC-NET 2017 SpeedTest Quiz 3(DS and Algorithms )

Attempt now to get your rank among 562 students!

Question 1

Recursive functions are executed in a

Question 2

What would be the output of the following program, if run from the command line as “myprog 1 2 3” ?
main (int argc, char * argv[ ])
{
int i ;
i = argv [1] + argv [2] + argv[3] ;
printf (“% d”, i);
}

Question 3

What property does AVL follows :

Question 4

Which of the statements are true?
I. Function overloading is done at compile time.
II. Protected members are accessible to the member of derived class.
III. A derived class inherits constructors and destructors.
IV. A friend function can be called like a normal function.
V. Nested class is a derived class.

Question 5

With regard to linked list, which of the following statement is false?

Question 6

Consider the following pseudocode segment:

The value of K after the execution of this code shall be

Question 7

The mechanism that binds code and data together and keeps them secure from outside world is known as

Question 8

The Servlet Response interface enables a servlet to formulate a response for a client using the method ___________.

Question 9

The number of nodes of height h in any n-element heap is _________. 

Question 10

Number of binary trees formed with 5 nodes are
  • 562 attempts
  • 5 upvotes
  • 19 comments
Apr 3GATE & PSU CS