
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Create a
First, ask the user if they would like to find out sqrt, log or factorial of a number, then return the results.
Here is the sample output:
Welcome to the simple math helper.
What would you like to calculate?
1. Sqrt
2. Log
3. Factorial
> 1
Enter the number to sqrt:
>9
3
It is recommended that you will need to do some research. First, check to see if the math functions are part of your language. Next, see if they are included with the language, but need to be imported. Finally, look externally for them.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 4 images

Knowledge Booster
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
- ewqeqeqwe python pleasearrow_forwardUse Raptor to answer the following questions . Kim wants to buy a car. Help Kim compute the monthly payment on a loan,given the loan amount, the annual percentage rate of interest, and the number of monthly payments. The program should allow Kim to input the loanamount, interest rate, and how many payments she wants to make. It shouldthen compute and display the monthly payment.You will need the following variables:Payment LoanAmt InterestRateMonthlyRate NumberMonthsYou will need the following formulas:MonthlyRate = InterestRate/1200Note: when the user enters InterestRate as a percentage, it must be dividedby 100 to make it a decimal (i.e., 18% = 18/100 = 0.18). The InterestRateoffered by car dealers is an annual rate so this must be divided by 12 to getthe MonthlyRate. The formula given above combines the two steps (i.e.,annual rate of 18% = 18/100 = 0.18 and the monthly rate is 0.18/12 =0.015 or 18/(100*12) = 18/1200.Payment = LoanAmt * MonthlyRate * (1 +MonthlyRate)^NumberMonths ÷…arrow_forwardJLourses/42392/assignments/976546?module_item_id=2464139 Fall 2021 COP1000 HW4.docx Home In this homework, you will Announcements 1. Code-trace and predict the output of a program Account Modules 2. Write a program that prints a day of the week. 3. Write a program that prints roman numerals. 4. Write a program that calculates and compares the area of two rectangles. Quizzes Dashboard Grades Syllabus NOTES: You will submit six (06) files after completing this homework: Courses Zoom Library Research Guides - THREE source files: yourName_LAB4_1.py, yourName LAB4_2.py AND yourName LAB4_3.py • THREE image files: yourName LAB4_output1.jpg. yourName_LAB4_output2.jpg, AND yourName_LAB4_output3.jpg - You will also enter your response for #1 in the comment section. Calendar Inbox Assignment History 1. Code-Tracing - Without running / testing thefollowing code, predict what the following program would print on the screen if you printed freeze and then boil. Write your answer in the comment…arrow_forward
- Need help with 3 parts on this code. Please edit my code, don't create a different code. I need help with the following code below. I labeled where i need help and where it ends. I also explained in the code what i need help with. EDIT THIS CODE: % Create a program to plot the motion of the ping pong ball with drag. % The program will take inputs for velocity in m/s and angle of launch. % note that with a high speed camera I estmated a launch speed for a ping % pong ball could be 30 m/s. clear clc vel=input('input the initial velocity in m/sec: '); angle=input('input the angle of launch in degrees: '); % convert the degrees into radians so MATLAB likes it angle=angle*pi/180; % set initial position and time x(1)=0; % meters y(1)=.01; % meters time(1)=0; % seconds mass=.00247; %kg ping pong ball .00247 Kg g=-9.8; % m/sec^2 c=-0.0005; % coefficient of drag with density and area in this constant index=1; % so I can load an array for plotting % start to increment the…arrow_forwardالسبت ۲ أكتوبر المحاولة رقم 1 :2 HW • Write a program that computes the average of 5 students grades which are entered by the user. Write a program that converts pounds into kilograms. The program prompts the user to enter a number in pounds, converts it to kilograms, and displays the result. One pound is 0.454 kilograms. محتوى إضافي؟ يمكنك إضافة نص وملفات تدعم إجاباتك. إضافة محتوی إرسال الحفظ لوقت لاحقarrow_forward2. Need help creating a SPIM program for question #1.arrow_forward
- Create an algorithm that will prompt a user to answer the following question. “Do you want to convert the Fahrenheit temperature to Celsius?’ While the user answers yes, the algorithm will prompt a user for a Fahrenheit temperature, convert the Fahrenheit temperature to Celsius, and print the Celsius temperature. Write the algorithm using pseudocode, and create a desk check using at least one set of test data. The formula used to convert Fahrenheit to Celsius is: °C = (°F - 32) / 1.8 Example: 68 °F Celsius = (68-32)/1.8Celsius = (36)/1.8Celsius = 20arrow_forwardPart A: Create a program that prompts the user to input the retail price of an item. Next, prompt them to enter the current discount for the item as a percentage. Then, output the new price with discount applied. A sample program run follows: enter the retail price : 55.75 enter the discount ( as a percentage ) : 12 the discounted price is 49.06 Part B: Create a program that prompts the user to input 4 quiz scores, then outputs the average of the scores. Be sure to format your output to display 1 place after the decimal.arrow_forwardpython onlystart from here: def ask_for_age(): age = int(input('Enter the age of a family member: ')) return agearrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education