print
Which code creates this output:
banana 🍌
Select the correct answer:
print "banana 🍌"
print "🍌 banana"
print "print 🍌 banana"
print "print banana 🍌"
🍌 banana
print 🍌 banana
print banana 🍌
What will this code show when it runs?
Which program does not causes any parse errors?
Select all correct answers:
print "🍌 banana
Note
A parse error, also known as a syntax error or compilation error, happens when your code doesn't follow Evy's language rules. A parse error prevents the computer from understanding and executing your program.
Which program causes one or more parse errors?
print "bug 🪲"
print "🪲 bug
Print "print 🪲 bug"
print print bug 🪲"
Which code creates this output? Keep a close eye on the spaces.
3. .2 ...1 🚀
Choose one correct answer:
print "3. .2" "...1 🚀"
print "3 . . 2" "...1 🚀"
print "3." ". 2" "...1 🚀"
print "3 ." ".2" "...1 🚀"
3 . . 2 ...1 🚀
3. . 2 ...1 🚀
3 . .2 ...1 🚀
What will this program output? Keep a close eye on the spaces.
🐒 vs 🤖 - 2:1
print "🐒 vs 🤖 -" "2:1"
print "🐒 vs 🤖 - " "1 : 2"
print "🐒 vs 🤖 -" "2" " : " "1"
print "🐒 vs 🤖 -" "1:" "2"
🐒 vs 🤖 - 1 : 2
🐒 vs 🤖 - 2 : 1
🐒 vs 🤖 - 1: 2
What will this code will output on the screen? Keep a close eye on the spaces.
Which program generates the following output?
🌞 : 🌍 : 🌛
Choose all correct answer:
print "🌞 : 🌍 :" "🌛"
print "🌞 :" "🌍 : 🌛"
print "🌞 : 🌍 : 🌛"
print "🌞 :" "🌍 :" "🌛"
Evy is a modern, beginner-friendly programming language that bridges the gap between block-based coding and conventional programming languages. Its simple syntax and small set of built-in functions make it easy to learn and use, but it still is powerful enough for user interaction, games, and animations.
Created by a software engineer and parent who struggled to teach their kids programming with conventional languages, Evy is designed to make real programming as fun and easy as possible.