Database System Concepts
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
Bartleby Related Questions Icon
Related questions
Question
NEED HELP
Write a
- Ask the user to input a temperature in degree fahrenheits as a float.
- Convert the temperature to celcius using the formula below.
- Display the converted temperature.
- Using the int() function, converted the celcius from float to int and display it as well.
- Use comments in your code.
Use any assumptions as neccessary. The formula for conversion is given below:
C = 5/9 x (F-32)
Expert Solution
Check MarkThis question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
bartleby
This is a popular solution
bartleby
Trending nowThis is a popular solution!
bartleby
Step by stepSolved in 2 steps with 1 images
Knowledge Booster
Background pattern image
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
- 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_forwardWrite a program that asks the user for an integer Celsius temperature. Convert Celsius temperatures to Fahrenheit temperatures. The formula is F is the Fahrenheit (and should be shown as a number with 2 decimal places) temperature and C is the Celsius temperature. Create a display that will show the Celsius temperature and its equivalent Fahrenheit temperature. You should ask the user to enter the value for Celsius. Note: the numbers 9, 5, and 32 in the formula are integers and should be assigned to respective variables. You MUST use static casting as part of this solution.arrow_forwardThe following program loads and displays an image. Complete the draw_lines function to draw a green vertical line from top to bottom, 1/3 of the way from the left edge of the image, and a blue horizontal line all the way across the image, 1/3 of the way from the top. Your program should work regardless of the size of the image. Do not change the main function.arrow_forward
- Write a line of code that will get input from the user by prompting them with 'How old are you?' and placing the response in a variable called age.arrow_forwardThe following code is used to plot a heatmap and the result is shown below. The range of the data that represented using the heatmap is of the range from 0 to 600. It can be seen that the numbers over 400 are all shown in the same color. How would you improve the figure to allow the data with higher values to be stood out? inpert talatlaelat a plt rughts s. leattasetuts', ta ta ruts tiure tt. .heataptaftaghts, in, ptt.shol Ha gers -300 -250 200 -100 O a. Set the parameter vmax to a smaller number. O b. Reverse the color bar. Oc. Set the parameter vmax to a larger number. O d. Show the annotation on the figure.arrow_forwardCreate 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_forward
- Need help on this question and can you explain how as well?arrow_forwardUse the text prompt below and store it in a variable (use triple quotes at the start and at the end. Replace the blanks with placeholders (variables) that you will replace with user input. Finally, ask the user one-by-one to input the value for these blanks with appropriate word. The Case of the Missing ____________ (Noun) There once was a detective named ___________ (Noun). One day, the detective's neighbor knocked on the door. "I am so ___________ (adjective), "said the neighbor. "I can't find my ___________ (noun) anywhere. I saw it before I went to club, but later it was gone!" The detective grabbed a pencil and a ___________ (noun) and asked, "Will you describe it?" "Certainly," said the neighbor. "It is ___________ (color), ___________ (adjective), and it never ___________ (verb)." The detective searched ___________(adverb) around every ___________(noun) and behind every ___________ (noun). " ___________! (Exclamation)" said the detective, "I found it! It was right here...arrow_forwardWrite multiple if statements. If car_year is 1969 or earlier, print "Few safety features." If 1970 or later, print "Probably has seat belts." If 1990 or later, print "Probably has antilock brakes." If 2000 or later, print "Probably has airbags." End each phrase with a period and a newline.arrow_forward
- Question 14 papa .Full explain this question and text typing work only We should answer our question within 2 hours takes more time then we will reduce Rating Dont ignore this linearrow_forwarduse the RUSTarrow_forwardYou are about to embark on a trip. You know your start and finish locations. However, you have not settled on a formal route for the trip. You will use Google Maps for your trip. To help make the decision, we will create a trip planning report. The user will enter three alternate routes for the trip which will have different mileages but will use the same starting and finishing locations. This program can be used to create a trip report regardless of the mileage of the trip.The input menus will not specify the route, but will:• Show a descriptive route name• A mileage value• An estimated time (to the nearest decimal - remember, 6 minutes, is 1/10 of an hour- The user may adjust the time if they wish ) from Google Maps.• If the route is expected to have any direct route expenses (tolls, ferries, etc.)• A default valueMenu example:• Menu 1 - Tampa, Florida via I-75 | 1067.00 |15.33 | N• Menu 2 - Tampa, Florida via I-77 | 1028.00 | 15.33 | N• Menu 3 - Tampa, Florida via I-65 | 1124.00 |...arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education