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
Oksanka [162]
2 years ago
8

How does energy transition from one form to another as water moves from behind a dam to downstream of a dam?.

Engineering
1 answer:
Tresset [83]2 years ago
3 0

Answer:
potential energy changes to kinetic energy
Explanation:

You might be interested in
A. Imagine the white car in the left lane is moving more slowly than the surrounding traffic. How is this a violation of a state
asambeis [7]

The roads have pre-described lanes that should follow a particular speed and rules. When a driver drives slowly than he makes the other drivers impatient.

<h3>What are traffic rules?</h3>

Traffic rules are the regulations that are defined to regulate the vehicles and other conveyances that walk on the road. They are different in various places and have separate punishments for not following them.

The left lane of the road is generally for the drivers who want to pass by the vehicle ahead by following the mph rule. If the driver drives slowly then they make the other people impatient and result in honking.

Therefore, the driver driving slowly in the left lane makes others impatient.

Learn more about traffic rules here:

brainly.com/question/6034089

#SPJ2

4 0
2 years ago
Read 2 more answers
A spherical balloon with a diameter of 9 m is filled with helium at 20°C and 200 kPa. Determine the mole number and the mass of
SIZIF [17.4K]

Answer:

<em>number of mole is 31342.36 moles</em>

<em>mass is 125.369 kg</em>

<em></em>

Explanation:

Diameter of the spherical balloon d = 9 m

radius r = d/2 = 9/2 = 4.5 m

The volume pf the sphere balloon ca be calculated from

V = \frac{4}{3} \pi r^3

V = \frac{4}{3}* 3.142* 4.5^3 = 381.75 m^3

Temperature of the gas T = 20 °C = 20 + 273 = 293 K

Pressure of the helium gas = 200 kPa = 200 x 10^3 Pa

number of moles n = ?

Using

PV = nRT

where

P is the pressure of the gas

V is the volume of the gas

n is the mole number of the gas

R is the gas constant = 8.314 m^3⋅Pa⋅K^−1⋅mol^−1

T is the temperature of the gas (must be converted to kelvin K)

substituting values, we have

200 x 10^3 x 381.75 = n x 8.314 x 293

number of moles n  = 76350000/2436 = <em>31342.36 moles</em>

We recall that n = m/MM

or m = n x MM

where

n is the number of moles

m is the mass of the gas

MM is the molar mass of the gas

For helium, the molar mass = 4 g/mol

substituting values, we have

m = 31342.36 x 4

m = 125369.44 g

m =<em> 125.369 kg</em>

3 0
3 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
I want to solve the question
DedPeter [7]

Answer:

yes.

Explanation:

5 0
3 years ago
16. Which polymers are recyclable?
MrRissso [65]

Answer:

Number 2 is HDPE, or High-Density Polyethylene. It is most commonly found in plastic bags, oil and detergent bottles, and toys. It is one of the simplest polymers to recycle. It is broken down into flakes, decontaminated and then reused for pipes, flower pots or reused as (non-food) bottles.

8 0
3 years ago
Other questions:
  • What rule is used to measure the depth of a small<br> diameter hole?
    14·1 answer
  • A freezer is maintained at 20°F by removing heat from it at a rate of 75 Btu/min. The power input to the freezer is 0.70 hp, and
    12·1 answer
  • Compare a series circuit powered by six 1.5-volt batteries to a series circuit powered by a single 9-volt battery. Make sure the
    6·1 answer
  • Natural-draft furnaces are no longer available for new installations because they are _____.
    5·1 answer
  • Disconnecting means shall be capable of being locked in the open position. The provisions for locking do not have to reamin in p
    14·1 answer
  • The fractional_part function divides the numerator by the denominator, and returns just the fractional part (a number between 0
    10·1 answer
  • Create a document that includes a constructor function named Company in the document head area. Include four properties in the C
    7·1 answer
  • At steady state, a valve and steam turbine operate in series. The steam flowing through the valve undergoes a throttling process
    9·1 answer
  • For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration will raise the carbon concentratio
    8·1 answer
  • with a digital system, if you have measured incorrectly and use too low of a kvp for adequate penetration, what do you need to d
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!