Multiple choice technology programming languages

program helloworld(output); var I: Integer; begin WriteLn('Hello, World!'); for I := 1 to 10 do WriteLn(I); end

  1. C

  2. PASCAL

  3. ADA

  4. LISP

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

The code shows characteristic Pascal syntax: 'program' header, 'var' declaration, 'begin'/'end' block, and 'WriteLn' procedure. The 'for I := 1 to 10 do' loop with Pascal-style assignment (:=) confirms it's Pascal.