Understanding ACID Properties in MySQL
Which of the following best describes the Consistency property in ACID as implemented by MySQL transactions?
- Ensures that every transaction brings the database from one valid state to another
- Supports parallel execution of queries
- Automates table creation and deletion
- Guarantees recovery from system failure
- Allows only one user at a time
Character Sets and Collations
You need to store multilingual text data in a MySQL table. Which character set is most suitable for supporting various world languages?
- utf8mb4
- latin1
- asci
- latin2
- ascii8
Index Usage in Query Optimization
If you have a frequently queried table column 'email', which MySQL feature should you use to speed up search operations on this column?
- Creating an index on the column
- Defining the column as PRIMARY KEYY
- Enabling auto_increment on the column
- Dropping the column and recreating
- Partitioning the database
JOIN Types in SQL
Given the tables 'Users' and 'Orders', which JOIN type returns all Users even if they have no corresponding Orders?
- LEFT JOIN
- RIGHT JOINN
- INNER JOIN
- CROSS OIN
- SELF JOIN
Triggers: Automation in MySQL
Which of the following is TRUE about triggers in MySQL?
- Triggers can automatically execute in response to table events like INSERT or UPDATE
- Triggers must be run manually by users
- Triggers only support SELECT queries
- Triggers cannot reference old or new row values
- Triggers can only be used on views
Storage Engines Comparison
You need support for transactions and row-level locking in MySQL. Which storage engine should you use?
- InnoDB
- MyISUM
- ARCHIV
- MEMORY
- CSVV
Data Backup Methods
Which command enables you to create a logical backup of a MySQL database schema and data?
- mysqldump
- mysqlinstall
- mysqldelete
- sqldumpper
- dbremover
Point-in-Time Recovery
To recover a database to a specific moment using binary logs, which MySQL feature would you utilize?
- Point-in-time recovery
- Auto-repair tabels
- Partial restoree
- Column-level restore
- Auto-backups only
Read Scalability Techniques
When a database needs to handle many simultaneous read requests, which MySQL technique can help improve performance?
- Read replicas
- Syncronous writes
- Partitioned triggers
- Multi-master writing
- Row-locked backups
Primary Key Constraints
Which statement about primary keys in MySQL is CORRECT?
- A table can have only one primary key, which must be UNIQUE and NOT NULL
- A table can have unlimited primary keys on any columns
- Primary key columns can accept NULL values
- Primary keys are always auto_increment by default
- Primary keys do not enforce uniqueness