Homework Answers

Math 51397 50414
Physics 44335 44333
Chemistry 40988 40988
Economics 30646 30644
Programming & Computer Science 26878 26876
English 10084 10084
Biology 8111 8109
Management 6239 6239
Engineering 6056 6056
History 3490 3489
Psychology 2129 2129
Sociology 1858 1858
Geography 1574 1574
Marketing 1443 1443
Philosophy 1001 1001
Political Science 892 891
Law 876 876
French 438 438
Other 199 199

Questions: 238 634

Answers by our Experts: 237 641

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Pollsters are concerned about declining levels of cooperation among persons contacted in surveys. A pollster contacts 97 people in the 18-21 age bracket and finds that 82 of them respond and 15 refuse to respond. When 260 people in the 22-29 age bracket are contacted, 240 respond and 20 refuse to respond. Assume that 1 of the 357 people is randomly selected. Find the probability of getting someone in the 22-29 age bracket or someone who refused to respond.


Report the answer as a percent rounded to one decimal place accuracy. You need not enter the "%" symbol.


P(22-29 or refused) =


Calculate the equivalent weight in phosphoric acid in the reaction H3PO4 + 2NaOH ----> Na2HPO4 + 2 H2O


What mass of hydrogen peroxide must decompose to produce 65.88 g of H2O



Determine the truth value of each of the statement below if the domain consists of all real numbers.


∀x(2x > x)


The brakes of a car moving at 14 m/s are applied, and the car comes to a stop in 48 seconds. How far does the car go while it is slowing down from 14 to 10 m/s?


A.13.7 m


B.16.2 m


C.19.5 m


D.26.3 m

Examine the incomplete program below. Write code that can be placed below the comment (// Write your code here) to complete the program. Use nested loops to calculate the sums and averages of each row of scores stored in the 2-dimensional array: students so that when the program executes, the following output is displayed.

Average scores for students:

Student # 1: 12

Student # 2: 22

CODE:

#include <iostream>

using namespace std;

int main()

{

  const int NUM_OF_STUDENTS = 2;

  const int NUM_OF_TESTS = 3;

  int sum = 0, average = 0;

   

  double students[NUM_OF_STUDENTS][NUM_OF_TESTS] =   

    {

      {11, 12, 13},

      {21, 22, 23}

    };

   

  double averages[NUM_OF_STUDENTS] = {0, 0};

   

  // Write your code here:

   

   

   

  cout << "Average scores for students: " << endl;

  for (int i = 0; i < NUM_OF_STUDENTS; i++)

    cout << "Student # " << i + 1 << ": " << averages[i] << endl;

   

  return 0;

}


Examine the incomplete program below. Write code that can be placed below the comment (// Write your code here) to complete the program. Use nested loops to calculate the sums and averages of each row of scores stored in the 2-dimensional array: students so that when the program executes, the following output is displayed.

OUTPUT:

Average scores for students:

Student # 1: 12

Student # 2: 22

CODE:


#include <iostream>

using namespace std;

int main()

{

  const int NUM_OF_STUDENTS = 2;

  const int NUM_OF_TESTS = 3;

  int sum = 0, average = 0;

   

  double students[NUM_OF_STUDENTS][NUM_OF_TESTS] =   

    {

      {11, 12, 13},

      {21, 22, 23}

    };

   

  double averages[NUM_OF_STUDENTS] = {0, 0};

   

  // Write your code here:

   

   

   

  cout << "Average scores for students: " << endl;

  for (int i = 0; i < NUM_OF_STUDENTS; i++)

    cout << "Student # " << i + 1 << ": " << averages[i] << endl;

   

  return 0;

}


A man rides 10 km east and turns 12 km north. How far is he from the starting point?


A.10.36 km


B.12.86 km


C 14.25 km


D 15.62 km

Calculate the mass of a sample of CO2 with a volume of 0.575 at 50°C and 115 kPa


new york city typically has rain on about 16% of days in October what is the probability that it will rain on exactly 5 days in October and 15 days?


LATEST TUTORIALS
APPROVED BY CLIENTS