User defined variables are session specific.
A. True
B. False
Answer: Option A
Solution (By Examveda Team)
This question is about user-defined variables in MySQL. User-defined variables are like temporary storage spaces you can create within your MySQL session.Think of them like sticky notes you can use to jot down information while working with your database.
Now, the question asks if these user-defined variables are session specific. This means: are they only accessible within the same MySQL session where they were created?
The answer is True. User-defined variables are indeed session specific. If you close your MySQL session and open a new one, those variables will be gone.
So, Option A: True is the correct answer.
Join The Discussion