Similar Collections


    No collections found

questions

Title
PL/SQL is a –

PL/SQL is a –


  1. Brick Structured Language
  2. Block Structured Language
  3. Banner Structured Language
  4. Build Structured Language
discuss
What does PL/SQL stand for?

What does PL/SQL stand for?


  1. PL/SQL stands for Procedural Language Extension of SQL
  2. PL/SQL stands for Primary Language Extension of SQL
  3. PL/SQL stands for Pattern Language Extension of SQL
  4. PL/SQL stands for Private Language Extension of SQL
discuss
What is TRUE about PL/SQL functionalities?

What is TRUE about PL/SQL functionalities?


  1. Conditions and loops are fundamental elements of procedural languages like PL/SQL.
  2. Various types and variables can be declared, as can procedures and functions, as well as types and variables of those types.
  3. Arrays can be used with it as well as handling exceptions (runtime errors).
  4. All of the above
discuss
Oracle Database's ____ are inherited in PL/SQL

Oracle Database's ____ are inherited in PL/SQL.


  1. Portability
  2. Robustness
  3. Security
  4. All of the above
discuss
PL/SQL text is made up of lexical units, which are groups of characters and can be classified as –

PL/SQL text is made up of lexical units, which are groups of characters and can be classified as –


  1. Delimiters
  2. Identifiers
  3. Literals
  4. All of the above
discuss
A Variable in PL/SQL should not exceed –

A Variable in PL/SQL should not exceed –


  1. 10
  2. 20
  3. 30
  4. 40
discuss
Which of the following is/are TRUE about PL/SQL Variables?

Which of the following is/are TRUE about PL/SQL Variables?


  1. Variables serve as a means for programmers to temporarily store data during code execution.
  2. PL/SQL programs benefit from its use.
  3. There is nothing special about it other than being the name of a storage area.
  4. All of the above
discuss
PL/SQL Variables are by default –

PL/SQL Variables are by default –


  1. Case Sensitive
  2. Upper Case Sensitive
  3. Lower Case Sensitive
  4. Not Case Sensitive
discuss
PL/SQL Variable needs to be declared in the –

PL/SQL Variable needs to be declared in the –


  1. Variable Section
  2. Declaration Section
  3. Initialization Section
  4. None of the above
discuss
The correct syntax to declare PL/SQL variable is –

The correct syntax to declare PL/SQL variable is –


  1. variable_name [CONSTANT] datatype [NOT NULL] [:= | DEFAULT initial_value]
  2. datatype [CONSTANT] variable_name [NOT NULL] [:= | DEFAULT initial_value]
  3. variable_name [CONSTANT] datatype [NULL] [:= | DEFAULT initial_value]
  4. datatype [CONSTANT] variable_name [NULL] [:= | DEFAULT initial_value]
discuss
The term ____ refers to a declaration with a size, scale, or precision limit

The term ____ refers to a declaration with a size, scale, or precision limit.


  1. Constant declaration
  2. Constrained declaration
  3. Constant decision
  4. Constrained decision
discuss
Which of the following is TRUE about Constrained Declaration?

Which of the following is TRUE about Constrained Declaration?


  1. An unconstrained declaration requires more memory than a constrained declaration.
  2. An unconstrained declaration requires less memory than a constrained declaration.
  3. An unconstrained declaration requires equal memory to a constrained declaration.
  4. None of the above
discuss
What is/are the Naming Rules for the PL/SQL Variables?

What is/are the Naming Rules for the PL/SQL Variables?


  1. An ASCII letter must be the first letter in the variable name.
  2. In the case of variables, make sure you use easy to read, easy to understand characters after the first character, such as underscore (_) or dollar sign ($).
  3. Optionally, the variable can be specified as NOT NULL.
  4. All of the above
discuss
In order to initialize a variable with the value other than NULL, it can be done using which method?

In order to initialize a variable with the value other than NULL, it can be done using which method?


  1. The Assignment Operator
  2. The DEFAULT Keyword
  3. Both A. and B.
  4. None of the above
discuss
What is the name of the two variable scopes in PL/SQL?

What is the name of the two variable scopes in PL/SQL?


  1. Local & Grind Variable
  2. Letter & Grind Variable
  3. Local & Global Variable
  4. Letter & Global Variable
discuss
What is the difference between Local & Global Variables?

What is the difference between Local & Global Variables?


  1. Variables in an outer block are defined as local variables since they cannot be accessed from the outside whereas the innermost block declares global variables.
  2. Variables in an inner block are defined as global variables since they cannot be accessed from the outside whereas the outermost block declares local variables.
  3. Variables in an outer block are defined as global variables since they can be accessed from the outside and the innermost block also declares global variables.
  4. Variables in an inner block are defined as local variables since they cannot be accessed from the outside whereas the outermost block declares global variables.
discuss
total MCQs: 16

MCQs

16

Views

95

Best Answers

299

Points

5