Difficulty: Easy
Correct Answer: denial
Explanation:
Introduction / Context:Most imperative programming languages are built around a small set of control structures that govern the order of execution. Recognizing these fundamental constructs is essential for reading code, designing algorithms, and reasoning about program flow across languages such as C, C++, Java, and Python.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
List the canonical categories: sequence, selection, iteration.Compare each option to the canonical set.Identify the outlier: 'denial' does not correspond to any standard program control structure.Verification / Alternative check:
Survey common language manuals: no core construct named 'denial' exists; instead, conditional and looping constructs are universal.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
denial
Discussion & Comments