answersLogoWhite

0


Best Answer

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

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How are multiple decisions different from nested decisions?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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.


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 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.


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.


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.


When was Nested created?

Nested was created in 1977.


What are examples of nested solids?

three examples of nested solids


Is have nested present past future?

"Have nested" is in the present perfect tense.


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

nested if Statement


Can css comments be nested?

No, the CSS specifications explicitly state that CSS comments cannot be nested. If you try to do this, then your nested comments closing delimiter */ will close out the larger comment and anything after it will be rendered by the web browser. When comments are nested, the nested comment's beginning delimiter /* is ignored yet the closing */ is not.