61.
The library file that contains various portability macros and definitions is . . . . . . . .

62.
The most restrictive among the following is . . . . . . . .
mysql_query(), mysql_real_query()

63.
The largest value to which the variable 'max_allowed_packet' can be set is . . . . . . . .

64.
User defined variables are session specific.

65.
For which table does 'REPAIR TABLE' not work?

67.
What is the significance of "ORDER BY emp_id DESC" in the following MySQL command?
SELECT emp_id, fname, lname
FROM person
ORDER BY emp_id DESC;

68.
What has a higher priority?
writes, reads

69.
X'61626364' and X'61626364' are respectively . . . . . . . .

70.
Will the following SQL command produce any error?
INSERT INTO person
(person_id, fname,lname)
VALUES (1,’S’,’U’),
VALUES (2,’T’,’U’);
/* where person_id is a primary key */