Programming pseudo code Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What does this line of code do?

age = input(‘How old are you’)
if age < 13
print(‘you aren’t old enough to join social media’)
elif age > 13
print(‘You are old enough to join social media’)

A

Checks the users age to see if they are old enough to use social media.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly