In computer programming, an algorithm that calls itself is said to be ____.
A. iterative
B. recursive
C. cyclic
D. repetitive
Answer: B
Computer Science & Information Technology
You might also like to view...
Where are Web query tools and options located?
A) Review tab B) Insert tab C) Data tab D) Formulas tab
Computer Science & Information Technology
Answer the following statements true (T) or false (F)
1. The following pseudocode is for a loop that will perform three iterations. For start = 6 To 2 Step -3 Do something End For 2. The following pseudocode is for a loop that will perform three iterations. For start = 5 To 10 Step 2 Do something End For 3. The Do-While loop is a posttest loop. 4. The While loop gets its name from the way it works: It does a task while a condition is false.
Computer Science & Information Technology