0% found this document useful (0 votes)
237 views14 pages

Chapter9 Nokey

The document contains questions about data structures and algorithms. It asks about array initialization in C, linear data structures, accessing elements in arrays using pointers, types of queues, operations of data structures, outputs of code snippets using arrays and loops, advantages and disadvantages of arrays, representation of strings in memory in C, applications of queues, conditions when popping from an empty queue, time complexity of code using strings, data structures that can implement queues, data structures used in recursion, data structures that allow insertion and deletion from both ends, outputs of code using deque, sorting algorithms and their time complexities, applications of topological sorting of graphs, NP-hard problems, string matching algorithms, calculating distance between nodes in a tree using lowest common ancestor,
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
237 views14 pages

Chapter9 Nokey

The document contains questions about data structures and algorithms. It asks about array initialization in C, linear data structures, accessing elements in arrays using pointers, types of queues, operations of data structures, outputs of code snippets using arrays and loops, advantages and disadvantages of arrays, representation of strings in memory in C, applications of queues, conditions when popping from an empty queue, time complexity of code using strings, data structures that can implement queues, data structures used in recursion, data structures that allow insertion and deletion from both ends, outputs of code using deque, sorting algorithms and their time complexities, applications of topological sorting of graphs, NP-hard problems, string matching algorithms, calculating distance between nodes in a tree using lowest common ancestor,
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

1.

How is an array initialized in C language?


