213k views
3 votes
When a nested selection structure is encountered, the second decision is always made by the _______ selection structure. Group of answer choices inner both outer none of these

User Troutwine
by
3.0k points

2 Answers

1 vote

Answer: the second decision is always made by the SECONDARY SELECTION STRUCTURE.

Explanation: Nested selection can basically be described as the number of possible paths at a decision point which can be increased by including various alternatives. This program uses nested selection: name ← str(input("What is your name? ") if name == Bola then OUTPUT("Welcome to the United States, +str(name))

A primary decision is always made by an outer selection structure, while a secondary decision is always made by a nested selection structure.

User Dylan B
by
3.7k points
7 votes

Answer: Outer selection structure.

Explanation: A nested structure can also be referred to as an inner selection structure which is the secondary decision. While the outer selection structure is the primary decision. These are used in making or taking decisions appropriately.

The inner selection structure often falls back on the outer selection structure for decisions to be taken.

User Glace
by
3.4k points