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

Create

a

program that will count and display the odd and even numbers among the

ten(10)

input

values

using a two

dimensional array.



Q1: Write a program to take input for n number of doctor records and write records of all cardiologists in a file named: “record1”. Also write records of all those doctors in another file named: “record2” who are taking salary more than INR 80,000. After writing records in both files, merge their contents in another file: “finalrecord” and read all records of “finalrecord” file and display on screen. [Attributes of doctor: doc_id, doc_name, doc_specialization, doc_salary]

Suppose the mean amount of cholesterol in eggs labeled “large” is 186 milligrams, with standard deviation 7 milligrams. Find the probability that the mean amount of cholesterol in a sample of 144 eggs will be within 1.5 milligrams of the population mean.


Compare and contrast the reproduction of perch and shark

Frog lungs are quite small, give a brief explanation for such formation

a. Determine the sets A and B, if A − B = {1, 2, 7, 8}, B − A = {3, 4, 10} and A ∩ B


= {5, 6, 9}.


b. Verify A ∪ (A ∩ B) = A using the rules of set algebra

Using the following chart




Sales




Commission




ratio




10%




15%




Less than 10000$




Greater than or equal




10000$ and less than




15000$




Greater than or equal 15000$




20%




Commission = sale * commission ratio




Sample Run:




enter the amount of your sales:




your commission is 1912.5

#include <iostream.h>

void main()

{

double temperature;

cout<<”Input Temperature :”;

cin>>temperature;

if (temperature>=80)

{cout<<”go swimming”;}

else if (temperature>=50)

{cout<<”go running”;}

else

{cout<<”stay inside”;}

}



A researcher of a cardboard manufacturing company would like to know the estimated thickness of the cardboard a machine produces How many cardboards should he measure if he wants to be 99% confident that the estimate is accurate to 1 mm. Study shows that the standard deviation is 3mm

Write a complete program that prompts the user for the radius of a sphere, calculates and prins the volume of that sphere. Use a function sphere volume that returs the results of the following expression: (4/3)*π*r3 which is equivalent to (4.0/3.0) *3.14159*pow(radius,3) in C++ code. Sample output Enter the length of the radius of your sphere: 2 volume of sphere with radius 2 is 33.5103


LATEST TUTORIALS
APPROVED BY CLIENTS