Multiple choice technology testing

Which type of loops are present in QTP?

  1. A. For..Next, Select…..Case, Do…Loop

  2. B. If…EndIf, For…Next, While…Wend

  3. C. Do…loop, while…wend, select..case

  4. D. Do..while, While…End, For…next

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

QTP uses VBScript syntax for loops: Do...Loop (with Until/While), While...Wend, and For...Next. Option C lists Select..Case (a conditional, not a loop), and Options A/B mix incorrect combinations.