int a[3] = {1, 2, 3};
int a = {1, 2, 3};
int a[] = new int[3]
int a(3) = [1, 2, 3];
...
2.
Which of the following is a linear data structure?
Array
AVL Trees
Binary Trees
Graphs
...
3.
How is the 2nd element in an array accessed based on pointer notation?
*a + 2
*(a + 2)
*(*a + 2)
&(a + 2)
...
4.
Which of the following is not the type of queue?
Priority queue
Single-ended queue
Circular queue
Ordinary queue
...
5.
From following which is not the operation of data structure?
Operations that manipulate data in some way
Operations that perform a computation
Operations that check for syntax errors
Operations that monitor an object for the occurrence of a controlling event
...
6.
What will be the output of the following code snippet?
void solve() {
int a[] = {1, 2, 3, 4, 5};
int sum = 0;
for(int i = 0; i < 5; i++) {
if(i % 2 == 0) {
sum += a[i];
}
}
cout << sum << endl;
}
5
15
9
6
...
7.
What will the output of the following code snippet?
void solve() {
int a[] = {1, 2, 3, 4, 5};
int sum = 0;
for(int i = 0; i < 5; i++) {
if(i % 2 == 0) {
sum += *(a + i);
}
else {
sum -= *(a + i);
}
}
cout << sum << endl;
}
2
15
Syntax Error
3
...
8.
What is the disadvantage of array data structure?
The amount of memory to be allocated should be known beforehand.
Elements of an array can be accessed in constant time.
Elements are stored in contiguous memory blocks.
Multiple other data structures can be implemented using arrays.
...
9.
How are String represented in memory in C?
An array of characters.
The object of some class.
Same as other primitive data types.
LinkedList of characters.
...
10.
What is the output of the following code snippet?
void solve() {
stack<int> s;
s.push(1);
s.push(2);
s.push(3);
for(int i = 1; i <= 3; i++) {
cout << s.top() << “ “;
s.pop();
}
}
321
123
3
1
...
11.
Which of the following is the advantage of the array data structure?
Elements of mixed data types can be stored.
Easier to access the elements in an array
Index of the first element starts from 1.
Elements of an array cannot be sorted
...
12.
What function is used to append a character at the back of a string in C++?
push_back()
append()
push()
insert()
...
13.
Which one of the following is an application of queue data structure
When a resource is shared among multiple consumers.
When data is transferred asynchronously
Load Balancing
All of the above
...
14.
When a pop() operation is called on an empty queue, what is the condition called?
Overflow
Underflow
Syntax Error
Garbage Value
...
15.
What is the time complexity of the following code snippet in C++?
void solve() {
string s = "scaler";
int n = s.size();
for(int i = 0; i < n; i++) {
s = s + s[i];
}
cout << s << endl;
}
O(n)
O(n^2)
O(1)
O(log n)
...
16.
Which of the following data structures can be used to implement queues?
Stack
Arrays
LinkedList
All of the Above
...
17.
Which of the following data structures finds its use in recursion?
Stack
Arrays
LinkedList
Queues
...
18.
Which of the following data structures allow insertion and deletion from both ends?
Stack
Deque
Queue
Strings
...
19.
What will be the output of the following code snippet?
void solve() {
deque<int> dq;
for(int i = 1; i <= 5; i++) {
if(i % 2 == 0) {
dq.push_back(i);
}
else {
dq.push_front(i);
}
}
for(auto x: dq) {
cout << x << " ";
}
cout << endl;
}
12345
54321
13524
53124
...
20.
Which of the following sorting algorithms provide the best time complexity in the
worst-case scenario?
Merge Sort
Quick Sort
Bubble Sort
Selection Sort
...
21.
What is the maximum number of swaps that can be performed in the Selection Sort
algorithm?
n-1
n
1
n-2
...
22.
Which of the following is a Divide and Conquer algorithm?
Bubble Sort
Selection Sort
Heap Sort
Merge Sort
...
23.
What will be the best sorting algorithm, given that the array elements are small (<=
1e6)?
Bubble Sort
Merge Sort
Counting Sort
Heap Sort
...
24.
Which of the following are applications of Topological Sort of a graph?
Sentence Ordering.
Course Scheduling.
OS Deadlock Detection.
All of the above.
...
25.
Which of the following is known to be not an NP-Hard Problem?
Vertex Cover Problem.
0/1 Knapsack Problem.
Maximal Independent Set Problem.
Travelling Salesman Problem.
...
26.
Which of the following algorithms are used for string and pattern matching problems?
Z Algorithm
Rabin Karp Algorithm
KMP Algorithm
All of the above
...
27.
Consider we have a function, getLCA(), which returns us the Lowest Common Ancestor
between 2 nodes of a tree. Using this getLCA() function, how can we calculate the
distance between 2 nodes, given that distance from the root, to each node is calculated?
dist(u) + dist(v) - 2 * dist(getLCA(u, v))
dist(u) + dist(v) + 2 * dist(getLCA(u, v))
dist(u) + dist(v)
dist(u) + dist(v) - dist(getLCA(u, v))
...
28.
Which of the following algorithms are useful for processing queries on trees?
Centroid Decomposition.
Heavy Light Decomposition.
Both (A) and (B).
Neither (A) nor (B).
...
29.
What will the output of the following code snippet be?
void solve() {
vector<int> a = {1, 2, 3, 4, 5};
sort(a.begin(), a.end(), [&](const int &x, const int &y) {
return x % 2 < y % 2;
});
for(int x: a) {
cout << x << " ";
}
cout << endl;
}
12345
54321
13524
24135
...
30.
Consider the following code snippet:
void solve(vector<int> &a) {
int queries;
cin >> queries;
while(queries--) {
int type;
cin >> type;
if(type == 1) {
int index, value;
cin >> index >> value;
update(a, index, value);
}
else {
int l, r;
cin >> l >> r;
cout << getXOR(a, l, r) << endl;
}
}
}
The update() function updates the element at the given index in the array to some given
value. The getXOR() function returns the XOR of the elements in the array a, in the range
[l, r]. Which of the following data structures can perform the above tasks optimally?
Segment Trees.
Prefix XOR Arrays.
Tries.
Stacks.
...
31.
What is the time complexity of the binary search algorithm?
O(n)
O(1)
O(log2n)
O(n^2)
...
32.
Kruskal’s Algorithm for finding the Minimum Spanning Tree of a graph is a kind of a?
DP Problem.
Greedy Algorithm.
Adhoc Problem.
None of the above.
...
33.
What will be the output of the following code snippet?
void solve() {
string s = "00000001111111";
int l = 0, r = s.size() - 1, ans = -1;
while(l <= r) {
int mid = (l + r) / 2;
if(s[mid] == '1') {
ans = mid;
r = mid - 1;
}
else {
l = mid + 1;
}
}
cout << ans << endl;
}
6
7
0
1
...
34.
Maps in C++ are implemented using which of the following data structures?
Red-Black Trees.
Binary Search Trees.
AVL Trees.
Hash Tables.
...
35.
What will be the output of the following code snippet?
void solve() {
int n = 24;
int l = 0, r = 100, ans = n;
while(l <= r) {
int mid = (l + r) / 2;
if(mid * mid <= n) {
ans = mid;
l = mid + 1;
}
else {
r = mid - 1;
}
}
cout << ans << endl;
}
5
4
6
3
...
36.
What is the time complexity of the Sieve of Eratosthenes to check if a number is prime?
O(nlog(logn)) Precomputation, O(1) for check.
O(n) Precomputation, O(1) for the check.
O(n * logn) Precomputation, O(logn) for check.
O(n) Precomputation, O(logn) for check.
...
37.
What will be the output of the following code snippet?
int search(int l, int r, int target, vector<int> &a) {
int mid = (l + r) / 2;
if(a[mid] == target) {
return mid;
}
else if(a[mid] < target) {
return search(mid + 1, r, target, a);
}
else {
return search(0, mid - 1, target, a);
}
}
void solve() {
vector<int> a = {1, 2, 3, 4, 5};
cout << search(0, 4, 4, a) << endl;
}
3
4
0
2
...
38.
What is the best case time complexity of the binary search algorithm?
O(1)
O(n)
O(log2n)
O(n^2)
...
39.
What is the time complexity to insert an element to the front of a LinkedList(head
pointer given)?
O(n)
O(1)
O(logn)
O(n * logn)
...
40.
What is the time complexity to insert an element to the rear of a LinkedList(head pointer
given)?
O(n)
O(1)
O(logn)
O(n * logn)
...
41.
What will be the value of “sum” after the following code snippet terminates?
void solve(ListNode* root) {
/*
The LinkedList is defined as:
root-> val = value of the node
root-> next = address of next element from the node
The List is 1 -> 2 -> 3 -> 4 -> 5
*/
int sum = 0;
while(root -> next != NULL) {
sum += root -> val;
root = root -> next;
}
cout << sum << endl;
}
10
20
5
1
...
42.
Which of the following can be done with LinkedList?
Implementation of Stacks and Queues
Implementation of Binary Trees
Implementation of Data Structures that can simulate Dynamic Arrays
All of the above
...
43.
What is the information, which a LinkedList’s Node must store?
The address of the next node if it exists
The value of the current node
Both (A) and (B)
None of the above
...

