Title | |
---|---|
CASE statement uses which keyword to work like IF statement?CASE statement uses which keyword to work like IF statement?
The answer is:
C. WHEN
|
|
What are the selectors in case of CASE statement?What are the selectors in case of CASE statement?
The answer is:
D. All of the above
|
|
Evaluation of CASE statement is done –Evaluation of CASE statement is done –
The answer is:
B. TOP to BOTTOM
|
|
By using PL/SQL ____, you can repeatedly execute one or more statements over and over againBy using PL/SQL ____, you can repeatedly execute one or more statements over and over again.
The answer is:
A. Loops
|
|
PL/SQL Loops are also known as –PL/SQL Loops are also known as –
The answer is:
B. Iterative Control Statements
|
|
What is the syntax of PL/SQL Loop?What is the syntax of PL/SQL Loop?
The answer is:
C. LOOP Sequence of statements; END LOOP;
|
|
How many types of PL/SQL Loops are there? |
|
Which of the following is correct type of PL/SQL Loop?Which of the following is correct type of PL/SQL Loop?
The answer is:
D. All of the above
|
|
A/An _______ loop in PL/SQL ensures that at least one statement is executed before the loop terminatesA/An _______ loop in PL/SQL ensures that at least one statement is executed before the loop terminates.
The answer is:
D. Exit
|
|
Which of the following is TRUE while using PL/SQL Exit Loop?Which of the following is TRUE while using PL/SQL Exit Loop?
The answer is:
D. All of the above
|
|
The PL/SQL ____ loop runs a series of statements as long as a condition is true, so it can be used in a series of statementsThe PL/SQL ____ loop runs a series of statements as long as a condition is true, so it can be used in a series of statements.
The answer is:
A. While
|
|
What is the correct syntax of WHILE Loop?What is the correct syntax of WHILE Loop?
The answer is:
A. WHILE <condition> LOOP statements; END LOOP;
|
|
When you want to execute a series of statements repeatedly, you use the PL/SQL ____ loopWhen you want to execute a series of statements repeatedly, you use the PL/SQL ____ loop.
The answer is:
C. For
|
|
The counter in PL/SQL FOR Loop is by default incremented by –The counter in PL/SQL FOR Loop is by default incremented by –
The answer is:
B. 1
|
|
Which of the following is TRUE while using PL/SQL FOR Loop?Which of the following is TRUE while using PL/SQL FOR Loop?
The answer is:
D. All of the above
|
|
PL/SQL ____ statement initiates the next iteration of a loop, skipping any code in between, by exiting the loop from the reminder in its body either conditionally or unconditionallyPL/SQL ____ statement initiates the next iteration of a loop, skipping any code in between, by exiting the loop from the reminder in its body either conditionally or unconditionally.
The answer is:
C. Continue
|
|
In which Oracle does the PL/SQL Continue Statement is supported?In which Oracle does the PL/SQL Continue Statement is supported?
The answer is:
D. Oracle 11g
|
|
A ____ statement in PL/SQL allows you to jump from this statement to a specific statement label within the same subprogram within a PL/SQL blockA ____ statement in PL/SQL allows you to jump from this statement to a specific statement label within the same subprogram within a PL/SQL block.
The answer is:
B. GOTO
|
|
The symbol in which the label_name is encapsulated in PL/SQL GOTO statement is –The symbol in which the label_name is encapsulated in PL/SQL GOTO statement is –
The answer is:
D. <<>>
|
|
What is/are the correct restriction(s) on GOTO statement?What is/are the correct restriction(s) on GOTO statement?
The answer is:
D. All of the above
|
MCQs
Views
Best Answers
Points