Question 1
Which type of operation is primarily responsible for adding new records to a database table?
- Read
- Update
- Create
- Delete
- Retrieve
Question 2
Which operation is used to modify an existing record within a database table?
- Insert
- Update
- Delete
- Create
- Read
Question 3
Which operation is used to remove a record from a database table?
- Read
- Erase
- Update
- Delete
- Create
Question 4
Which operation is used to access and retrieve data from a database table?
- Create
- Update
- Delete
- Read
- Write
Question 5
In the context of database integration, what is the purpose of data mapping?
- To visually represent database schema.
- To define the transformation rules between different data structures.
- To optimize database query performance.
- To create a backup of the database.
- To encrypt sensitive data.
Question 6
What is the primary benefit of using a separate database for integration tests?
- Faster test execution.
- Isolation from the main database, preventing unintended side effects.
- Reduced hardware requirements.
- Simplified deployment process.
- Automatic data synchronization.
Question 7
Consider a scenario where a database column 'date_of_birth' needs to be updated. Which CRUD operation should be used?
- Create
- Read
- Delete
- Update
- Retrieve
Question 8
A developer needs to retrieve all records from a 'customers' table. Which CRUD operation will accomplish this?
- Insert
- Update
- Delete
- Read
- Create
Question 9
When performing CRUD operations, what is a common reason for using parameterized queries?
- To improve code readability.
- To prevent SQL injection vulnerabilities.
- To increase database server capacity.
- To simplify database administration.
- To enhance data compression.
Question 10
What is the purpose of an ORM (Object-Relational Mapper) in the context of database integration?
- To optimize network bandwidth.
- To provide a direct translation between database tables and front-end interfaces.
- To simplify database backups.
- To facilitate data analysis.
- To map objects to database records.