Computer Science, asked by manpreetsingh34242, 4 months ago

which of the following are conditional control statements


Answers

Answered by Anonymous
7

Answer:

In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

Answered by amritson24
2

chapter describes two types of PL/SQL control statements: conditional control statements and sequential control statements. Almost every piece of code you write will require conditional control: the ability to direct the flow of execution through your program based on a condition; you do this with IF-THEN-ELSE statements. Far less often, you will need to tell PL/SQL to transfer control unconditionally via the GOTO statement, or to do nothing via the NULL statement. 5.1 Conditional Control Statements You need to be able to implement requirements such as: If the salary is between ten and twenty thousand, then apply a bonus of $1500. If the salary is between twenty and forty thousand, apply a bonus of $1000. If the salary is over forty thousand, give the employee a bonus of $500. or: If the user preference includes the toolbar, display the toolbar when the window first opens. docstore.mik.ua/orelly/oracle/prog2/ch05_01.htm

Similar questions