Multiple choice technology mainframe

PARSE VALUE "THIS IS A SAMPLE" WITH B A C D WHAT IS THE VALUE OF C?

  1. THIS

  2. IS

  3. A

  4. SAMPLE

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

The PARSE VALUE ... WITH instruction splits the string into words. B gets 'THIS', A gets 'IS', C gets 'A', and D gets 'SAMPLE'. Therefore, the value of the variable C is 'A'.