Question 16

Examine these lines of Python code:

You must add a line of code to complete the code to return data to the variable d. Which line will do this?
  • Question 17

    Examine these commands which execute successfully:
    mYsql> CREATE TABLE income (acct_num INT, amount DECIMAL(10,2));
    mysql> CREATE TRIGGER subtotal BEFORE INSERT ON income
    FOR EACH ROW SET @subtotal = subtotal + NEW.amount;
    Which is true for the income table?
  • Question 18

    Examine these MySQL Shell statements:

    What is the true about the attempts to add document to the collection?
  • Question 19

    Which select statement returns true?
  • Question 20

    Examine these commands which execute successfully in the sequence shown in Sessions S1 and S2:

    Now, examine this statement that execute successfully in s1:
    S1> SELECT * FROM emp;
    Which is true about the result of the select statement?