2. What is true about joining tables through an equijoin?A) You can join a maximum of two tables through an equijoin.
B) You can join a maximum of two columns through an equijoin.
C) You specify an equijoin condition in the SELECT or FROM clauses of a SELECT statement.
D) To join two tables through an equijoin, the columns in the join condition must be primary key and foreign key columns.
E) You can join n tables (all having single column primary keys) in a SQL statement by specifying a minimum of n-1 join conditions.
3. The EMP table contains these columns:
LAST NAME VARCHAR2(25)
SALARY NUMBER(6,2)
DEPARTMENT_ID NUMBER(6) 
You need to display the employees who have not been assigned to any department.
You write the SELECT statement:
SELECT LAST_NAME, SALARY, DEPARTMENT_ID FROM EMP WHERE DEPARTMENT_ID = NULL;
What is true about this SQL statement?
A) The SQL statement displays the desired results.
B) The column in the WHERE clause should be changed to display the desired results.
C) The operator in the WHERE clause should be changed to display the desired results.
D) The WHERE clause should be changed to use an outer join to display the desired results.
4. Please select the correct statements about Statement in JDBC.A) One PreparedSatement instance is compiled when it is run at the first time,
B) Statement is used to run simple SQL only once.
C) CallableSlatement is used to run stored procedure. 
D) CallableStatement could register output parameter
15. Examine the description of the EMPLOYEES table:
EMP ID NUMBER(4) NOT NULL 
LAST_NAME VARCHAR2(30) NOT NULL 
FIRST_NAME VARCHAR2(30)
DEPT_ID NUMBER(2) 
JOB_CAT VARCHARD2(30) 
SALARY NUMBER(8,2)
Which statement shows the maximum salary paid in each job category of each department?
A) SELECT dept_id, job_cat, MAX(salary) FROM employees WHERE salary > MAX(salary);
B) SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id,job_cat;
C) SELECT dept_id, job_cat, MAX(salary) FROM employees;
D) SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id; 
E) SELECT dept_id, job_cat, MAX(salary) FROM employees GROUP BY dept_id job_cat, salary;