Data Base Management System · Instructor: Prof. Partha Pratim Das, Prof. Samiran Chattopadhyay
Look at the following truth table: A B A op B FFT FTT TFT TTF Which binary operation has been carried out?
Consider the following array of seven integers: 30, 15, 10, 40, 25, 20, 12 What will be the contents of this array after the 2nd pass of bubble sort (sorting from smallest to largest)?
Identify the correct representation of the prefix expression of the tree given below.

Consider a set X = { {a, c}, {b, d} }. What is the number of elements in the power set of X?
When an EVEN decimal number is converted into a binary number, what will be the Least Signaficant Bit(LSB)?
Consider the following arrays of numbers. Which one represents a min-heap?
Consider two sets A and B. Which of the following statement is true?
Let a given function be f:I→I given by f(x)=x2 where I stands for the set of all integers. Which of the following statements is/are true?
Consider the following: CSE(x): The girl x is in CSE department. DBMS(x): The girl x studies DBMS. Consider the statement : Which of the following formula represents “Not all CSE students study DBMS.”
Consider the binary relation S1 = {(1, 1), (2, 2), (1, 2), (2, 1)} on the set {1, 2}. Identify the correct statement.
What is the domain of the following function if the range is a subset of real numbers? 5x2−9
How many functions are there from the set {1, 2, 3} to the set {a, b}?
If U is the set of integers excluding zero, V is the set of even integers, and D is the set of odd integers, which of the following statement(s) is (are) true. Note: Here E __ denotes complement over the expression E . U is the Universal set
Suppose that A and B are two sets. Which of the following is always equivalent to A∪B
Consider the following function from {a,b,c,d} to {1,2,3,4,5}. {(a,2), (b,1), (c,3), (d,4)} Which of the following is true about the function?
Numbers 1, 2, 3, 4 are pushed into a stack in that order but these four PUSH operations are intermixed with POP operations as well. Whenever a number is popped, it is printed. Which of the following permutation can be printed by such PUSH and POP operations?
Which one of the following is the most appropriate logical formula to represent the statement? "Red and Yellow cars are beautiful". The following notations are used: R(x): x is a Red car Y(x): x is a Yellow car B(x): x is beautiful Note: ∀x denotes for all x. ∃x denotes for some x (atleast 1). → denotes implication. ∨ and ∧ denotes OR and AND operation respectively.
Consider a B+-tree of order 5. What is the minimum number of children a root node can have, considering it is not the only node in the tree?
A hash table with length of 10 elements use open addressing with hash function h(k)=k mod 10, and linear probing. the table shows the state after insertion of 6 values. Identify a possible order in which the key values could have been inserted in the table. 0 1 222 343 414 562 696 7103 8 9
How many comparisons does it take to find the element 10 in the sorted array A = {10,15,17,19,20} using binary search?