Multiple choice technology programming languages

with Text_To; use Text_To procedure hello is begin put("Hello World"); end hello

  1. LISP

  2. PROLOG

  3. ADA

  4. BASIC

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

The code shows Ada syntax: 'with' and 'use' clauses for package import, 'procedure hello is' declaration, and 'put' for output. These are distinctive Ada features not found in the other languages.