Questions
11) You are testing the claim that the proportion of men who own cats is significantly...

11) You are testing the claim that the proportion of men who own cats is significantly different than the proportion of women who own cats.
You sample 180 men, and 30% own cats.
You sample 100 women, and 70% own cats.
Find the test statistic, rounded to two decimal places.

12) You are testing the claim that the mean GPA of night students is different than the mean GPA of day students.
You sample 60 night students, and the sample mean GPA is 2.01 with a standard deviation of 0.53
You sample 30 day students, and the sample mean GPA is 1.75 with a standard deviation of 0.74
Calculate the test statistic, rounded to 2 decimal places

20) Give a 98% confidence interval, for μ1-μ2 given the following information.

n1=35, ¯x1=2.69, s1=0.47
n2=25, ¯x¯2=2.42, s2=0.99

___ < μ1-μ2 < ___ Use Technology Rounded to 2 decimal places.

In: Math

(1 point) Consider the initial value problem my′′+cy′+ky=F(t), y(0)=0, y′(0)=0 modeling the motion of a spring-mass-dashpot...

(1 point) Consider the initial value problem my′′+cy′+ky=F(t), y(0)=0, y′(0)=0 modeling the motion of a spring-mass-dashpot system initially at rest and subjected to an applied force F(t), where the unit of force is the Newton (N). Assume that m=2 kilograms, c=8 kilograms per second, k=80 Newtons per meter, and F(t)=80cos(8t) Newtons. Solve the initial value problem. y(t)= Determine the long-term behavior of the system. Is limt→∞y(t)=0? If it is, enter zero. If not, enter a function that approximates y(t) for very large positive values of t. For very large positive values of t, y(t)≈

In: Advanced Math

create a c++ proram to accept a positive number in the main program. Create and call...

create a c++ proram to accept a positive number in the main program. Create and call the following functions 1.

1. OddorEven -to determine if the number is an odd or even number ( do not use $ or modul opeartor) and will return " even number " or " odd number ".

2. Factorial - to compute the factorial of N.

3. Power - to compute the power of N without using pow function.

display the result in the main function.

use only #include <iostream>

In: Computer Science

Task 4 . . . . . . . . . . . . . ....

Task 4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Consider a disk drive with 2,000 tracks, numbered 0 to 1,999. The request queue has

the following composition: 1045 750 932 878 1365 1787 1245 664 1678 1897

The current position is 1167 and the previous request was served at 1250. For each

of the following disk scheduling algorithms, compute the total distance (in tracks)

that the disk arm would move. Explain how you arrive at your answers.

4.1       First-In-First-Out (FIFO)                                                                                (2)

4.2      Shortest-Service-Time-First (SSTF)                                                             (2)

4.3      SCAN (Without LOOK variation)                                                                     (2)

4.4      C-SCAN (Without C-LOOK variation) (2)

In: Computer Science

An environmentalist wants to find out the fraction of oil tankers that have spills each month....

An environmentalist wants to find out the fraction of oil tankers that have spills each month.

Step 2 of 2:

Suppose a sample of 356 tankers is drawn. Of these ships, 246 did not have spills. Using the data, construct the 90% confidence interval for the population proportion of oil tankers that have spills each month. Round your answers to three decimal places.

In: Math

compare the rreducing capability of Lithium,Almunium hydride to those of sodium borohydride??

compare the rreducing capability of Lithium,Almunium hydride to those of sodium borohydride??

In: Chemistry

Question #2 Write a program that prints a nicely formatted table of the product of every...

  • Question #2 Write a program that prints a nicely formatted table of the product of every pair of numbers in a given set of integer numbers. Your program reads two integer numbers x and y that represent the lower and upper bounds of the set, (?≤?x≤y), respectively. Then, for every pair of numbers in this set {?,?+1,?+2,…,?}{x,x+1,x+2,…,y}, your program should compute the product of the two numbers.
  • Please note the following:
    1. Your program should read each input (lower bound and the upper bound) one at a time, and should make sure that each input is an integer. If not, it should prompt the user to re-enter a valid input.
    2. Once the two numbers are read, your program should validate that the lower bound is less than or equal to the upper bound. Otherwise, the input should be read again, starting from the lower bound.

In: Computer Science

Everything else works except the range, I only want the numbers entered to be in between...

