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