1.
The statement that makes changes to the global attributes of the database is . . . . . . . .

2.
Which operator is used to check whether the expression is "NULL"?

3.
What is the synonym for REAL?

4.
What will be the output of the following MySQL statement?
SELECT emp_id, fname, lname
FROM employee
WHERE LEFT (fname, 1) =’F’ OR LEFT (lname, 1) =’F’;

5.
The logging option to enable binary log index file is . . . . . . . .

7.
What is the number of attributes in the following SQL table?
CREATE TABLE employee (
		emp_name CHAR(30),
		emp_id INT
	);

8.
Which statement can produce the same output as 'SHOW COLUMNS'?

9.
What is the option for specifying the executable name while compiling with gcc?

10.
In the CREATE TABLE statement, the engine name specified is case sensitive.