Which is correct for PRINT statement
-
PRINT 'HELLO'
-
PRINT “HELLO”
-
Both (a) & (b)
-
None of the above
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.