InterviewSolution
Saved Bookmarks
| 1. |
For the same input parameters, if the stored function returns the same result, it is called _____________(a) deterministic(b) non deterministic(c) regular(d) monotonousThe question was posed to me during an online interview.Asked question is from Stored Functions and Procedures topic in division Stored Programs of MySQL |
|
Answer» RIGHT answer is (a) deterministic Explanation: For the same input PARAMETERS, if the STORED function returns the same RESULT, it is CALLED a deterministic function. Otherwise, the stored function is called not deterministic. |
|