WGU D278 Chapter 3 Question and answers rated A+ 2025/2026
1. branch In a program, a is a sequence of statements only
executed under a certain condition.
2. decision In Coral flowcharts, a creates two branches: If the
expression is true, the first branch executes, else the second
branch executes. After- wards, the branches rejoin.
3. if-else A decision and its two branches are often called
branches,
because IF the decision's expression is true then the first branch
executes, ELSE the second branch executes.
4. if A decision whose false branch has no statements is often just
called an
branch.
5. if-elseif branches Commonly, a series of decisions appear cascaded in each
decision's false
branch, known as branches.
6. equality operator The == evaluates to true if the left and right
sides are
equal.
7. nested branches A branch's statements can include any valid statements,
including another
if-else branch, known as .
8. multiple if branches In , each decision is independent, and
thus
more than one branch can execute.
9. equality operator An checks whether two operands' values are
the same
(==) or ditterent (!=).
1/
5
, WGU D278 Chapter 3 Question and answers rated A+ 2025/2026
10. Boolean a type that has just two values: true or false.
11. == A b means a is equal to b.
12. != A means a is not equal to b.
2/
5
1. branch In a program, a is a sequence of statements only
executed under a certain condition.
2. decision In Coral flowcharts, a creates two branches: If the
expression is true, the first branch executes, else the second
branch executes. After- wards, the branches rejoin.
3. if-else A decision and its two branches are often called
branches,
because IF the decision's expression is true then the first branch
executes, ELSE the second branch executes.
4. if A decision whose false branch has no statements is often just
called an
branch.
5. if-elseif branches Commonly, a series of decisions appear cascaded in each
decision's false
branch, known as branches.
6. equality operator The == evaluates to true if the left and right
sides are
equal.
7. nested branches A branch's statements can include any valid statements,
including another
if-else branch, known as .
8. multiple if branches In , each decision is independent, and
thus
more than one branch can execute.
9. equality operator An checks whether two operands' values are
the same
(==) or ditterent (!=).
1/
5
, WGU D278 Chapter 3 Question and answers rated A+ 2025/2026
10. Boolean a type that has just two values: true or false.
11. == A b means a is equal to b.
12. != A means a is not equal to b.
2/
5