51.
fetchrow_hashref() returns reference to hash of row values keyed by . . . . . . . .

52.
In which file are the statements entered in 'mysql' saved?

53.
Suppose tbl_1 is a table consisting of 8 rows and tbl_2 is a table consisting of 6 rows, the number of combinations through which the search is performed is . . . . . . .
SELECT tbl_1.i1, tbl_2.i2
	FROM tbl_1 INNER JOIN tbl_2
	WHERE tbl_1.i1 = tbl_2.i2;

54.
Which table lists the accounts and the databases for which the privileges are provided?

55.
What is the shebang line?

56.
What can be used interchangeably with MYSQL_VERSION_ID?

57.
The number of tables among the following for which HIGH_PRIORITY have an effect are . . . . . . . .
MyISAM, MEMORY, MERGE

58.
The MySQL clients are linked with . . . . . . . .

59.
CGI stands for . . . . . . . .

60.
There can be more than one column per table with the AUTO_INCREMENT attribute.