81.
For which type are illegal values converted to the appropriate 'zero' value?

82.
The command to move the cursor to the beginning of line in MySQL input editor is?

83.
What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE lname LIKE ‘F%’ AND lname LIKE ‘%T’;

84.
mysql_init() returns a . . . . . . . .

85.
The columns containing a binary value that include null bytes will print properly using the %s printf() format specifier.

87.
What is the host name in the following MySQL command?
mysql -h cobra.snake.net -p -u sampadam

88.
To convert a string to an int, the function is . . . . . . . .

89.
Does the following MySQL statement belong to the "Inequality condition"?
SELECT product_type.name, product.name
FROM product_type INNER JOIN Product
ON product_type.dept=Product.dept
WHERE product_type.name<>’customers_accounts’;

90.
The line that is written at the top of the script to write a Perl script using CGI.pm is . . . . . . . .