MISY 225 Exam 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards

A

What is the output?

x = 100

if x>80:

    print('A')

elif x>60:

    print('B')

elif x>40:

    print('C')

else:

    print('D')

2
New cards

B

What is the output?

x = 70

 if x>80:
    print('A')
elif x>60:
    print('B')
elif x>40:
    print('C')
else:
    print('D')

3
New cards

D

What is the output?

x = 10

if x>80:

    print('A')

elif x>60:

    print('B')

elif x>40:

    print('C')

else:

    print('D')

4
New cards
  • B

    C

What is the output?

x = 10

if x>80:
    print('A')
else:
    print('B')
    print('C')

  • A

  • B

    C

  • C

  • B

5
New cards