71.
In the following SQL query, what does "person" stands for?
INSERT INTO person
(person_id, fname, lname) 
VALUES (1,’S’,’P’);

74.
What will be the output of the following MySQL statement?
SELECT account_id, product_id, cust_id
FROM account
WHERE product_id NOT IN (‘sav’, ‘chd’, ‘mm’);