Database Management System and Design mcq-1

Questions 1: The ascending order of a data hirerchy is: a. bit-byte-record-field-file-database b. byte-bit-field-record-file-database c. bit-byte-field-record-file-database d. bit-byte-file-record-field-database   Question 2: Which of the following is true of a network structure? a. t is a physical representation of the data b. It allows a many-to-many relationship c. It is conceptually simple d. It will be…

Data Structures and Algorithms MCQ -3

1.    Which data structure allows deleting data elements from front and inserting at rear? a. Stacks b. Queues c.   Deques d. Binary search tree 2.    Identify the data structure which allows deletions at both ends of the list but insertion at only one end. a. Input-restricted deque b. Output-restricted deque c.   Priority queues d. None…

C++ MCQ-16

Q.91   What will be the result of the expression 13 & 25? (A) 38  (B)  25 (C)  9  (D)  12      Ans:C  Q.92   Which of the following operator can be overloaded through friend function? (A)  ->   (B)  = (C)  ( )   (D)  *        Ans:D   Q.93  To access the public function…

C++ MCQ-15

Q.76   Which of the following expressions is illegal? (A)  ( ) 6 10 .  (B)  (false && true) (C)  bool (x) = (bool)10;  (D)  float y = 12.67;       Ans:C   Q.77  The actual source code for implementing a template function is created when   (A) The declaration of function appears. (B) The…

C++ MCQ-14

Q.61  An array element is accessed using (A)  a FIFO approach  (B)  an index number (C)  the operator  (D)  a member name     Ans:B   Q.62   If there is a pointer p to object of a base class and it contains the address of an object of a derived class and both classes contain…