Construct a binary search tree by inserting 8, 6, 12, 3, 10, 9 one after another. To make the resulting tree as AVL tree which of the following is required?

Data Structures and Algorithms Quiz Part2

Quiz
•
Computers
•
University
•
Hard
Comprehensive Viva
Used 3+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
One right rotation only
One left rotation followed by two right rotations
One left rotation and one right rotation
The resulting tree itself is AVL
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Consider a hash table of size seven, with starting index zero, and a hash function (2x + 5) mod7. Assuming the hash table is initially empty, which of the following is the contents of the table when the sequence 1, 4, 9, 6 is inserted into the table using closed hashing? Note that '_' denotes an empty location in the table.
9, _, 1, 6, _, _, 4
1, _, 6, 9, _, _, 4
4, _, 9, 6, _, _, 1
1, _, 9, 6, _, _, 4
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Consider the following C program where TreeNode represents a node in a binary tree
struct TreeNode
{ struct TreeNode *leftChild;
struct TreeNode *rightChild;
int element; };
int CountNodes(struct TreeNode *t)
{ if((t==NULL)||((t->leftChild==NULL) && (t->rightChild==NULL)))
return 0;
else
{ return 1+CountNodes(t->leftChild)+CountNodes(t->rightChild) } }
The value returned by CountNodes when a pointer to the root of a binary tree is passed as its argument is
number of nodes
number of leaf nodes
number of non leaf nodes
number of leaf nodes-number of non leaf nodes
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
How many distinct binary search trees can be created out of 6 distinct keys?
7
36
140
132
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Suppose we are sorting an array of eight integers using quicksort, and we have just finished the first partitioning with the array looking like this: 2 5 1 7 9 12 11 10 Which statement is correct?
The pivot could be either the 7 or the 9.
The pivot could be the 7, but it is not the 9
The pivot is not the 7, but it could be the 9
Neither the 7 nor the 9 is the pivot.
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
In a complete k-ary tree, every internal node has exactly k children or no child. The number of leaves in such a tree with n internal nodes is:
nk
(n - 1) k+ 1
n( k - 1) + 1
n(k - 1)
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
If a node in a Binary search tree has two children, then its inorder predecessor has .........
No child
No left child
No right child
Two children
Create a free account and access millions of resources
Similar Resources on Quizizz
20 questions
ASD - A

Quiz
•
University
20 questions
Data Structures

Quiz
•
University
20 questions
Algorithm questions

Quiz
•
12th Grade - University
20 questions
SMARTICUS

Quiz
•
University
25 questions
Data Structures 1

Quiz
•
University
15 questions
AlgoMania Quiz

Quiz
•
University
25 questions
C++ with DS

Quiz
•
University
20 questions
Lecture EIGHT.

Quiz
•
University
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
20 questions
Math Review - Grade 6

Quiz
•
6th Grade
20 questions
math review

Quiz
•
4th Grade
5 questions
capitalization in sentences

Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance

Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions

Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines

Quiz
•
Professional Development
12 questions
Dividing Fractions

Quiz
•
6th Grade