Which disk data does FILES table in INFORMATION_SCHEMA store?
A. NDB
B. NBD
C. NBK
D. NCD
Answer: Option A
Solution (By Examveda Team)
This question asks about the FILES table in INFORMATION_SCHEMA, a special database in MySQL.INFORMATION_SCHEMA holds information about your database, like table structures and data types.
The FILES table specifically stores information about the physical files on your disk that your database uses.
So, what kind of disk data does it store?
The answer is None of the above.
The options provided (NDB, NBD, NBK, NCD) are not relevant to the data stored in the FILES table.
Instead, the FILES table will have information like:
* File name
* File size
* File location
* File type (e.g., data file, log file)
This helps you understand how your database is physically structured on your hard drive.
Join The Discussion