Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
matthew marshall

matthew m.

Divider

Questions asked

BEST MATCH

A sperm count any lower than ______ million sperm per mL of semen is usually associated with infertility (sterility). a. 250 to 500 b. 200 to 250 c. 100 to 200 d. 50 to 100 e. 20 to 25

View Answer
divider
BEST MATCH

Which of the following statements about the correlation coefficient is true? Question 11Select one: a. No relationship exists between variables with a negative correlation coefficient. b. A correlation coefficient of 0.98 means that when one variable increases the other variable is likely to increase as well, and therefore a positive relationship exists between the two variables. c. When a strong correlation exists it indicates that one variable causes the other variable. d. A correlation coefficient of – 0.6 indicates a stronger relationship than a correlation coefficient of – 0.8.

View Answer
divider
BEST MATCH

Question 17 1 pts Which of the following statements best describes the difference between fine-grained and coarse-grained multithreading? Fine-grained multithreading is less efficient than coarse-grained multithreading because it requires more processor cycles to switch threads. Fine-grained multithreading switches threads only on costly stalls, whereas coarse-grained multithreading switches threads on every instruction. Coarse-grained multithreading switches threads only on costly stalls, while fine-grained multithreading switches threads on every instruction. Coarse-grained multithreading provides better throughput by switching threads more frequently than fine-grained multithreading.

View Answer
divider
BEST MATCH

Primary growth of a stem is due to the activity of the

View Answer
divider
BEST MATCH

The Intelligence Quotient (IQ) test scores for adults are normally distributed with a population mean of 100 and a population standard deviation of 25. What is the probability we could select a sample of 70 adults and find the mean of this sample is between 95 and 105? Multiple Choice near zero 0.0950 0.2394 0.9050

View Answer
divider
BEST MATCH

Choose the true statements: Question 10 options: Byzantine chant is one of the oldest continuously living song traditions in the world. Byzantine chant is performed by both men and women. Byzantine chant uses a complex system of modes called echoi. Chant is performed during the Orthodox liturgy. Byzantine chant is polyphonic in texture.

View Answer
divider
BEST MATCH

A projectile is launched from the ground at an angle of 60o above the horizontal. At what point in its trajectory does it have the maximum value of acceleration? Neglect air resistance. Group of answer choices

View Answer
divider
BEST MATCH

