Multiple choice technology programming languages

Which is correct for PRINT statement

  1. PRINT 'HELLO'

  2. PRINT “HELLO”

  3. Both (a) & (b)

  4. None of the above

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

Most programming languages and command systems use single quotes (') for string literals in PRINT statements. Double quotes may have different interpretations (like variable interpolation) or may not be valid at all depending on the specific system.