222k views
3 votes
A program contains the following statements: X = grade If 90: print ("You are an A student!") What action will the program take when x = 89? print "You are an A student!" print "grade - 89" print nothing print "You are a B student!"​

User Chiragrtr
by
6.3k points

2 Answers

1 vote

Answer:

The program is going to print nothing because the script does not tell it to say anything other than when the grade (x) is greater than 90.

Therefore,the correct option is 3, print nothing

User TinOfBeans
by
4.9k points
7 votes

Answer:

C. Print Nothing

Explanation:

For those who don't wanna read

User MattMcKnight
by
5.4k points