Everything else works except the range, I only want the numbers entered to be in between 2-70 but I can enter 700 for some reason. How can I make the limit work? (This is in C#)

namespace Prime_Numbers
{
class Program
{
static void Main(string[] args)
{
int limit; // Declare limit as an int as we do not need double.

Console.WriteLine("*****************************\nPRIME NUMBERS UP TO 25\n*****************************");

Console.Write("Enter a limit to the prime numbers you want displayed: ");

while (true) {

string input = Console.ReadLine(); // Convert number to a string.
Int32.TryParse(input, out limit);
if (!Int32.TryParse(input, out limit)) // See if we can parse the 'text' string. If False:
{

Console.WriteLine("Input must be a whole number. Please try again.");
}

else if (limit <= 70 || limit >= 2) // If True run the program:
{
Console.WriteLine("Calculating...");
for (int i = 1; i <= limit; i++) // Main loop for the prime number rows.
{
if (checkPrime(i))
{
for (int j = 0; j < i; j++) //For space after "X" has printed.
{
Console.Write("*");
}

Console.WriteLine(" " + i); // Adds prime number onto string output.
}
}

break;
}
  
else // If the number is out of range:
{
Console.WriteLine("The value entered must be between 2 and 70.");
}
}

Console.ReadKey();
}

static bool checkPrime(int n) // Create function to check for prime values.
{
// Check if n is 0 or 1.
if (n == 0 || n == 1)
{
return false;
}

else
{
// Loop from 2 to n / 2,
for (int i = 2; i <= n / 2; i++)
{
// If any number is divisible by i then it is not a prime number
// Assign the result of a boolean expression to n.
if (n % i == 0)
{
return false;
}

}

return true;

} //end of else
}

}

}


In: Computer Science

Write 4-6 professional-level paragraphs on ANY movie of your choice that contains a leadership lesson (even...

Write 4-6 professional-level paragraphs on ANY movie of your choice that contains a leadership lesson (even FROZEN has a ton of leadership lessons - you just have to look for them.) Write up a summary of what leadership lessons you've learned. Be specific. I want to know what leadership styles you saw. Add what events showed you what kind of leader someone was. What situations were most impactful to you (as you as a developing leader yourself) as you watched the movie. What lessons will you takeaway into your own leadership and why?

In: Operations Management

Case 6: Project Resource Management Several people working on the Healthy You Intranet Project are confused...

Case 6: Project Resource Management
Several people working on the Healthy You Intranet Project are confused about their responsibilities for the testing portion of the project. Recall that the team members include you, a programmer/analyst and junior/assistant project manager; Ivan, a network specialist; Helen, a business analyst; and Bonnie, another programmer/analyst. Paul Sparks is the project manager, and he has been working closely with managers in other departments to make sure everyone knows what’s going on with the project.
The main tasks for testing include writing a test plan, unit testing and integration testing for each of the main system modules (registration, tracking, and incentives), system testing, and user acceptance testing.
In addition to the project team members, a team of user representatives is available to help with testing, and Paul has also hired an outside consulting firm ABC Digital to help as needed.
One of the issues Paul identified is the ability to work effectively with the user group during testing. According to MBTI classifications, Paul knows that several of his project team members are very introverted and strong thinking types, while several members of the user group are very extroverted and strong feeling types.

Prepare a responsibility assignment matrix (RAM) based on the information from this case.
3. Prepare a RACI chart (use the template) to help clarify roles and responsibilities for these testing tasks. Document key assumptions you make in preparing the chart.

In: Computer Science

Digital Access Inc. needs $323,640 in funds for a project. (Assume the loan term is one...

Digital Access Inc. needs $323,640 in funds for a project. (Assume the loan term is one year.) a. With a compensating balance requirement of 7 percent, how much will the firm need to borrow? (Do not round intermediate calculations.) Amount to be borrowed $ b. Given your answer to part a and a stated interest rate of 17 percent on the total amount borrowed, what is the effective rate on the $323,640 actually being used? (Input your answer as a percent rounded to 2 decimal places.) Effective rate of interest %

In: Finance

The Herjavec Co. just paid a dividend of $1.95 per share on its stock. The dividends...

The Herjavec Co. just paid a dividend of $1.95 per share on its stock. The dividends are expected to grow at a constant rate of 3 per year indefinitely. Investors require a return of 11 percent on the companys stock. What is the current price of the stock? What will the price be in three years? What will the price be in 6 years?

In: Finance

Physical Chemistry A)The electrolytic conductivity of 0.10 M solution of acetic acid is 5.3x 10-5 Scm-1....

Physical Chemistry

A)The electrolytic conductivity of 0.10 M solution of acetic acid
is 5.3x 10-5 Scm-1. The cell constant was 0.10 cm-1. Neglecting activity
coefficient, Calculate the acid dissociation constant (Ka).
(Λmo for acetic acid = 390. S cm2 mol-1)

B)The observed osmotic pressure of 0.1 M acetic acid solution is
2.45 atm at 25.0 oC. Calculate the Van’t Hoff factor (i) and the degree of
ionization (α). Compare your value with that obtained from problem 1.
Comment on your answer.

In: Chemistry

Please give a breif summary of the mechanism of the following anti-arrhythmic agents 1. Beta-blockers 2.Diuretics...

Please give a breif summary of the mechanism of the following anti-arrhythmic agents
1. Beta-blockers
2.Diuretics
3.ACE Inhibitors

In: Biology

write the vhdl code to get the moore and mealy machine to detect the sequence 1101

write the vhdl code to get the moore and mealy machine to detect the sequence 1101

In: Computer Science