Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2. Write an algorithm and flowchart to accept a grade and display the remarks: GRADE REMARKS 100-95 A 94 85 B 84 75 C Below
2. Write an algorithm and flowchart to accept a grade and display the remarks:
GRADE | REMARKS |
100-95 | A |
94 85 | B |
84 75 | C |
Below 75 | D |
Others | Out of range |
algorithm ex:
Simulation 1: Step 1: A = 4 Step 2: B = 2 Step 3: if 4 > 2 (T) Print A = 4 Step 4: End Simulation 2: Step 1: A = 5 Step 2: B = 9 Step 3: if 5 > 9 (F) else if 5 < 9 (T) Print B = 9 Step 4: End Simulation 3: Step 1: A = 9 Step 2: B = 9 Step 3: if 9 > 9 (F) else if < 9 (F) else Print The numbers are equal Step 4: End
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started