You can prepare effectively for Computer Science Engineering (CSE) GATE Computer Science Engineering(CSE) 2027 Mock Test Series with this dedicated MCQ Practice Test (available with solutions) on the important topic of "Test: Database Management System - 2". These 15 questions have been designed by the experts with the latest curriculum of Computer Science Engineering (CSE) 2026, to help you master the concept.
Test Highlights:
Sign up on EduRev for free to attempt this test and track your preparation progress.
Which of the following set should be associated with weak entity set for weak entity to be meaningful?
Detailed Solution: Question 1
Procedural language among the following is __________
Detailed Solution: Question 2
Which forms have a relation that contains information about a single entity?
Detailed Solution: Question 3
_______ indicates the maximum number of entities that can be involved in a relationship.
Detailed Solution: Question 4
Why the following statement is erroneous?
SELECT dept_name, ID, avg (salary)
FROM instructor
GROUP BY dept_name;
Detailed Solution: Question 5
After groups have been established, SQL applies predicates in the ___________ clause, allowing aggregate functions to be used.
Detailed Solution: Question 6
What does a foreign key combined with a primary key create?
Detailed Solution: Question 7
Which of the following is correct according to the technology deployed by DBMS?
Detailed Solution: Question 8
What is the function of the following command?
Delete from r where P;
Detailed Solution: Question 9
Which of the following is the best way to represent the attributes in a large db?
Detailed Solution: Question 10
Which of the following is the subset of SQL commands used to manipulate Oracle Structures, including tables?
Detailed Solution: Question 11
Which of the following is generally used for performing tasks like creating the structure of the relations, deleting relation?
Detailed Solution: Question 12
The given Query can also be replaced with_______:
SELECT name, course_id
FROM instructor, teaches
WHERE instructor_ID= teaches_ID;
Detailed Solution: Question 13
What do you mean by one to many relationships?
Detailed Solution: Question 14
In the following Query, which of the following can be placed in the Query's blank portion to display the salary from highest to lowest amount, and sorting the employs name alphabetically?
SELECT *
FROM instructor
ORDER BY salary ____, name ___;
Detailed Solution: Question 15