Complete the code to show the command that starts the slave replication process.
START [1];The command START SLAVE; starts the replication process on the slave server.
Complete the code to check the status of the slave replication.
SHOW [1] STATUS\GThe command SHOW SLAVE STATUS\G displays detailed information about the slave replication status.
Fix the error in the command to configure the slave to connect to the master.
CHANGE MASTER TO MASTER_HOST='192.168.1.100', MASTER_USER='replica', MASTER_PASSWORD=[1];
The password value must be a string literal enclosed in single quotes.
Fill both blanks to create a dictionary comprehension that maps each database name to its size in MB from a list of tuples.
{ [1]: [2] for [1], [2] in db_sizes }The comprehension maps each database to its size from the list db_sizes.
Fill all three blanks to create a dictionary comprehension that maps uppercase database names to their sizes only if size is greater than 100.
{ [1]: [2] for [3], [2] in db_sizes if [2] > 100 }The comprehension maps the uppercase database names to their size only if the size is greater than 100.