Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which of the below code would assign the appropriate letter grade based on a numeric score? ( 1 point ) if ( score > =

Which of the below code would assign the appropriate letter grade based on a numeric score? (1 point)
if(score>=90)
grade ="A";
else if(score>=80 && score <90)
grade ="B";
else if(score>=70 && score <80)
grade ="C";
else if(score>=60 && score <70)
grade ="D";
else if(score<60)
grade ="F";
if(score<59)
grade ="F";
else if(score<80)
grade ="C";
else if(score<70)
grade ="D";
else if(score<90)
grade ="B";
else
grade ="A";
if(score>89)
grade ="A";
else if(score>79)
grade ="B";
else if(score>69)
grade ="C";
else if(score>59
grade ="D";
else
grade ="F";
Question 22Select one:
a.
I only
b.
II only
c.
III only
d.
I and II only
e.
I and III only

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions