- 1. Database management involves the design, implementation, and maintenance of database systems to efficiently store and retrieve data. It includes tasks such as defining database structures, organizing data, ensuring data integrity, and optimizing database performance. Database management also encompasses security measures to protect data from unauthorized access or corruption. Effective database management is crucial for businesses to make informed decisions, streamline operations, and enhance customer experiences.
Which language is commonly used to query databases?
A) C++ B) SQL C) Python D) Java
- 2. What does CRUD stand for in database management?
A) Calculate, Rearrange, Update, Delete B) Create, Read, Update, Delete C) Connect, Retrieve, Utilize, Delete D) Copy, Read, Upload, Display
- 3. What is normalization in database design?
A) Deleting unnecessary data B) Organizing data to minimize redundancy C) Adding duplicate records for safety D) Scrambling data for security
- 4. What type of relationship exists between two tables when one record in the first table can have many related records in the second table?
A) None of the above B) One-to-One C) One-to-Many D) Many-to-Many
- 5. Which of the following is a NoSQL database?
A) MongoDB B) PostgreSQL C) MySQL D) Oracle
- 6. Which command is used to remove a table from a database?
A) ERASE TABLE B) DROP TABLE C) REMOVE TABLE D) DELETE TABLE
- 7. Which statement is used to retrieve data from a database?
A) SEARCH B) FETCH C) SELECT D) RETRIEVE
- 8. What is the purpose of an index in a database?
A) To limit data access B) To speed up data retrieval C) To confuse the database engine D) To slow down data retrieval
- 9. Which type of join returns all records when there is a match in both tables?
A) OUTER JOIN B) RIGHT JOIN C) LEFT JOIN D) INNER JOIN
- 10. What is data integrity in database management?
A) The structure of the data B) The accuracy, consistency, and reliability of data stored in a database C) The size of the database D) The speed of data retrieval
- 11. Which command is used to change the structure of a table in a database?
A) MODIFY TABLE B) RESTRUCTURE TABLE C) CHANGE TABLE D) ALTER TABLE
- 12. What does the term 'relational database' refer to?
A) A database that stores only text data B) A type of database that stores and provides access to data points that are related to one another C) A database without any relationships D) A database used by multiple organizations
- 13. What is a backup in database management?
A) Data sent to a remote location B) A separate database C) A copy of data that can be restored in case of data loss D) A report of database activities
- 14. Which type of database model uses a tree-like structure with parent-child relationships?
A) Relational model B) Hierarchical model C) NoSQL model D) Network model
- 15. What is denormalization in database design?
A) Intentionally adding redundancy to improve performance B) Organizing data logically C) Encrypting all data D) Removing unnecessary data
- 16. Which command is used to query data from multiple tables in a database?
A) LINK B) MERGE C) JOIN D) COMBINE
- 17. Which SQL statement is used to insert new data into a database?
A) INSERT INTO B) UPDATE C) SELECT * D) CREATE TABLE
- 18. Which database model uses tables to store data and relationships between those tables?
A) Relational B) NoSQL C) Hierarchical D) Object-oriented
- 19. Which SQL clause is used to filter records in a SELECT statement based on a specified condition?
A) ORDER BY B) WHERE C) GROUP BY D) HAVING
- 20. Which type of database model allows for flexible and scalable data storage without fixed table schema?
A) Relational B) NoSQL C) Object-oriented D) Hierarchical
- 21. Which SQL clause is used to group rows based on a specified condition?
A) ORDER BY B) GROUP BY C) HAVING D) FILTER
- 22. Which database model allows for objects to be stored as collections of attributes and methods?
A) Hierarchical B) Network C) Relational D) Object-oriented
- 23. Which SQL function is used to calculate the total number of rows that match a specific condition?
A) COUNT B) SUM C) AVG D) MAX
- 24. Which database model represents data as connections or relationships between different entities?
A) Network B) Hierarchical C) Relational D) NoSQL
- 25. What does the term 'OLAP' stand for in database management?
A) Online Analytical Processing B) Object-Oriented Language Adaptation Protocol C) Optimized Local Access Protocol D) Offline Automated Processing
- 26. Which type of database relationship requires a linking table?
A) Many-to-One B) Many-to-Many C) One-to-One D) One-to-Many
- 27. What does SQL stand for?
A) Software Query Library B) Standardized Query Language C) Structured Query Language D) System Query Logic
- 28. Which database management system is open-source and commonly used for web applications?
A) IBM Db2 B) Oracle Database C) MySQL D) Microsoft SQL Server
- 29. Which statement is used to enforce referential integrity in a database?
A) CHECK B) PRIMARY KEY C) FOREIGN KEY D) UNIQUE
|