
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

Transcribed Image Text:Write a function that computes the maximum of the items in the array.
The function name is "func1" and it takes 3 input arguments.
First input argument is the address of the first item in the array.
Second input argument is length of the array
Third input argument is the size of each item in the array
You can use EAX register the return the result from the function.
In the main function, write code to call the function "func1" and send the following
array, it's length and size of each items as input to the "func1"
Array DWORD 1,2,3,4,5
Paragraph
B
+ v
Add a File
Record Audio
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 2 steps

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
- ONLY in pseudocode, no real progamming langue!!! Question) Design a function named findMax that accepts two integer values as arguments and returns the value that is the greater of the two. For example, if 7 and 12 are passed as arguments to the function, the function should return 12. 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. The following modules should be written: - getNum, that accepts a Ref to an integer, prompts the user to enter an integer, and accepts that input - findMax, that accepts two integer values and returns the value that is the greater of the two - showMaximum, that accepts two integer values, calls findMax, and displays the number returned from findMax - The main module, that will call getNum twice to enter two numbers, and showMaximumarrow_forwardMust show it in Python: Please show step by step with comments. Please show it in simplest form. Input and Output must match with the Question Please go through the Question very carefully.arrow_forward*You need to use at least one user define function Write a program to find the first n numbers of the Fibonacci series. You have to take a positive number from input and show all the Fibonacci numbers belongs to that range. If the number is not valid then notify the user and ask to input positive number again. If valid, then print the series. Input: Key in a number: 10 Output: Fibonacci Series: 0 1 1 2 3 5 8 13 21 34 Do you want to continue (y/n)? n Good bye!! Language:(C programming)arrow_forward
- What does it mean to refer to the "base address of an array" when making a function call, and where does that phrase come from?arrow_forwardWhen calling a function, what exactly does it imply to say that you need the "base address of an array"?arrow_forwardWritten in code C and with clear and concise comments Extend your addition, subtraction, multiplication and division program to now present the user with an option to display only one of the results or to display them all, as demonstrated in Figure 2.3. Your program should accept two numbers from the user and carry out all four mathematical operations as before. The results will then be stored in an array and the user will be asked which operation they actually prefer to see displayed on the screen. When the option has been selected, the corresponding mathematical operation should be displayed using printfembedded in various if else statements. Since there are five different cases (display results for +, -, *, / and all of these) you should include five consecutive if (else if) statements, one for each option. In fact, you should also notify the user in case a non-valid option entry is typed, i.e. a number that is not within 1 – 4.This should be the final else statement.Your program…arrow_forward
- using chapters 1 to 7 from the book c how to program 8 editionarrow_forwardIn C programming Language: use the correct program and function descriptions. 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. use the srand() function and offset and range correctly. create and use arrays. to search an array using a sequential search. to use sound programming practices. use of a function and pointers. You are tasked to create a program that will create an array of 100 random integers in the range of 1 to 200 (inclusive) once. Array may contain duplicate values. Your program will then randomly generate a search target/value in the same range of 1 to 200 and perform a sequential search on the array of stored random values 100 times. Your program should print out the following statistics: The number of successful searches ( a match was found). The number of failed searches. (no match was found in the array) The average number of tests…arrow_forwardWrite the main program to create an array of size 10. Create two integer variables called max and min. Write a function to accept this array and its size. This function must populate the array with random numbers in the range -400 to 300. Write a different function to accept this array, its size and the address of the two variables max and min. The function must find the max and min of this array and write it to the min and max using pointer notation. Print the array and the values of max and min in the main program. in C++ visual studioarrow_forward
- Customized step counter Learning Objectives In this lab, you will Create a function to match the specifications Use floating-point value division Instructions A pedometer treats walking 2,000 steps as walking 1 mile. It assumes that one step is a bit over 18 inches (1 mile = 36630 inches, so the pedometers assume that one step should be 18.315 inches). Let's customize this calculation to account for the size of our stride. Write a program whose input is the number of steps and the length of the step in inches, and whose output is the miles walked. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print(f'{your_value:.2f}') Ex: If the input is: 5345 18.315 the output is: You walked 5345 steps which are about 2.67 miles. Your program must define and call the following function. The function should return the number of miles walked.def steps_to_miles(user_steps, step_length) # Define your function here if __name__…arrow_forwardIt's important to note that the name of an array by itself is really a pointer to the first element of the array. Therefore passing an array to function is simple since you can just specify the name of the array. Are these statements true?arrow_forwardHere are three versions of a code fragment located inside a function: Version A for Row in range(10): for Column in range(5): DoSomethingInteresting(Row,Column) return Version B for Row in range(10): for Column in range(5): DoSomethingInteresting(Row,Column) return Version C for Row in range(10): for Column in range(5): DoSomethingInteresting(Row,Column) return How many times do each of the versions call the DoSomethingInteresting function? Write a sentence or two explaining which version is the "correct" versionarrow_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