ABC Inc. sells an item to its clients. Due to the paucity of the item, it has decided to sell 'n' numbers of the item at a time to each client in a sequence in every round. For instance, if n=2, then 2 items are sold to every client in a sequence in the first round. Then, 2 more items are sold to every client in the same sequence in the second round, and so on. This continues till all clients purchase their required number of items, provided the item is available to the seller. Write a Java program to implement this problem using a singly circular linked list. Each node contains the name of the client, its requirement for that item, the remaining item after each purchase, and the waiting time in days. Please see the example of three clients of ABC Inc. below: Assuming n=5, and the waiting time (w)=2 days: The initial stage: Name: XYZ Total item required: 23 Remaining item: 23 Waiting time in days: 0 Name: MNO Total item required: 12 Remaining item: 12 Waiting time in days: 0 Name: PQR Total item required: 34 Remaining item: 34 Waiting time in days: 0 The list after the first round: Name: MNO Total item required: 12 Remaining item: 12 Waiting time in days: 2 Name: PQR Total item required: 34 Remaining item: 34 Waiting time in days: 2 Name: XYZ Total item required: 23 Remaining item: 18 Waiting time in days: 0 The list after the second round: Name: PQR Total item required: 34 Remaining item: 34 Waiting time in days: 4 Name: XYZ Total item required: 23 Remaining item: 18 Waiting time in days: 2 Name: MNO Total item required: 12 Remaining item: 7 Waiting time in days: 2 The list after the third round: Name: XYZ Total item required: 23 Remaining item: 18 Waiting time in days: 4 Name: MNO Total item required: 12 Remaining item: 7 Waiting time in days: 4 Name: PQR Total item required: 34 Remaining item: 29 Waiting time in days: 4 Procedure: Assume that there is a continuous supply of the item. When a client is in the first position of the list, subtract n from the remaining item, and send it to the last position of the list. If a client moves one step forward in the list, add w to the waiting time. When a client purchases all the required items (i.e., the remaining item is 0), then remove that client from the list. The program will print the name of the removed client and the total waiting time. When there will be only one client on the list, then keep subtracting n from the remaining item and adding w to the waiting time until the remaining item is 0. The program will terminate when all clients purchase their required number of items. The sample input and output are given below: (25 points) Sample inputs and outputs: (User's inputs are shown in bold) Enter the number of items to be sold to each client at a time: 5 Enter the waiting time in the list: 2 Enter the number of clients: 3 Enter the name of the client 1: XYZ Enter total requirement: 23 Enter the name of the client 2: MNO Enter total requirement: 12 Enter the name of the client 3: PQR Enter total requirement: 34 The client MNO has received all of its required items, and its total waiting time is 10 days. The client XYZ has received all of its required items, and its total waiting time is 14 days. The client PQR has received all of its required items, and its total waiting time is 20 days. DO NOT use ArrayList, LinkedList, or any other built-in Java classes. You can use the Scanner class to take input. Procedure: Assume that there is a continuous supply of the item. 1. When a client is in the first position of the list, subtract n from the remaining item and send it to the last position of the list. 2. If a client moves one step forward in the list, add w to the waiting time. 3. When a client purchases all the required items (i.e., the remaining item is 0), then remove that client from the list. The program will print the name of the removed client and the total waiting time. 4. When there will be only one client on the list, then keep subtracting n from the remaining item and adding w to the waiting time until the remaining item is 0. The program will terminate when all clients purchase their required number of items. The sample input and output are given below: (25 points) Sample inputs and outputs: (User's inputs are shown in bold) Enter the number of items to be sold to each client at a time: 5 Enter the waiting time in the list: 2 Enter the number of clients: 3 Enter the name of the client 1: XYZ Enter total requirement: 23 Enter the name of the client 2: MNO Enter total requirement: 12 Enter the name of the client 3: PQR Enter total requirement: 34 The client MNO has received all of its required items, and its total waiting time is 10 days. The client XYZ has received all of its required items, and its total waiting time is 14 days. The client PQR has received all of its required items, and its total waiting time is 20 days. DO NOT use ArrayList, LinkedList, or any other built-in Java classes. You can use the Scanner class to take input.

View Answer
divider
BEST MATCH

2. The Alcohol Dependence Scale was developed to assist the world health organization in the classification of alcoholism. In this scale, the higher the score, the greater the alcohol dependency. Five alcoholics seeking counseling for alcohol-related disabilities took this scale, as well as the Michigan Alcoholism Screening Test (the higher the score, the greater the problems related to drinking). (68 points) No ADS(X) MAS(Y) 1 22 39 2 16 28 3 17 35 4 11 25 5 19 38 (1) Complete a table containing the following information. (20 points) # $(x-\bar{x})$, $(x-\bar{x})^2$, $(y-\bar{y})$, $(y-\bar{y})^2$, $(x-\bar{x})(y-\bar{y})$, $(y-\bar{y})^2$, $(y-\bar{y})^2$, $(y-\bar{y})^2$ (2) Compute the regression equation. (8 points) (3) Test the regression coefficient using an F test, including an ANOVA table. (14 points). (4) Draw a scatter plot and fit the regression line on it. Label appropriately. (8 points) (5) Is the regression coefficient useful in predicting the dependent variable? What should be used to predict the outcome of the dependent variable? (4 points) (6) Compute the correlation coefficient using the formula that contains the covariance of X and Y, and the standard deviations. Test if it is significant. (8 points) (7) How much proportion of the variance of Y is explained by the variance of X. How much proportion of Y is due to unknown factors? (6 points)

View Answer
divider
BEST MATCH

Write the equation of a line in slope-intercept form that has a slope of -5 and passes through (1,1).

View Answer
divider