What performs administrative operations?
A. mysqldump
B. mysqladmin
C. mysqlimport
D. mysqlexport
Answer: Option B
Solution (By Examveda Team)
This question is asking about which command in MySQL is used to perform administrative tasks.Let's break down the options:
Option A: mysqldump - This command is used for backing up your MySQL database, not for general administration.
Option B: mysqladmin - This is the correct answer! mysqladmin is the command used for performing various administrative operations in MySQL.
Option C: mysqlimport - This command is used to import data into a MySQL database, not for administration.
Option D: mysqlexport - This command is used to export data from a MySQL database, not for administration.
So, the answer is Option B: mysqladmin.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion