Related questions
Write in C++
Alice is trying to monitor how much time she spends studying per week. She going through her logs, and wants to figure out which week she studied the least, her total time spent studying, and her average time spent studying per week. To help Alice work towards this goal, write three functions: min(), total(), and average(). All three functions take two parameters: an array of doubles and the number of elements in the array. Then, they make the following computations:
- min() - returns the minimum value in the array
- sum() - returns the sum of all the values in the array
- average() - returns the average of all the values in the array
You may assume that the array will be non-empty.
Function specifications:
Function 1: Finding the minimum hours studied
- Name: min()
- Parameters (Your function should accept these parameters IN THIS ORDER):
- arr double: The input array containing Alice's study hours per week
- arr_size int: The number of elements stored in the array
- Return Value: double: The minimum value in the array
Function 2: Computing the total hours studied
- Name: sum()
- Parameters (Your function should accept these parameters IN THIS ORDER):
- arr double: The input array containing Alice's study hours per week
- arr_size int: The number of elements stored in the array
- Return Value: double: The sum of all the values in the array
Function 3: Computing the median study hours
- Name: average()
- Parameters (Your function should accept these parameters IN THIS ORDER):
- arr double: The input array containing Alice's study hours per week
- arr_size int: The number of elements stored in the array
- Return Value: double: The average of all the values in the array
Sample run 1:
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images
- Python Functions for Statistical Applications 1A. Implementation with the standard def keyword Suppose you have done a statistical comparison using the Z-scores approach. Write a function for calculating the lower bound of the 95% CI. A starter code for this function is already provided to you below. def compute_lower_bound(n, mu, stdev, z=1.96):"""Computes lower bound of a confidence intervalParameters:n: Type int. number of data pointsmu: Type float. sample meanstdev: Type float. sample standard deviationz: Type float. critical value. Default to 95%CI that corresponds to value of 1.96"""# YOUR CODE HERE# Hint: A correct implementation can be as short as just 1 line long! 1B. Using the function of Part 1A Run your function on the following scenario: There are 500 data points. The sample mean is 2525 The sample standard deviation is 7.57.5 The critical value at 95% confidence, ?0.95�0.95, is a constant: 1.96 # YOUR CODE HERE 1C. Application of Part 1A Now, you are asked to do the...arrow_forwardIn C, Is there a way to evaluate an array for a value > 8? Something like: If any value in the array is >8 then this... else this...arrow_forwardpython only** define the following function: This function must return the task status for a particular task from a checklist. These examples for taskStatus demonstrate how it works. As with addTask, there's the possibility that the task specified is invalid (in this case, because it isn't in the checklist). In that case, taskStatus must print a specific message ("That task does not exist."), and must return None. Define taskStatus with 2 parameters Use def to define taskStatus with 2 parameters Use a return statement Within the definition of taskStatus with 2 parameters, use return _ in at least one place. Do not use any kind of loop Within the definition of taskStatus with 2 parameters, do not use any kind of loop.arrow_forward
- C programming( I have asked this in C programming not C++. I have gotten this in C++ I want it in C programming) The field of astronomy has been significantly advanced through the use of computer technology. Algorithms can automatically survey digital images of the night sky, looking for new patterns. For this problem, you should write such an analysis program which counts the number of stars visible in an bitmap image. An image consists of pixels, and each pixel is either black or white (represented by the characters # and -, respectively). All black pixels are considered to be part of the sky, and each white pixel is considered to be part of a star. White pixels that are adjacent vertically or horizontally are part of the same star. Input Each test case begins with a line containing a pair of integers 1≤m, n≤100. This is followed by mm lines, each of which contains exactly nn pixels. Input contains at least one and at most 50 test cases, and input ends at the end of file. Output...arrow_forwardIn c++ pleasearrow_forwardAssuming there is an existing file named my_file and an existing file named your_file in your home directory, write a complete one-line Linux command to add the contents of my_file file to the end of your_file file. NOTE: Your full command MUST be only one line. Nothing else will count.arrow_forward
- C++ program for Simulate roling of dice. Prompt the user to enter a number from 2 to 12. Use a random number generating function to roll two dice until a value matching the user input appears. An individual die has values from 1 to 6, therefore each roll should have limits of 1 to 6. The function should receive two integer values as parameters. The function should generate a random number between the two parameters values (inclusive).The function should return the random number.if values match on display winnerarrow_forwardC++ Can someone help me with this problem? I have been trying it but it still doesn't work. Thank youarrow_forwardConsider the function void change(int *p) { *p = 20; }Show how to call the change function so that it sets the integer variable int i;to 20.arrow_forward
- Write a C++ program that helps the user plan out their budget. It should ask the user for the most recent 5 things that they bought; it should ask for both the name for the item and its price. Then, print out the following: total money spent, average money spent per item, lowest priced item, and highest priced item. You can assume that each item has a different name and a different price. You must use at least 1 array and you must display all numbers as dollar values (exactly 2 places after the decimal) EXPECTED OUTPUT Welcome to the Budget Helper. What are the last 5 things you bought? Item 1 name: Bananas Item 1 price: 1.5 Item 2 name: Shoes Item 2 price: 45 Item 3 name: Coffee Item 3 price: 2.5 Item 4 name: Metrocard Item 4 price: 120 Item 5 name: Jacket Item 5 price: 89 The total amount you spent is 258ドルThe average price per item is 51ドル.60The cheapest item is BananasThe most expensive item is Jacketarrow_forwardin the C++ version please suppose to have a score corresponding with probabilities at the end and do not use the count[] function. Please explain the detail when coding. DO NOT USE ARRAY. The game of Pig The game of Pig is a dice game with simple rules: Two players race to reach 100 points. Each turn, a player repeatedly rolls a die until either a 1 ("pig") is rolled or the player holds and scores the sum of the rolls (i.e. the turn total). At any time during a player's turn, the player is faced with two decisions: roll - if the player rolls 1: the player scores nothing and it becomes the opponents turn. 2 - 6: the number is added to the player's turn total and the player's turn continues. hold - The turn total is added to the player's score and it becomes the opponent's turn. This game is a game of probability. Players can use their knowledge of probabilities to make an educated game decision. Assignment specifications Hold-at-20 means that the player will choose to roll...arrow_forwardReplace all the occurences of the digit 0 in the array with the digit 1 and replace all the occurences of the digit 1 in the array with the digit 0. Write the program in C++ and display the result matrix. {{1,0,0,1,0}, {1,1,1,0,0}, {0,0,0,1,0}, {1,0,1,0,1}, {0,0,1,0,0}}arrow_forward
- 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