0

databases Online Quiz - 156

Description: databases Online Quiz - 156
Number of Questions: 20
Created by:
Tags: databases
Attempted 0/20 Correct 0 Score 0

We can nest Group Functions

  1. True

  2. False


Correct Option: B

SYSDATE is a date function that returns the current database server date and time.

  1. True

  2. False


Correct Option: B

The value returned by the subquery is used by the main query.

  1. True

  2. False


Correct Option: B

To perform wild card search “Like” is used .

  1. True

  2. False


Correct Option: B

When is a Cartesian product formed?

  1. When a join condition is omitted.

  2. When a join condition is invalid.

  3. All rows in the first table are joined to all rows in the second table.

  4. All of the above.


Correct Option: D

AI Explanation

To answer this question, you need to understand the concept of a Cartesian product in the context of database joins.

A Cartesian product is formed when two tables are joined without any join condition specified. This means that all rows from the first table are combined with all rows from the second table, resulting in a combination of every row from the first table with every row from the second table.

Let's go through each option to understand why it is correct or incorrect:

Option A) When a join condition is omitted - This option is correct because a Cartesian product occurs when a join condition is not specified, resulting in the combination of all rows from both tables.

Option B) When a join condition is invalid - This option is incorrect because a Cartesian product occurs when no join condition is specified, regardless of whether the join condition is valid or not.

Option C) All rows in the first table are joined to all rows in the second table - This option is correct because a Cartesian product involves combining all rows from the first table with all rows from the second table.

Option D) All of the above - This option is correct because both option A and option C correctly describe when a Cartesian product is formed.

The correct answer is D) All of the above. This option is correct because a Cartesian product can occur when a join condition is omitted, when a join condition is invalid, or when all rows in the first table are joined to all rows in the second table.

In a join condition it is mandatory to specify the table name along with the Column name.

  1. True

  2. False


Correct Option: B

The minimum number of join statements required to join 10 tables together are:

  1. 9

  2. 11

  3. 5

  4. 12

  5. None of the above


Correct Option: A

A Non equi-join is a join condition that does not contain an equality operator.

  1. True

  2. False


Correct Option: B

Sorting SQL statement result data by column alias is not possible.

  1. True

  2. False


Correct Option: B

What are the two types of SQL Functions?

  1. Single-row Functions and Double-row Functions

  2. One-row Functions and Two-row Functions

  3. Single-row Functions and Multiple-row Functions

  4. None of the above


Correct Option: C

Single-Row Functions can return multiple results per row.

  1. True

  2. False


Correct Option: B

Compare the output of the following: SELECT TRUNC(99.57,1) FROM DUAL; and SELECT ROUND(99.57,1) FROM DUAL;

  1. 99.57,99,6

  2. 99.5,99.6

  3. 99.6,99.6

  4. 99.57,99.57


Correct Option: B

LAST_DAY(date) finds the date of the last day of the month that contains date.

  1. True

  2. False


Correct Option: B

Which of the following WHERE clauses represent equi-join?

  1. Table1.column1=Table2.column2

  2. Table1.column1=Table2.column1

  3. Table1.column2=Table2.column1

  4. None of the above


Correct Option: B

An outer join is used to:

  1. Return records which have no direct match

  2. Return records which have direct match

  3. Return all the records

  4. None of the above


Correct Option: A

____________ is the outer join operator.

  1. (+)

  2. (-)

  3. (*)

  4. +


Correct Option: A

____________ is used to join a table to itself.

  1. Selfjoin

  2. Outerjoin

  3. innerjoin

  4. equijoin


Correct Option: A

A null is the same as zero or a blank space.

  1. True

  2. False


Correct Option: B
Explanation:

To solve this question, the user needs to know the definition of a null value. A null value typically represents a missing or unknown value, and it is not the same as a zero or a blank space.

Option A - True: This option is incorrect. A null value is not equivalent to zero or a blank space. In programming, null is often used to indicate the absence of a value or a missing value.

Option B - False: This option is correct. A null value is not the same as zero or a blank space. It is a distinct value that represents an absence of data.

Therefore, the correct answer is:

The Answer is: B. False

What is the output of the following? SELECT ROUND(1111.93412,3) FROM DUAL;

  1. 1112

  2. 1111.93

  3. 1111.93412

  4. 1111.934


Correct Option: D

What does the MOD Function do?

  1. It divides both the values and gives the quotient.

  2. It multiplies both the values and gives the product.

  3. It divides both the values and gives the remainder.

  4. There is no such function.


Correct Option: C
- Hide questions