CS301-Midterm
1 / 50
is a binary tree where every node has a value, every node's left subtree contains only values less than or equal to the node's value, and every node's right subtree contains only values that are greater then or equal ?
2 / 50
A tree is an AVL tree if
3 / 50
Consider the following sequence of push operations in a stack: stack.push(’7’); stack.push(’8’); stack.push(’9’); stack.push(’10’); stack.push(’11’); stack.push(’12’);
4 / 50
bool LessThan( SomeClass anotherObject ); Which of the following tests in the client code correctly compares two class objects alpha and beta?
5 / 50
Each node in Binary Search Tree has
6 / 50
We access elements in AVL Tree in,
7 / 50
Parameters in function call are passed using,
8 / 50
A queue where the de-queue operation depends not on FIFO, is called a priority queue
9 / 50
The tree data structure is a
10 / 50
In which of the traversal method, the recursive calls can be used to traverse a binary tree ?
11 / 50
In an array list the current element is
12 / 50
Is a data structure that can grow easily dynamically at run time without having to copy existing elements?
13 / 50
What is the maximum depth of recursive calls a function may make?
14 / 50
Consider the following function: void test_a(int n) { cout << n << " "; if (n>0) test_a(n-2); } What is printed by the call test_a(4)?
15 / 50
What boolean expression will be true when cursor refers to the tail node of the list?
16 / 50
_________ is a binary tree where every node has a value, every node's left subtree contains only values less than or equal to the node's value, and every node's right subtree contains only values that are greater then or equal?
17 / 50
18 / 50
The expression AB+C* is called?
19 / 50
20 / 50
The nodes with no successor are called _________
21 / 50
Which of the following can be used to reverse a string value,
22 / 50
A Compound Data Structure is the data structure which can have multiple data items of same type or of different types.Which of the following can be considered compound data structure?
23 / 50
The operation for removing an entry from a stack is traditionally called:
24 / 50
The difference between a binary tree and a binary search tree is that ,a binary search tree has
25 / 50
The data of the problem is of 2GB and the hard disk is of 1GB capacity, to solve this problem we should
26 / 50
Which one of the following statements is NOT correct?
27 / 50
28 / 50
Suppose n is the number of nodes in a complete Binary Tree then maximum steps required for a search operation are,
29 / 50
AVL Tree is,
30 / 50
The operation for adding an entry to a stack is traditionally called :
31 / 50
Which of the above is/are related to normal queues?
32 / 50
33 / 50
________ is the maximum number of nodes that you can have on a stack-linked list ?
34 / 50
Which of the following abstract data types are NOT used by Integer Abstract Data type group?
35 / 50
36 / 50
Which one is a self- referential data type?
37 / 50
We can add elements in QUEUE From _________
38 / 50
39 / 50
Where does the push member function place the new entry in the array?
40 / 50
Which of the following is a non linear data structure?
41 / 50
Which one of the following calling methods does not change the original value of the argument in the calling function?
42 / 50
43 / 50
Which one of the following is a valid postfix expression?
44 / 50
45 / 50
46 / 50
What statement changes currentNode so that it refers to the next node?
47 / 50
Which statement of the following statements is incorrect?
48 / 50
49 / 50
50 / 50
Your score is
The average score is 51%
Restart quiz