44.
What is the maximum number of children a node can have in an n-ary tree?
2
0
1
n
...

45.
Worst case time complexity to access an element in a BST can be?
O(n)
O(n * logn)
O(1)
O(logn)
...

46.
Which of the following represents the Postorder Traversal of a Binary Tree?
Left -> Right -> Root
Left -> Root -> Right
Right -> Left -> Root
Right -> Root -> Left
...

47.
In what time complexity can we find the diameter of a binary tree optimally?
O(V + E)
O(V)
O(E)
O(V * logE)
...

48.
Which of the following statements is true about AVL Trees?
The difference between the heights of left and right nodes cannot be more than 1.
The height of an AVL Tree always remains of the order of O(logn)
AVL Trees are a type of self-balancing Binary Search Trees.
All of the above.
...

49.
What does the following code snippet calculate (edges represent the adjacency list
representation of a graph)?
void solve(vector<vector<int>> edges) {
int count = 0;
for(auto x: edges) {
for(auto y: x) {
count += 1;
}
}
cout << count / 2 << endl;
}
Calculates the number of edges in an undirected graph.
Calculates the number of nodes in a given graph.
Calculates the sum of degrees of all nodes in a given graph.
None of the above.
...

50.
In a graph of n nodes and n edges, how many cycles will be present?
Exactly 1
At most 1
At most 2
Depends on the graph
...

51.
A node in a tree, such that removing it splits the tree into forests, with size of each
connected component being not greater than n / 2 is called?
Center
Diameter
Centroid
Path
...
52.
What does the following code snippet do?
void dfs(int node, vector<vector<int>> &edges, vector<bool> &vis, vector<int>
&dp) {
vis[node] = true;
for(auto x: edges[node]) {
if(!vis[x]) {
dp[x] = dp[node] + 1;
dfs(x, edges, vis, dp);
}
}
}
Stores depths of all the nodes in a given tree, with respect to some root node.
Counts the number of nodes in a given tree.
Finds the diameter of a tree.
Checks if all the nodes are reachable in a given tree.
...
53.
Which of the following algorithms are used to find the shortest path from a source node
to all other nodes in a weighted graph?
BFS.
Djikstra’s Algorithm.
Prims Algorithm.
Kruskal’s Algorithm.
...
54.
What is the best time complexity we can achieve to precompute all-pairs shortest paths
in a weighted graph?
O(n^3)
O(n^2)
O(n)
O(n^4)
...
55.
Which data structure is mainly used for implementing the recursive algorithm?
Queue
Stack
Array
List
...

You might also like