
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
Question
Python
Write a function named maximum that accepts two integer values as arguments and returns the value that is the greater of the two.
For example, if two numbers are one big and one small the function should return the bigger number.
Use the function in a program that prompts the user to enter two integer values.
The program should display the value that is the greater of the two.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 1 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
- Q: write a program that uses a function to display the result of the following equation: a' +b d = l 2carrow_forwardRight rectangular pyramid Solve for surface area (W) A = 1w+12 1 Base length W Base width h Pyramid height +h² +w\ √()²+ Enter value Enter value Enter value +h² Note the formula. Write a Python function that takes base_length, base_width and height as parameters (I, w, h) and computes and prints the pyramid's surface area. Then, test your function to make sure it is computing the surface area correctly. (use Google calculator from above to check your answer). Submit your code. You are not required to submit your entire program, submit only the above specified function.arrow_forwardFunction Name: compliments Parameters: answer1 - a boolean (True or False) representing whether the user is "smart" answer2 - a boolean (True or False) representing whether the user is "awesome" answer3 - a boolean (True or False) representing whether the user is "fun" Description: Write a function that outputs a string of compliments based on the adjectives selected by the inputs. Use the inputs True and False. The function should return the string “You are” concatenated with the compliments that are true. The three compliments should be: "smart" "awesome" and "fun". If none of the compliments are true, print the string “Goodbye.” instead. Test Cases: >>>compliments(True, True, True) You are smart awesome fun. >>>compliments(False, True, False) You are awesome. >>>compliments(False, False, False) Goodbye.arrow_forward
- Create a function that takes a number as an argument and returns "Fizz", "Buzz" or "FizzBuzz" If the number is a multiple of 3 the output should be "Fizz" • If the number given is a multiple of 5, the output should be "Buzz" If the number given is a multiple of both 3 and 5, the output should be "FizzBuzz" ● • If the number is not a multiple of either 3 or 5, the number should be output on its own as shown in the examples below. • The output should always be a string even if it is not a multiple of 3 or 5. Examples fizz buzz (3) → "Fizz" fizz buzz (5) → "Buzz" fizz buzz (15) ➡ "FizzBuzz" fizz buzz (4) "4" (Ctrl)arrow_forwardC programming language *include comments Inside the main function write code that estimates the temperature in a freezer (in °C) given the elapsed time (hours) since a power failure. Assume this temperature (?) is given by? =4?2? + 2− 20where ? is the time since the power failure. The program should prompt the user to enter how long it has been since the start of the power failure in hours and minutes. Note that you will need to convert the elapsed time into hours. Example. If the user enters 3 for hours and 30 minutes, this would need to be converted into 3.5 hoursarrow_forwardCreate a function that will take in a users speed, then check to see if the speed is within: over 200, it will print: Mario Andretti, slow down! 100 to 50, it will print: Too fast! if it does not meet these conditions then the program will print: You are within the speed limit! My code is def speed_limit(): while speed_limit > 200: print("Mario Andretti, slow down!")arrow_forward
- The prompt asks: Write a function that calculates the amount of money a person would earn over a period of years if his or her salary is one penny the first day, two pennies the second day, and continues to double each day. The program should ask the user for the number of years and call the function which will return the total money earned in dollars and cents, not pennies. Assume there are 365 days in a year. function totalEarned(years) { } var yearsWorked = parseInt(prompt('How many years will you work for pennies a day? ')); alert('Over a total of ' + yearsWorked + ', you will have earned $' + totalEarned(yearsWorked));arrow_forwardI attached the code & output. Could you make sure the code is correct.arrow_forwardJS You are writing a number guessing program where the player must try to guess the secret number 17. This function will take a player's guess and tell them if they are either right or whether they should guess higher or lower on their next turn Write a function named "higher_lower" that takes an int as a parameter and returns "higher" if 17 is greater than the input and "lower" if 17 is less than the input, and "correct" if 17 is equal to the input.arrow_forward
- Computer Science R programming Adjust your functions to take into account upper and lower case letters, as well as spaces. Bonus: can your functions also deal with special characters. Apply your first function to the variable x1 and then the second function to your output, so you can convert it back. x1 <- "Hello My Friend" x2 <- "This: Is, Comma: Horror!"arrow_forwardCreate the following program that prompts a user to enter 10 integers. Create a user-defined function to print the 10 integers the user enters. C programming languagearrow_forwardPython Help Write a python function named zeroCheck that is given three integers, and returns true if any of the integers is 0, otherwise it returns false. Call this function from a main function. The main function will prompt the user to enter the three integers, and it will print the false or true, returned by the function Show the analysis, specifications and flowcharts of the two problems Use documentation by commenting your code Write your code in the script modearrow_forward
arrow_back_ios
SEE MORE QUESTIONS
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