SQL and RDBMS Fundamentals

Covers SQL statements, RDBMS concepts, data manipulation, and database design fundamentals including sorting, wildcards, comparison operators, and logical components

20 Questions Published

Questions

Question 1 Multiple Choice (Multiple Answers)

Identify the logical components of the database. Choose all that apply.

  1. Datafile
  2. Database
  3. Controlfile
  4. Table
  5. Schema
  6. Redolog Group
Question 2 Multiple Choice (Multiple Answers)

which of the following represent the "not equal to" condition?

  1. !=
  2. ^=
  3. <>
  4. !==
Question 3 Multiple Choice (Single Answer)

which of the following is not a comparison condition?

  1. NOT LIKE
  2. IN (set)
  3. ==
  4. ^=
Question 4 Multiple Choice (Multiple Answers)

which of the following are wildcard characters?

  1. %
  2. $
  3. _
  4. *
Question 5 Multiple Choice (Single Answer)

RDBMS stands for

  1. Relational Database Management System
  2. Rational Database Management System
  3. Real Database Management System
  4. Rapid Database Management System
Question 6 Multiple Choice (Single Answer)

Identify SQL statement which is used for Data Retrieval

  1. Insert
  2. Create
  3. Delete
  4. Select
  5. Grant
  6. Commit
Question 7 Multiple Choice (Multiple Answers)

Identify SQL statement which is used for Data Manipulation. Choose all that apply.

  1. Insert
  2. Create
  3. Delete
  4. Select
  5. Merge
  6. Update
Question 8 Multiple Choice (Multiple Answers)

Identify SQL statement which is used as Transaction Control Language command. Choose all that apply.

  1. Alter
  2. Rollback
  3. Select
  4. Commit
  5. Rename
  6. Savepoint
Question 9 Multiple Choice (Multiple Answers)

Identify SQL statement which is used as Data Control Language command. Choose all that apply.

  1. Alter
  2. Grant
  3. Select
  4. Rename
  5. Revoke
  6. Update
Question 10 Multiple Choice (Single Answer)

ERD stands for

  1. Enterprise Relationship Diagram
  2. Entity Relationship Diagram
  3. Extra Relationship Diagram
  4. Entry Relationship Diagram
Question 11 Multiple Choice (Multiple Answers)

What is true about RDBMS? Choose all that apply

  1. A system consisting of tables and relation between the tables
  2. Writes efficient queries itself without user intervention to retrieve and manipulate the data stored
  3. Handles data retrieval and manipulation using a functional programming language called SQL (Structured Query Language)
  4. A system consisting of memory structures and background process
  5. Translates a SQL query into a series of operations that retrieve the actual data from the database
Question 12 Multiple Choice (Single Answer)

SQL stands for

  1. Structured Query Language
  2. Stable Query Language
  3. Synchronous Query Language
  4. System Query Language
Question 13 True/False

As a part of Entity Relationship Modeling conventions, an Entity is represented by a SOFT BOX.

  1. True
  2. False
Question 14 Multiple Choice (Single Answer)

which is an escape identifier i.e, used to avoid the meaning of wildcard characters, and hence interpret underscore and percentage literally

  1. \
  2. /
  3. ESCAPE
  4. *
Question 15 True/False

In RDBMS, one can NOT have two tables with the same column name

  1. True
  2. False
Question 16 True/False

In RDBMS, a TABLE is two dimensional object

  1. True
  2. False
Question 17 True/False

DATABASE is a PHYSICAL object

  1. True
  2. False
Question 18 True/False

Order by – clause comes last in select statement

  1. True
  2. False
Question 19 True/False

desc - is the default option for sorting rows

  1. True
  2. False
Question 20 True/False

Null vales are displayed last in case of ascending and first in case of desc sequences

  1. True
  2. False