51.
What will be the output of the following MySQL command?
SELECT emp_id, fname, lname
FROM employee
WHERE title=’HEAD TELLER’ AND start_date>2008-11-23;

52.
Which of these is faster when accessing data?
memory, disk

53.
Which variable when set to 1 would enable foreign key checking for InnoDB tables?

54.
How many among the following does not return a value?
mysql_close(), mysql_init, mysql_real_connect

55.
Which system variable determines the number of rows from INSERT DELAYED statements that can be queued per table?

56.
On failure, 'mysql_query()' returns . . . . . . . .

57.
The number of values returned from a stored procedure can be . . . . . . . .

58.
If in Table "account", a column "cust_id" consists of {1,2,2,3,3,5,6,7,8,8} then what will be the output on executing the following MySQL statement?
SELECT DISTINICT cust_id
FROM account;

59.
What does UTF stand for int utf8?

60.
The binary protocol does not support all statements.