Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Most learning management systems (Blackboard, Brightspace, etc.) have a feature where grades can be expressed as either percentages or letters. This experience will ask for

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Most learning management systems (Blackboard, Brightspace, etc.) have a feature where grades can be expressed as either percentages or letters. This experience will ask for a percentage and - using the table found in the specifications - return the corresponding letter grade. SPECIFICATIONS - Starter code has been provided for this lab. - Add a comment with your name, date, and program description at the top! - Your output must match the Sample Output exactly. - Using mathematical bracket notation where [...] means inclusive and (...) means exclusive, the scale is below. As an example, the grade 70 would be converted to a C. \begin{tabular}{|c|c|} \hline Grade Range & Letter \\ \hline Below 65 & F \\ \hline[65,70) & D \\ \hline[70,80) & C \\ \hline[90,100) & B \\ \hline[80,90) & A \\ \hline Above 100 & A+ \\ \hline \end{tabular} ==== Grade Converter ===== Enter a numerical grade (1-100): 101 A+ ==== Grade Converter ===== Enter a numerical grade (1-100): -78 F ==== Grade Converter ===== Enter a numerical grade (1-100): 64 F ==== Grade Converter ==== Enter a numerical grade (1-100): 65 D Download these files and load them into your IDE. grade converter.py. Copy this code \# FILE NAME - grade_converter.py \# NAME - \# DATE - \# DESCRIPTION def main (): grade_converter () def grade_converter () : print ('==== Grade Converter ====)

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_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

OCA Oracle Database SQL Exam Guide Exam 1Z0-071

Authors: Steve O'Hearn

1st Edition

1259585492, 978-1259585494

More Books

Students also viewed these Databases questions

Question

=+3 What is the link between SIHRM and IHRM?

Answered: 1 week ago

Question

Write a Python program to check an input number is prime or not.

Answered: 1 week ago

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago

Question

What is the difference between Needs and GAP Analyses?

Answered: 1 week ago

Question

What are ERP suites? Are HCMSs part of ERPs?

Answered: 1 week ago