Questions
Suppose you are trying to determine the capacity (in gallons) of the gas tank needed on...

Suppose you are trying to determine the capacity (in gallons) of the gas tank needed on an airplane you are constructing. You want to be able to travel 3200 nautical miles without stopping, and have gathered data on the amount of fuel similar planes used during flights of comparable length. Show complete calculation and your steps, also interpetation and explanation as asked.

Consider a sample with the following properties: x̅ = 261.5, s = 18.73, n = 26

A) Calculate a confidence interval with α = 0.10

B) Calculate a confidence interval with α = 0.01

C) How would you interpret the results for the confidence interval from part B?

In: Math

List the arithmetic operators used in BASIC and state their priorities of execution in a statement....

List the arithmetic operators used in BASIC and state their priorities of execution in a statement. Also give a list and briefly explain the functions of the most popular statements.(IN OWN WORDS MIUST BE)

In: Computer Science

Describe the espoused values of a company you have worked for (or been exposed to -...

Describe the espoused values of a company you have worked for (or been exposed to - e.g., as a customer), but then describe how their enacted values were similar or different.

In: Operations Management

Can you explain to me the differnces in how we paid for the health care (access...

Can you explain to me the differnces in how we paid for the health care (access to care) over our last three generations?

In: Nursing

Discuss proactive and defensive marketing in context to the company position in the hypothetical market structure...

Discuss proactive and defensive marketing in context to the company position in the hypothetical market structure (that is leader/challenger/follower/nicher). Which approach do you think a company should take based on its market share.    

In: Accounting

Write a java code that could be used to show the simulation of a tornado. use...

Write a java code that could be used to show the simulation of a tornado. use the understanding of the mix of low temperature and high temperature wind go create a spinning vortex.

***POSTED INCORRECT QUESTION**
here is the real question:
plz write a simple java code to show a spinning circle of particles.

In: Computer Science

A Canadian company issues an 8-year term bond with face value of​ $1,000 and​ 6% coupon...

A Canadian company issues an 8-year term bond with face value of​ $1,000 and​ 6% coupon rate. If the market prevailing effective rate of interest is​ 5.75%, what is the price an investor will have to​ pay? Note: The bond pays a​ $60 coupon​ (or interest) payment at the end of each of the 8 years and pays the face value at the end of the 8 years.

A.​$1,150.00

B.​$1,200.00

C.​$1,015.85

D.​$1,215.00

In: Finance

1. Consider the following nuclides:                                      &

1. Consider the following nuclides:

                                          NUCLIDE                             MASS (amu)

                                                  511B 11.009305

                                                612C 12.0000

42100Mo 99.90747

                                                83209 Bi 208.97973

                                                92238 U 238.050

For each of these nuclides, find (a) the binding mass in atomic mass units and (b) the binding energy in Mev.

2. (a) Find the average binding energy per nucleon of each nuclide listed in problem 1, and (b) mark the location of each nuclide on the attached graph of average binding energy per nucleon versus atomic mass number.

3. Find the average radius of each nuclide, listed in problem 1.

In: Physics

In general, teams can be described three ways. Name and define each.

In general, teams can be described three ways. Name and define each.

In: Operations Management

JAVASCRIPT: Please create an array of student names and another array of student grades. - Create...

JAVASCRIPT:

Please create an array of student names and another array of student grades.
- Create a function that can put a name and a grade to the arrays.
- Keep Read student name and grade until student name is “???”. And save the reading by using a function
- Create another function to show all the grade in that object.
- Create the third function that can display the maximum grade and the student’s name.
- Create a sorting function that can sort the arrays based on the student’s grade.
- Display all the grades and names sorted by the grade.

Please modify the JavaScript code (HTML) below to meet the requirements, and submit it. Also submit a screenshot of the output.

<html>
<body>
<script>
//store student name in student array and the grade in grade array
function spush(slist, name, sgrade, grade){
slist.push(name);//student list
   sgrade.push(grade);//grade list
}
//show all the student names and their grades
function showlist(slist, sgrade){
var i;
for (i = 0; i < slist.length; i++){
document.writeln(slist[i] +" "+sgrade[i]+ "<br>");
}
}
function findmax(sgrade){
var i;
   var max;
   var maxid;
   max = sgrade[0];
   maxid = 0;
  
   for(i=1;i<sgrade.length; i++){
   if(max < sgrade[i]){
   max = sgrade[i];
       maxid = i;
   }}
  
return maxid;//using index number
   }
var stdlist = [];
var sgrade =[];
var mid;
//instead of following, please use prompt for input
spush(stdlist, "John", sgrade, 90);
spush(stdlist, "Tom", sgrade, 95);
spush(stdlist, "Mary", sgrade, 97);
showlist(stdlist, sgrade);
mid = findmax(sgrade);//max grade index number
  
document.writeln("The maximum grade: "+stdlist[mid]+" "+sgrade[mid]);
</script>
</body>
</html>

In: Computer Science

Topic - Construction: Structural, loads, tension 1.) Explain why pure tension members are the most efficient...

Topic - Construction: Structural, loads, tension

1.) Explain why pure tension members are the most efficient structural types for carrying building loads?

2.) How structural members behave when they are subjected to tension, compression, torsion, and bending forces in structures.

(Please include references, links, if used.)

In: Civil Engineering

Procter and Gamble​ (PG) paid an annual dividend of $ 1.62$1.62 in 2009. You expect PG...

Procter and Gamble​ (PG) paid an annual dividend of $ 1.62$1.62 in 2009. You expect PG to increase its dividends by 8.1 %8.1% per year for the next five years​ (through 2014), and thereafter by 2.9 %2.9% per year. If the appropriate equity cost of capital for Procter and Gamble is 7.3 %7.3% per​ year, use the​ dividend-discount model to estimate its value per share at the end of 2009.

The price per share is ​$____?  (Round to the nearest​ cent.)

In: Finance

locate a recent case of online child pornography. Write a summary of the incident and describe...

locate a recent case of online child pornography. Write a summary of the incident and describe how the incident was discovered, and what criminal outcome occurred to the offender.

In: Computer Science

#Python 5. Write function called evaluate() that evaluates the following Python expressions or assignments as specified:...

#Python

5. Write function called evaluate() that evaluates the following Python expressions or assignments as specified:

  1. Request input from the user for three variables (floating-point or integer) x, y, z, and myAverage.
  2. If the average of the first three numbers equals the fourth number, print 'Your average is correct.'. If not print 'Your average is not correct'. and print the correct average.
  3. Print the largest value among x, y, and z.
  4. Print the minimum value of x, y, y.

>>> evaluate()

Enter a number for x: 3

Enter a number for y: 3

Enter a number for z: 4.5

You have entered x = 3 , y = 3 , z = 4.5

Enter what you think the average of x, y, and z is: 3.5

Your average is correct.

The maximum value of x, y, and z = 4.5

The min value of x, y, and z = 3

>>> evaluate()

Enter a number for x: 3

Enter a number for y: 3

Enter a number for z: 4

You have entered x = 3 , y = 3 , z = 4

Enter what you think the average of x, y, and z is: 4.5

Your average is not correct

    The correct average is: 3.3333333333333335

The maximum value of x, y, and z = 4

The min value of x, y, and z = 3

In: Computer Science

Suggest journal, research paper link reference. i need this as reference for writing a research with...

Suggest journal, research paper link reference. i need this as reference for writing a research with title importance of indoor environmental quality to occupants.

In: Operations Management