BPSC Tre 4.0 DSA Practice Set
Que: (1). Which of the following is not the type of queue?
Asked in BPSC TRE 3.0Que: (2). Which of the following application makes use of a circular linked list?
Asked in BPSC TRE 3.0Que: (3). The data structure required for Breadth First Traversal on a graph is?
Asked in BPSC TRE 3.0Que: (4). Which algorithm is used in the top tree data structure?
Asked in BPSC TRE 3.0Que: (5). What is the need for a circular queue?
Asked in BPSC TRE 3.0Que: (6). Which of the following points is/are not true about Linked List data structure when it is compared with an array?
Asked in BPSC TRE 3.0Que: (7). What is an AVL tree?
Asked in BPSC TRE 3.0Que: (8). What is a data structure?
Asked in BPSC TRE 3.0Que: (9). What will be the output of the following program?
Asked in BPSC TRE 3.0
#include <stdio.h>
#include <string.h>
int main()
{
char str[] = "san foundry";
int len = strlen(str);
int i;
for(i = 0; i < len; i++)
push(str[i]); // pushes each character into stack
for(i = 0; i < len; i++)
printf("%c", pop()); // pops and prints from stack
}
Que: (10). The prefix form of A-B/ (C*D^E) is?
Asked in BPSC TRE 3.0Que: (11). Which of the following is not the application of stack?
Asked in BPSC TRE 3.0Que: (12). What data structure would you mostly likely see in non-recursive implementation of a recursive algorithm?
Asked in BPSC TRE 3.0Que: (13). What is a bit array?
Asked in BPSC TRE 3.0Que: (14). Which of the following data structures can be used for parentheses matching?
Asked in BPSC TRE 3.0Que: (15). What are the disadvantages of arrays?
Asked in BPSC TRE 3.0Que: (16). The data structure required to check whether an expression contains a balanced parenthesis is?
Asked in BPSC TRE 3.0Que: (17). Which of the following is the most widely used external memory data structure?
Asked in BPSC TRE 3.0Que: (18). Which of the following statement(s) about stack data structure is/are NOT correct?
Asked in BPSC TRE 3.0Que: (19). Which of the following is also known as Rope data structure?
Asked in BPSC TRE 3.0Que: (20). Which of the following data structure can provide efficient searching of the elements?
Asked in BPSC TRE 3.0
Which of the following data structure can provide efficient searching of the elements?
(d) treap
(b) 2-3 tree
(c) unordered lists
(a) binary search tree