Multiple choice

Which of the following piece of code print the text covered by double quotes.

For Example: "Sun rises in the East"

  1. print Sun rises in the East

  2. print 'Sun rises in the East'

  3. print ' "Sun rises in the East" '

  4. print " 'Sun rises in the East ' "

  5. display "Sun rises in the East"

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

Yes, It prints the text surrounded by the double quotes. "Sun rises in the East"