answersLogoWhite

0

In order to achieve multiple decisions in a program, you have to join multiple IF statements and use the AND logic to determine if they are true of false, whereas in a nested decision, only one statement must be true in order for it to move forward or End.

If (applicant >= 21) AND (applicant <= 19) then

add 1 to hireList

Else

add 0 to hireList

End if

IF condition1 THEN

IF condition2 THEN

ASP Statement(s) for when condition2 is met

ELSE

ASP Statement(s) when this condition2 is NOT met

END IF

END IF

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is nested tables in oracle9i?

multi-column nested table where customers can have multiple addresses


What is the difference between a nested IF and a multiple condition IFAND?

The difference is mainly in the way a compound condition is set out. A nested IF can be rewritten in terms of IFAND, and conversely.


What are A series of nested if statements is also called?

A series of nested if statements is also called a &quot;conditional structure&quot; or &quot;nested conditionals.&quot; This programming construct allows for multiple conditions to be evaluated in a hierarchical manner, where each if statement can contain additional if statements within its block. This approach helps in making decisions based on complex criteria by checking conditions in a structured way. However, excessive nesting can make the code harder to read and maintain.


What are nested buffers?

Nested buffers refer to a situation where a system has multiple levels of buffers or storage spaces within each other. This can create a hierarchy of buffers, with data passing through multiple stages of buffering before being processed. Nested buffers are commonly used in computing systems to help manage data flow and optimize performance.


What does a nested file mean?

A nested file means that the file is under a few different folders, for example if you have a file called readme.txt it could be under the text folder which is under the programs folder. It just means that the file is nested underneath a few different folder layers.


Does the multiple selves theory apply to brand decisions for consumers?

does multiple selves theory apply to brand decisions for consumers? does multiple selves theory apply to brand decisions for consumers?


What is the correct word for past tense of multiple decisions?

"Multiple" is an adjective and "decisions" is a noun. There is no past tense for either. "Decide" is a verb though, the past tense being "decided." You could say "I made multiple decisions."


What is nested logic?

In Nested Logic a Logic is contained within a Logic. If the Outer Logic is TRUE then the internal Logic is executed. Nested IF, Nested For, Nested While, e.t.c are some examples of Nested Logic in Modern Computer Languages.


When was Nested created?

Nested was created in 1977.


Why doesn't C have nested functions?

Nested functions are used in some languages to enclose multiple functions and variables into a container so that individual function and variable are not seen from outside. In,C this can be done by putting such functions in a seperate source file.


What are examples of nested solids?

three examples of nested solids


What is the if statement that appears inside another if statement?

nested if Statement