1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Alexeev081 [22]
4 years ago
10

Use the drop-down menus to choose the correct term or words to complete the statements.

Engineering
1 answer:
aleksklad [387]4 years ago
7 0

Explanation:

Search PubMed v use drop down menu and choose MeSH MeSH term: select MeSH ... Tree) Use Links (right side of screen) to return to PubMed and complete the search (Default): ...

Iven Klineberg, ‎Diana Kingston - 2012 -

You might be interested in
Legal metrology would protect consumers from businesses that do not take measurements according to defined measuring regulations
sergij07 [2.7K]

From what my research concluded, true

5 0
4 years ago
1. The system must be able to manage multiple students (max of 15) and their grades for assignments from three different assignm
mr_godi [17]

Answer:

#include<iostream>

#include<string.h>

using namespace std;

class gradebook;

class student

{

friend class gradebook;

char name[20]; // std name

int homework_grades[6], quiz_grades[6], exam_grades[4]; //grades array

float homework_avg, quiz_avg, exam_avg, final_avg;

};

class gradebook

{

student list[16];

public:

char gb_name[20]; // gradebook name

int max, total;

// Constructor

gradebook()

{

strcpy(gb_name,"noname");

max = 5;

total = 0;

for(int i=1;i<=15;i++)

{

strcpy(list[i].name,"noname");

for(int j=1;j<=5;j++)

{

list[i].homework_grades[j] = -1;

list[i].quiz_grades[j] = -1;

}

list[i].exam_grades[1] = list[i].exam_grades[2] = list[i].exam_grades[3] = -1;

}

}

// Member functions

void display_std_name();

void display_grades(int, int);

int add_std(char *new_name);

int remove(int);

//int ch_grade(int, int);

};

// Define all functions

// Remove a student from list and adjust remaining

int gradebook::remove(int std_id)

{

if(total==0 || std_id>total || std_id<=0)

return 0;

if(std_id==total)

{

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

strcpy(list[total--].name,"noname");

return 1;

}

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

for(int i=std_id; i<total; i++)

{

list[i]=list[i+1];

}

total--;

return 1;

}

// Add student to gradebook

int gradebook::add_std(char *new_name)

{

if(total<15)

{

strcpy(list[++total].name, new_name);

return 1;

}

return 0;

}

// Display student name list

void gradebook::display_std_name()

{

for(int i=1;i<=total;i++)

{

cout<<"\n"<<i<<" "<<list[i].name;

}

}

/* Display grades of students

// (grade_id, student_number_in_list)

homework(1), quiz(2), exam(3)

*/

void gradebook::display_grades(int g_id, int std_id)

{

int i;

if(std_id<=total)

{

if(g_id==1)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].homework_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==2)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].quiz_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==3)

{

for(i=1;i<4;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].exam_grades[i]==-1) cout<<"<ungraded>";

}

}

}

else

cout<<"\nNo such std exists";

}

/****************************** MAIN ****************************/

int main()

{

int main_choice, grade_choice, std_id, new_grade;

char g_name[20], s_name[20];

float a,b,c;

gradebook g;

do

{

cout<<"\n\n-=| MAIN MENU |=-";

cout<<"\n1. Add a student\n2. Remove a student\n3. Change a student’s grade\n4. Change group weights\n5. Change the gradebook name\n6. Display class averages\n7. Display full report\n0. QUIT\n";

cout<<"\nEnter an action: ";

cin>>main_choice;

switch(main_choice)

{

case 0:

break;

case 1:

cout<<"\n-=| ADDING STUDENT |=-";

cout<<"\nPlease enter the student’s name: ";

cin>>s_name;

if(g.add_std(s_name))

cout<<"\n"<<s_name<<" was successfully added to the gradebook!";

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 2:

cout<<"\n-=| REMOVING STUDENT |=-";

if(g.total!=0)

{

g.display_std_name();

cout<<"\n Enter student to remove: ";

cin>>std_id;

if(!g.remove(std_id))

cout<<"\nCannot remove students";

}

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 3:

cout<<"\n-=| CHANGING GRADE |=-\n1. Change a homework grade\n2. Change a quiz grade\n3. Change an exam grade";

cout<<"\nWhat type of grade would you like to change: ";

cin>>grade_choice;

g.display_std_name();

cout<<"\nWhich student’s grade would you like to change? ";

cin>>std_id;

//ch_grade(grade_choice, std_id);

g.display_grades(grade_choice, std_id);

break;

/*

case 4:

cout<<"\n-=| CHANGING WEIGHTS |=-";

while(1)

{

cout<<"\nEnter the weights, separated by spaces, in the order of homework, quizzes, and exams (total must add up to 1.0):";

cin>>a>>b>>c;

if(a+b+c==1.00)

break;

else

cout<<"\n Weights do not add up to 1.0, try again...";

}

break;

case 5:

cout<<"\n-=| CHANGING NAME |=-\nPlease enter the new name for the gradebook: ";

cin>>g_name;

cout<<"\n Gradebook name changed from “ ” to "<<g_name;

break;

case 6:

cout<<"\n-=| CLASS AVERAGES |=-";

cout<<"\nHomework average of class: ";

cout<<"\nQuiz average of class: ";

cout<<"\nExam average of class: ";

cout<<"\nFinal average of class: ";

break;

case 7:

break;

*/

default:

cout<<"\n\nInvalid input\n\n";

}

}while(main_choice!=0);

return 0;

}

Explanation:

6 0
3 years ago
A 1m3 tank containing air at 25℃ and 500kPa is connected through a valve to
Aliun [14]

Answer:

The right answer is "2.2099 m³".

Explanation:

Given:

Mass,

m = 5 kg

Temperature,

T = 35℃

or,

  = 35 + 273

Pressure,

P = 200 kPa

Gas constant,

R = 0.2870 kj/kgK

By using the ideal gas equation,

The volume will be:

⇒ PV=mRT

or,

⇒    V=\frac{mRT}{P}

By substituting the values, we get

          =\frac{5(0.2870)(35+273)}{200}

          =\frac{441.98}{200}

          =2.2099 \ m^3

8 0
3 years ago
Find the dy/dx using implicit differentiation
irina [24]

Answer:

dy/dx = (1 − 2x + 8y) / (4 + 3x − 12y)

Explanation:

d/dx (x − 4y) = d/dx (e^(2x + 3y − 1))

1 − 4 dy/dx = e^(2x + 3y − 1) (2 + 3 dy/dx)

Since x − 4y = e^(2x + 3y − 1):

1 − 4 dy/dx = (x − 4y) (2 + 3 dy/dx)

1 − 4 dy/dx = 2 (x − 4y) + 3 (x − 4y) dy/dx

1 − 4 dy/dx = 2x − 8y + (3x − 12y) dy/dx

1 − 2x + 8y = (4 + 3x − 12y) dy/dx

dy/dx = (1 − 2x + 8y) / (4 + 3x − 12y)

6 0
3 years ago
<img src="https://tex.z-dn.net/?f=%20%5Ctt%20%7BWhat%5C%3A%20%5C%3A%20is%20%5C%3A%20%5C%3A%20inline%5C%3A%20%5C%3A%20function%20
Mila [183]
<h3 /><h3>\huge \bf༆ Answer ༄</h3>

What is a function ?

An expression or rule that defines a relationship between two variables [ one independent and other dependent variable ]

for example ~

y = x² is a function, where y is a dependent variable and x is independent variable.

This function is used to find squares and numbers ~

5 0
3 years ago
Read 2 more answers
Other questions:
  • Peter the postman became bored one night and, to break the monotony of the night shift, he carried out the following experiment
    9·1 answer
  • A strain gage is carefully matched with three fixed-bridge resistors, each having a resistance of 120 2 The gage factor is 2.05,
    9·1 answer
  • 2. The soil borrow material to be used to construct a highway embankment has a mass unit weight of 110.0 pcf, a water content of
    11·1 answer
  • Write a C program that will update a bank balance. A user cannot withdraw an amount ofmoney that is more than the current balanc
    13·1 answer
  • (a) If 5 x 10^17 phosphorus atoms per cm3 are add to silicon as a substitutional impurity, determine the percentage of silicon a
    5·1 answer
  • Which of the following justifies the need for an already-certified engineer to continue to take classes?
    15·1 answer
  • If a soil has e=0.72, moisture content = 12% and Gs=2.72, find the weight of water in KN/m3 to be added to make the soil saturat
    6·1 answer
  • A piece of corroded steel plate was found in submerged ocean vessel. It was estimated that the area of plate to be ~38 inch 2, a
    10·1 answer
  • What car has autopilot?
    14·2 answers
  • Ứng dụng của lưu chất trong máy nén thủy lực
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!