Top 1000+ Solved DataBase Management System (DBMS) MCQ Questions Answer
Q. Which among the following are the functions that any system with a user interface must provide?
a. presentation
b. dialogue
c. all of the mentioned
d. none of the mentioned
Q. Which of the following is the main task accomplished by the user?
a. compose a document
b. create a spread sheet
c. send mail
d. all of the mentioned
Q. What are the portability concerns founded in Seeheim model?
a. replacing the presentation toolkit
b. replacing the application toolkit
c. replacing the dialogue toolkit
d. replacing the presentation & application toolkit
Q. Which schema object instructs Oracle to connect to a remotely access an object of a database?
a. sequence
b. remote link
c. database link
d. data link
Q. Which of the following object types below cannot be replicated?
a. data
b. trigger
c. view
d. sequence
Q. How to force a log switch?
a. by using alter system log
b. by using alter system switch logfile
c. by using alter system switch logs
d. by using alter sys logfiles
Q. The ORDER BY clause can only be used in
a. select queries
b. insert queries
c. group by queries
d. having queries
Q. Which of the following rule below are categories of an index?
a. column and functional
b. multiple column and functional
c. column, multiple column and functional
d. none of the mentioned
Q. Which of the following queries are legal?
a. select deptno, count(deptno) from emp group by ename;
b. select deptno, count(deptno), job from emp group by deptno;
c. select deptno, avg(sal) from emp;
d. select deptno, avg(sal) from emp group by deptno;
Q. Which of the following queries displays the sum of all employee salaries for those employees not making commission, for each job, including only those sums greater than 2500?
a. select job, sum(sal) from emp where sum(sal) > 2500 and comm is null;
b. select job, sum(sal) from emp where comm is null group by job having sum(sal) > 2500;
c. select job, sum(sal) from emp where sum(sal) > 2500 and comm is null group by job;
d. select job, sum(sal) from emp group by job having sum(sal) > 2500 and comm is not null;
Q. Which of the following data structure is not linear data structure?
a. arrays
b. linked lists
c. arrays & linked lists
d. none of the mentioned
Q. Which of the following data structure is linear data structure?
a. trees
b. graphs
c. arrays
d. none of the mentioned
Q. The operation of processing each element in the list is known as
a. sorting
b. merging
c. inserting
d. traversal
Q. Finding the location of the element with a given value is:
a. traversal
b. search
c. sort
d. none of the mentioned