InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a construct?(a) sequence(b) condition(c) repetition(d) selectionI got this question in a national level competition.The origin of the question is Component Level Design in portion Design and Implementation of Software Engineering |
|
Answer» CORRECT option is (d) selection To elaborate: Sequence implements processing STEPS that are ESSENTIAL in the specification of any algorithm. Condition PROVIDES the facility for selected processing BASED on some logical occurrence, and repetition allows for looping. |
|