Which table stores information about the threads executing within the server?
A. PROCESS
B. PROCESSLIST
C. LIST
D. THREADSLIST
Answer: Option B
Solution (By Examveda Team)
This question asks you about where MySQL stores information about the tasks (called "threads") that are currently running inside the server.Think of it like this: Imagine you have a computer, and you're running multiple programs at once. Your computer keeps track of each program running, its status, and what it's doing. MySQL does something similar.
Here's the breakdown of the options:
Option A: PROCESS
This option is close, but it's not the exact table. While "PROCESS" is a keyword related to threads, it doesn't refer to the table that stores their information.
Option B: PROCESSLIST
This is the correct answer! The PROCESSLIST table is where MySQL keeps track of all the currently running threads (like the "programs" on your computer). You can use a command like
SHOW PROCESSLIST to see this information. Option C: LIST
This option is too general. It doesn't specifically refer to a table in MySQL related to threads.
Option D: THREADSLIST
This option is incorrect. While "THREADS" is a keyword related to threads, there isn't a table named THREADSLIST in MySQL.
So the answer is Option B: PROCESSLIST

Join The Discussion