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
RideAnS [48]
3 years ago
6

Q1: The first option should always be to get out safely (RUN)

Engineering
1 answer:
nekit [7.7K]3 years ago
6 0

Answer:

Q1 true

Q2 true

And other I am confuse

You might be interested in
Technicians have to determine the flow rate of water in a pipe with the aid of a venturi installation and a mercury au.oaeter. T
Schach [20]

Answer:

Manometric difference x=142.85 mm.

Explanation:

Given :

 Pipe diameter d_1=40 mm

venturi meter d_2=20 mm

We can know that discharge through venturi meter is given as

Q=C_d\dfrac{A_1A_2\sqrt{2gh}}{\sqrt {A_1^2-A_2^2}}

A_1=1.24\times 10^{-3},A_2=3.12\times 10^{-4}

Q=A_1V_1

Q=1.24\times 10^{-3}\times 1.5=0.00186 m^3/s

0.00186=0.97\dfrac{1.24\times 10^{-3}\times 3.12\times 10^{-4} \sqrt{2gh}}{\sqrt {(1.24\times 10^{-3})^2-(3.12\times 10^{-4})^2}}

h=1.8 m

We know that h=x\left (\dfrac{\rho_{hg}}{\rho_w}-1\right )

Where x is the manometric deflection

⇒ 1.8=x\left (\dfrac{13600}{1000}-1\right )

So x=14.28 mm

Manometric difference x=142.85 mm.

7 0
3 years ago
If a plus sight of 12.03 ft is taken on BM A, elevation 312.547 ft, and a minus sight of 5.43 ft is read on point X, calculate t
DochEvi [55]

Answer:

Therefore, height of instrument is 324.577 ft

Therefore, elevation of point x is 330 m

Explanation:

Given that

Plus sight on BM = 12.03 ft

Minus sight is = 5.43 ft

Elevation = 312.547 ft

Height of instrument is H.I

H.I = elevation on bench mark + plus sight

    =  312.547 + 12.03 = 324.577 ft

Therefore, height of instrument is 324.577 ft

Elevation at point x is = H.I - minus sight

                                    = 324.577 - (- 5.43)

                                     = 330.00 m

Therefore, elevation of point x is 330 m

3 0
4 years ago
Water at atmospheric pressure boils on the surface of a large horizontal copper tube. The heat flux is 90% of the critical value
zloy xaker [14]

Answer:

119.1°c

Explanation:

Temperature can be referred to as a measure of the warmth or coldness of an object or substance with reference to some standard value. The temperature of two systems is the same when the systems are in thermal equilibrium.

To determine the tube surface temperature immediately after installation and after prolonged service.

We will apply to appropriate formula, but first lets define the terms in the question.

Please kindly check attachment.

6 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
True/False
Temka [501]

Answer:

<h2>True </h2>

because it maybe have been broken or can cause minor accident.

8 0
3 years ago
Other questions:
  • The current entering the positive terminal of a device is i(t)= 6e^-2t mA and the voltage across the device is v(t)= 10di/dtV.
    6·1 answer
  • Tool life testing on a lathe under dry cutting conditions gauge 'n' and 'C' of Taylor tool life equation as 0.12 and 130 m/min.
    9·1 answer
  • Write a python program to apply this:
    15·1 answer
  • A square power screw has a mean diameter of 30 mm and a pitch of 4 mm with single thread. The collar diameter can be assumed to
    14·1 answer
  • Consider the thermocouple and convection conditions of Example 1, but now allow for radiation exchange with the walls of a duct
    8·1 answer
  • Catch of the day:
    9·2 answers
  • a circuit contains four capacitors connected in parallel. The values of the capacitors are 0.1 microfarads, 0.6 microfarads 1.0
    10·1 answer
  • You have been asked to design a steady state treatment device similar to a continuously mixed reactor to treat toluene in an aqu
    11·1 answer
  • Air with a mass flow rate of 2.3 kg/s enters a horizontal nozzle operating at steady state at 450 K, 350 kPa, and velocity of 3
    5·1 answer
  • There are 22 people in the classroom 12 are we
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!