Exercise 3: Manipulate input data and the use of selection statement Write a Python program that keeps a number from the user (between 1 and 12) and displays the name of the month. The value of the month number must be controlled to be between 1 and 12 Example: Input number: 3 Output: March

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
7:38
←
N
1
2
3
4
Projects BcIS 313 2023.pdf
PyCharm is an IDE (integrated development environment), which is a
convenient program for creating and running the Python programs you will
make in this course.
Exercise 2: Installation and download problems
Precise on the below table all problems and how you fix them
Problem?
Go to https://www.jetbrains.com/pycharm/download/ and download the
Community edition for your computer (Mac or Windows).
When the download has completed, locate the file on your computer to and run it
to install PyCharm.
Kingdom of Saudi Arabia
Ministry of Higher Education
University of Jeddah
College of Business
Example :
Input number: 3
Output:
March
Example
Input :
Quiz score: 3
6
Output:
The grade is C.
Exercise 4
جامعة جدة
University of Jeddah
Exercise 3: Manipulate input data and the use of selection statement
Write a Python program that keeps a number from the user (between 1 and 12) and displays
the name of the month. The value of the month number must be controlled to be between 1 and
12
il 4G
Solution?
Exercise 4: Selection and loop statements
A certain professor gives 5-point quizzes that are graded on the scale 5-A, 4-B, 3-C, 2-D, 1-
F, 0-F. Write a program that accepts a quiz score as an input and prints out the corresponding
grade.
The input data must be a float numbers and between 0 and 5
المملكة العربية السعودية
وزارة التعليم العالي
جامعة جدة
كلية الأعمال
O
Write an improved version of the future value program from Chapter 2. Your program will
prompt the user for the amount of the investment, the annualized interest rate, and the number
of years of the investment. The program will then output a nicely formatted table that tracks
the value of the investment year by year. Your output might look something like this:
Transcribed Image Text:7:38 ← N 1 2 3 4 Projects BcIS 313 2023.pdf PyCharm is an IDE (integrated development environment), which is a convenient program for creating and running the Python programs you will make in this course. Exercise 2: Installation and download problems Precise on the below table all problems and how you fix them Problem? Go to https://www.jetbrains.com/pycharm/download/ and download the Community edition for your computer (Mac or Windows). When the download has completed, locate the file on your computer to and run it to install PyCharm. Kingdom of Saudi Arabia Ministry of Higher Education University of Jeddah College of Business Example : Input number: 3 Output: March Example Input : Quiz score: 3 6 Output: The grade is C. Exercise 4 جامعة جدة University of Jeddah Exercise 3: Manipulate input data and the use of selection statement Write a Python program that keeps a number from the user (between 1 and 12) and displays the name of the month. The value of the month number must be controlled to be between 1 and 12 il 4G Solution? Exercise 4: Selection and loop statements A certain professor gives 5-point quizzes that are graded on the scale 5-A, 4-B, 3-C, 2-D, 1- F, 0-F. Write a program that accepts a quiz score as an input and prints out the corresponding grade. The input data must be a float numbers and between 0 and 5 المملكة العربية السعودية وزارة التعليم العالي جامعة جدة كلية الأعمال O Write an improved version of the future value program from Chapter 2. Your program will prompt the user for the amount of the investment, the annualized interest rate, and the number of years of the investment. The program will then output a nicely formatted table that tracks the value of the investment year by year. Your output might look something like this:
7:38
←
Projects BcIS 313 2023.pdf
Write an improved version of the future value program from Chapter 2. Your program will
prompt the user for the amount of the investment, the annualized interest rate, and the number
investment. The program will then output a nicely formatted table that tracks
investment year by year. Your output might look something like this:
8 of 8
Kingdom of Saudi Arabia
Ministry of Higher Education
University of Jeddah
College of Business
Year
0
1
2
3
4
5
6
7
Value
$2000.00
$2200.00
$2420.00
$2662.00
$2928.20
$3221.02
$3542.12
$3897.43
Exercise 5 Functions
7
Exercise 6 Functions
جامعة جدة
University of Jeddah
il 4G
المملكة العربية السعودية
وزارة التعليم العالي
جامعة جدة
كلية الأعمال
Numerologists claim to be able to determine a person's character traits based on the "numeric
value" of a name. The value of a name is determined by summing up the values of the letters
of the name where 'a' is 1, 'b' is 2, 'c' is 3 etc., up to 'z' being 26. For example, the name
"Zelle" would have the value 26 +5+12+12+5= 60 (which happens to be a very auspicious
number, by the way). Write a program that calculates the numeric value of a single name
provided as input.
Write a program that calculates the cost per square inch of a circular pizza, given its diameter
and price. The formula for area is
0
A = πr²
Use two functions-one to compute the area of a pizza, and one to compute cost per square
inch.
Transcribed Image Text:7:38 ← Projects BcIS 313 2023.pdf Write an improved version of the future value program from Chapter 2. Your program will prompt the user for the amount of the investment, the annualized interest rate, and the number investment. The program will then output a nicely formatted table that tracks investment year by year. Your output might look something like this: 8 of 8 Kingdom of Saudi Arabia Ministry of Higher Education University of Jeddah College of Business Year 0 1 2 3 4 5 6 7 Value $2000.00 $2200.00 $2420.00 $2662.00 $2928.20 $3221.02 $3542.12 $3897.43 Exercise 5 Functions 7 Exercise 6 Functions جامعة جدة University of Jeddah il 4G المملكة العربية السعودية وزارة التعليم العالي جامعة جدة كلية الأعمال Numerologists claim to be able to determine a person's character traits based on the "numeric value" of a name. The value of a name is determined by summing up the values of the letters of the name where 'a' is 1, 'b' is 2, 'c' is 3 etc., up to 'z' being 26. For example, the name "Zelle" would have the value 26 +5+12+12+5= 60 (which happens to be a very auspicious number, by the way). Write a program that calculates the numeric value of a single name provided as input. Write a program that calculates the cost per square inch of a circular pizza, given its diameter and price. The formula for area is 0 A = πr² Use two functions-one to compute the area of a pizza, and one to compute cost per square inch.
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Can I have the answer in a python file please

Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question

may i have a screenshot of the code please

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education