Test the following Java classes using providing 4 test cases that pass and fail, after fixing any errors: getGrade returns a character A if ma

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Software Trouble Shouting
Test the following Java classes using JUnit
providing 4 test cases that pass and 4 that
fail, after fixing any errors:
getGrade returns a character A if mark is
90-100, B if mark is 80-90, C if it's 70-80,
D if it's 60-70, F if it's less than 60.
showRange displays the range: "90-100" if
grade is A, "80-90" if grade is B, "70-80" if
it's C, "60-70" if it's D, "<60" if it's F.
public static char getGrade(double score) {
if (score >=
return 'A';
else if (score >= 80.0)
return 'B';
else if (score >= 70.0)
return 'C';
else if (score >= 60.0)
return 'D';
else
return 'F';
}
8:19 AM /
Transcribed Image Text:Test the following Java classes using JUnit providing 4 test cases that pass and 4 that fail, after fixing any errors: getGrade returns a character A if mark is 90-100, B if mark is 80-90, C if it's 70-80, D if it's 60-70, F if it's less than 60. showRange displays the range: "90-100" if grade is A, "80-90" if grade is B, "70-80" if it's C, "60-70" if it's D, "<60" if it's F. public static char getGrade(double score) { if (score >= return 'A'; else if (score >= 80.0) return 'B'; else if (score >= 70.0) return 'C'; else if (score >= 60.0) return 'D'; else return 'F'; } 8:19 AM /
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY