
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
urgent:python code
Compare 4 numbers, return the largest number. 1. Create "lib1.py" create a function "CompareNumbers(num1, num2, num3, num4)" - returns the largest number
2. Create "MainNum.py" - import lib1.py - 4 inputs for 4 numbers - pass 4 numbers to function CompareNumbers(num1, num2, num3, num4) - display the largest number with print()
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 3 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
- Question 35 Which of the following is true for a Python function? A function is a code of block that only executes when called and never returns a value. A function only executes when it is called and can be reused Python doesn't support nested function Python doesn't support functionsarrow_forwardIn C language please; Requirements: You must use the correct program and function descriptions. You must use a user defined function for the sequential search and it must use pointers to keep track of the number of successful searches as well as how many test comparisons were made. You must use the srand() function and offset and range correctly.arrow_forwardSo i'm trying to do this problem the question is Compare 4 numbers, return the largest number. 1. Create "lib1.py" create a function "CompareNumbers(num1, num2, num3, num4)" - returns the largest number 2. Create "MainNum.py" - import lib1.py - 4 inputs for 4 numbers - pass 4 numbers to function CompareNumbers(num1, num2, num3, num4) - display the largest number with print() However, I keep on getting an error and don't know what I'm doing wrong.arrow_forward
- use c code to develop the condition and function for the following items and then redevelop the code by adding the function as shown below, the original code has been given below. Hint: a)the function need to be made and develop and than add to the code 1. print Reverse 2. void reverseIt 3. void search Array 4.void search array 5. void array copy and void arrayDiff) b) the answer must be include and output and c code void printReverse(int array[], size); //prints the array reverselyvoid reverseIt(int array[], size); //reverses an arrayvoid searchArray(int array[], int size, int num);// returns the first index of the array whose value is num.//returns -1 if the number was not found in the array// optional for lab 6:void searchnArray(int array[], int size, int num, int n);// returns the nth index of the array whose value is num.//returns -1 if the number was not found in the arrayvoid arrayCopy (int arDest[], int arSource[], int commonSize);// copies cells from arSourc to arDestvoid…arrow_forwardPython code. Please write your own code and use good use of functions. Thanks!arrow_forwardH Step 6: Descriptive Statistics: Points Scored By Your Time in Home Games The management of your team wants you to run descriptive statistics on the points scored by your team in the games played at your team's venue i 2015. Calculate descriptive statistics including the mean, median, variance, and standard deviation for points scored by your team played at Home. following edits to the code block below: 1. Replace ??MEAN_FUNCTION?? with the name of Python function that calculates the mean. 2. Replace ??MEDIAN_FUNCTION?? with the name of Python function that calculates the median. 3. Replace ??VAR_FUNCTION?? with the name of Python function that calculates the variance. 4. Replace ??STD_FUNCTION?? with the name of Python function that calculates the standard deviation. After you are done with your edits, click the block of code below and hit the Run button above. print("Points Scored by Your Team in Home Games (2013 to 2015)") print(" ") your_team_home_df =…arrow_forward
- PYTHON Problem 6 print("Problem 6") Create a function named problem6. O Complete the following chart: 1 2 3 4 5 6 7 8 ● 9 Create a list of ten random numbers from -50 to 50. Sort the numbers and print them. Swap the first and the last number. Print the list. index Function Definition (Copy/Paste) Function Call Terminal Output (Screenshot) -50 -41 -23 -18 -1 9 17 25 39 50 valuearrow_forwardPython 3 NO IMPORT PICKLE Please check the picture and add one more function(def) and fix the error in the code. Write a program that keeps names and email addresses in a dictionary as key-value pairs. You Must create and use at least 5 meaningful functions. A function to display a menu A function to look up a person’s email address A function to add a new name and email address A function to change an email address A function to delete a name and email address. This is the Required Output example: Menu ---------------------------------------- 1. Look up an email address 2. Add a new name and email address 3. Change an existing email address 4. Delete a name and email address 5. Quit the program Enter your choice: 2 Enter name: John Enter email address: John@yahoo.com That name already exists Menu ---------------------------------------- 1. Look up an email address 2. Add a new name and email address 3. Change an existing email address 4. Delete a name and email address…arrow_forwardIs there any way I can get rid of these warnings below? c: In function 'sortProducts': c:165: warning: assignment makes integer from pointer without a cast c:167: warning: assignment makes integer from pointer without a cast c:178: warning: assignment makes integer from pointer without a cast c: In function 'palindrome': c:211: warning: assignment makes integer from pointer without a cast c:211: warning: 'i' is used uninitialized in this function c: In function 'sortProducts': c:165: warning: 'i' is used uninitialized in this function Here is the program below. 157 int * sortProducts (int* A) 158 { 159 //LOCAL DECLARATIONS 160 int t; //temporary variable t 161 int *j; //dkdsk 162 int *i; //smkl mkl 163 164 //EXECUTABLE STATEMENTS 165 for (*i = A; *i != -1; i++) 166 { 167 for(*j = (i + 1); *j != -1 ; j++) 168 { 169 if(* (i) > * (j)) 170 { 171 t = * (i); 172 *i = * (j); 173 * (j) = t; 174 } 175 } 176 } 177…arrow_forward
- Create a simple python sort program with the functions name: sort(), sum_of_list(), and list_max and one more function Requirements: 3 Functions in a separate module file a. Atleast 4-5 Parameters / arguments used b. Return values used 2. Main file created a. Main function created b. Main function used appropriately 3. Decision structure used 4. Repetition structure used 5. Comment/header/style 6. Purpose of code is clear / program has a clear purpose 7. Must Include a menu in the program 8. Use of atleast 3-4predefined modules for example (math/random) .arrow_forward1. Python programming. Please provide a clear, simple, correct solution for the followingarrow_forwardProgram: Python Create a function to match the specifications - Use string concatenation to generate a new return value * Write a program to get the user input and call the custom function and produce the desired output (e.g., using a format function , and if __name__ == '__main__') Instructions Write a function create_password(pet_name, fav_number) that will return a password with the following pattern: : fav_number followed by the pet_name followed by the underscore and fav_number (see example below). Create a program that reads pet name and favorite number from the user, uses the function above, and uses the return value to output: Your new password is "3Angel_3". Ex: If the inputs are: Angel - 3 Ex. output: Your new password is "3Angel_3".arrow_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