Data Base Management System
Description: Complete study material for DBMS, RDBMS, Data Base Management System, Relational Data Base Management System, Primary Key, Foreign Key, Data, Information to prepare for B.Sc-IT, M.Sc-IT, BCA, MCA, MCa Entrance | |
Number of Questions: 30 | |
Created by: | |
Tags: DBMS Data Base RDBMS Relational Data Base Primary Key B.Sc-IT M.Sc-IT MCA BCA MCA Entrance Basic Computer C C++ ASP PHP HTML database management system notes advantages of database management system Data Base Management System Relational Data Base Management System Data Structures |
Which data structure is needed to convert infix notations to postfix notations?
A linear list in which elements can be added or removed at either end but not in the middle is known as
Recursive procedures are implemented by
The infix expression A+(B-C)*D is correctly represented in prefix notation as
A list of data items, usually words or bytes, with the accessing restriction that elements can be added or removed at one end of the list only, is known as
In what order are the elements of a pushdown stack accessed?
Which of the following is a tabular listing of contents of certain registers and memory locations at different times during the execution of a program?
The initial configuration of queue is a,b,c,d ('a' is at the front). To get the configuration d, c, b, a, one needs a minimum of
If memory for the run-time stack is only 150 cells (words), how big can N be in factorial (N) before encountering stack overflow?
The following sequence of operations is performed on a stack push (1), push (2), pop, push(1), push(2), pop, pop, pop, push(2), pop. The sequence of the popped out values is
A stack is a concept
Queues serve a major role in
A priority queue Q is used to implement a stack S that stores characters. PUSH (C) is implemented as INSERT (Q, C, K), where K is an appropriate integer key chosen by the implementation. POP is implemented as DELETEMIN (Q). For a sequence of operations, the keys chosen are in
A queue is a concept
The Postfix equivalent of the prefix * + a b - c d, is
The postfix expression for the infix expression A+B*(C+D)/F+D*E, is
Stacks can't be used to
The infix priorities of +, *, ^, / could be
Stack is useful for implementing
Selection sort's average time complexity is
The process of accessing data stored in a tape is similar to manipulating data on a
Bubble sort's average time complexity is
Insertion sort's average time complexity is
Merge sort's average time complexity is
Quick sort's average time complexity is
Selection sort's worst-case time complexity is
Bubble sort's worst-case time complexity is
Merge sort's worst-case time complexity is
Insertion sort's worst-case time complexity is
Quick sort's worst-case time complexity is