🎴 Flashcard Mode

Programming Languages and Threading Concepts

Card1 / 20
Mastered0
Review0
QuestionClick to flip

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

AnswerClick to flip back
A
PASCAL
💡 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.

Change Mode