Counting and looping statistics problems
1. Five males with an X-linked genetic disorder have one child each. The P(x) random variable x is the number of children among the five who inherit 0.033 the X-linked genetic disorder. Determine whether a probability distribution 0.149 is given. If a probability distribution is given, find its mean and standard 0.318 deviation. If a probability distribution is not given, identify the 0.318 requirements that are not satisfied 0.149 0.033 Does the table show a probability distribution? Select all that apply. A. Yes, the table shows a probability distribution.B. No, the random variable x is categorical instead of numerical. C. No, the sum of all the probabilities is not equal to 1. D. No, not every probability is between 0 and 1 inclusive. E. No, the random variable x's number values are not associated with probabilities. Find the mean of the random variable x. Select the correct choice below and, if necessary, fill in the answer box to complete your choice. OA. H= child(ren) (Round to one decimal place as needed.) O B. The table does not show a probability distribution. Find the standard deviation of the random variable x. Select the correct choice below and, if necessary, fill in the answer box to complete your choice. O A. 0= child(ren) (Round to one decimal place as needed.) O B. The table does not show a probability distribution.d. Is the distance a baseball travels in the air after being hit a discrete random variable, a continuous random variable, or not a random variable? A. It is a continuous random variable. O B. It is a discrete random variable. O C. It is not a random variable. e. Is the time it takes for a light bulb to burn out a discrete random variable, a continuous random variable, or not a random variable? O A. It is a discrete random variable. O B. It is a continuous random variable. O C. It is not a random variable. f. Is the height of a randomly selected giraffe a discrete random variable, a continuous random variable, or not a random variable? O A. It is a continuous random variable. O B. It is a discrete random variable. O C. It is not a random variable.Task ICouting and Looping 1. Write a program that will print the message \"Computer Science is cool! i\" 10 times. Use a while loop. 2. Instead of printing 10 times, ask the user how many times the message should be printed. You will need to declare a variable to store the user's response and use that variable to control the loop. 3. Number each line in the output, and add a message at the end of the loop that says how many times the message was printed. So if the user enters 3, your program should print this: 1 Computer Science is cool!! 2 Computer Science is cool!! 3 Computer Science is cool!! This message is printed 3 times