
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
![1. Write an Arduino program that globally declares an array of size fifteen. The array data type is
int.
Write a function that fills the array with random values in the range [low, high]. The function has
two parameters: low, high. The array is not a function parameter because it has been declared
globally.
Write a function that serially tranmits the array data. The function has one parameter that
controls the number of array elements printed on the same line. For example, assume the
function is called printArray. If we want 3 array elements to be printed on one line, then the
function call is printArray(3). We would see something like this for output:
Array
-3
14
-3
2
11
-9
7
10
-4
-2
8
See how there are 3 values printed per line? 3 is the value passed to the function parameter that
controls the number of array elements printed on one line. There should be at least one space
between array elements printed.
In the loop function, call the function that fills the array with random values and then call the
print array function. Each time through the loop, the array is filled with random values and then
serially transmitted (printed).](https://content.bartleby.com/qna-images/question/811e9e09-f827-40da-a830-8949fa4f6658/065d0c6e-cf45-431f-bb11-24c18a936ad0/pr38qxs_thumbnail.png)
Transcribed Image Text:1. Write an Arduino program that globally declares an array of size fifteen. The array data type is
int.
Write a function that fills the array with random values in the range [low, high]. The function has
two parameters: low, high. The array is not a function parameter because it has been declared
globally.
Write a function that serially tranmits the array data. The function has one parameter that
controls the number of array elements printed on the same line. For example, assume the
function is called printArray. If we want 3 array elements to be printed on one line, then the
function call is printArray(3). We would see something like this for output:
Array
-3
14
-3
2
11
-9
7
10
-4
-2
8
See how there are 3 values printed per line? 3 is the value passed to the function parameter that
controls the number of array elements printed on one line. There should be at least one space
between array elements printed.
In the loop function, call the function that fills the array with random values and then call the
print array function. Each time through the loop, the array is filled with random values and then
serially transmitted (printed).
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 with 1 images

Knowledge Booster
Similar questions
- Write a void function that prints the list of nonnegative integers in reverse. Write a void function that prints all the numbers stored in the list that are greater than 10. It will also print the number of such numbers found. Write a function that determines the largest value stored in the array and returns that value to the calling function main. Write a function that determines the number of even integers stored in the array and returns that value to the calling function main. Write a function that calculates the average of the values stored in the array and returns that value. to the calling function main. Write the function calls with the appropriate arguments in the function main. Any values returned will be output. Write appropriate block comments for each function header similar to the ones provided. Show your understanding of the program and thus provide useful information to the reader. Test all the functions using appropriate test data. Use the following code and edit it…arrow_forwardIn C++, please and thank you!arrow_forwardC++ Write a function that accepts an int array and the array’s size as arguments. The function should create a new array that is twice the size of the argument array. The function should copy the contents of the argument array to the new array and initialize the unused elements of the second array with 0. The function should return a pointer to the new array. Demonstrate the function in a complete program.arrow_forward
- USING C lang: Create a simple Tic Tac Toe game designed for one player (against computer). you will need to create arrays and functions to complete this program. The first screen should ask the user for his name, print a welcome message, and display an empty 3x3 Tic Tac Toe board. Then, the program should ask the user to put the coordinates of his move. once the user enters the coordinates, the program should respond accordingly with a print of the user's move and the computer's move. this should go on until a winning pattern is found. Key steps: Game board is designed, user inputs taken and marked on the board, validate the inputs that no two inputs at the same place and out of range, check the winner/loser and complete the game.arrow_forwardC++ Write a program that populates an array with numbers and allows the user to run some actions on the array. Your array will be initialized in your main function to a constant global value, MAX_SIZE, which should be set to 20. To perform the subtasks, you will be writing three functions: fillArray: This function takes in an array of integers and a reference to an integer representing the number of filled elements. In this function, the user is prompred to enter a positive number that is no greater than 20, and this input will loop until the user enters a legal value. This value will be filled inside of the reference parameter mentioned above. From here, the array will be filled up to "value" elements with randomly generated numbers between 1 and 100. Make sure to set the random seed to 20 at the start of main() for consistent results. displayArray: This function takes in an array of integers and an integer representing the number of filled elements. Using a loop, all elements in the…arrow_forwardIn statistics, the mode of a set of values is the value that occurs most often or with the greatest frequency. Write a function that accepts as arguments the following: A) An array of integers B) An integer that indicates the number of elements in the array The function should determine the mode of the array. That is, it should determine which value in the array occurs most often. The mode is the value the function should return. If the array has no mode (none of the values occur more than once), the function should return −1. (Assume the array will always contain non negative values.) Demonstrate your pointer prowess by using pointer notation instead of array notation in this function.arrow_forward
- Write 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_forwardC++arrow_forwardExercise1: Write a program that stores data for 5 students in two different arrays as follows: Name: take student’s names from the console (using Scanner object) then store their names in an array of a String data type GPA: : take student’s GPA from the console (using the same Scanner object) then store their GPAs in an array of a double data type. Exercise 5: Write a program the calculates the maximum number in an array of 10 integers. The input should be taken from the console (using a Scanner object).arrow_forward
- Write a function/method called “addStock” that takes: An array of Stocks The number of stocks in the array A string representing a tickerName A string representing the company the tickerName represents A double representing the price of the stock A double representing the quantity of stock owned. The function must create and add the stock to the array if there is space. The function must return “true” if the addition was successful and “false” otherwise.arrow_forwardC languagearrow_forwardIn statistics, the mode of a set of values is the value that occurs most often or with the greatestfrequency. Write a function that accepts as arguments the following:A. An array of integersB. An integer that indicates the number of elements in the arrayThe function should determine the mode of the array. That is, it should determine which valuein the array occurs most often. The mode is the value the function should return. If the arrayhas no mode (none of the values occur more than once), the function should return −1.Demonstrate your pointer process by using pointer notation instead of array notation in thisfunction.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY