Tag: databases

Questions Related to databases

A DML statement is executed when you

  1. Add new rows to a table

  2. Modify existing rows of a table

  3. Remove existing rows from a table

  4. All of the above


Correct Option: D
  1. Insert to table tablename (….);

  2. Insert into table tablename (….);

  3. Insert into table tablename values (…..);

  4. Any one of the above


Correct Option: C

Which is the function that records the current date?

  1. Date

  2. Sysdate

  3. Current Date

  4. System Date


Correct Option: B

Limiting the rows in a select statement for a specific condition is done by the clause

  1. Distinct

  2. Projection

  3. Where

  4. All of the above


Correct Option: C

Arithmetic expressions containing a null value evaluate to null.

  1. True

  2. False


Correct Option: B

Concatenation operator is

  1. +

  2. -

  3. ||

  4. *


Correct Option: C
  1. Projection

  2. Selection

  3. Join

  4. All of the above


Correct Option: D