Answer:
Explanation:
It is the voltage a voltmeter would read when connected across something that has resistance.
___________0_________O______O_______
| |
| | |
|_____________________| |_____________ |
|
The diagram above is supposed to represent 3 lightbulbs connected in series. The vertical lines in the middle are supposed to be a battery which powers the three light bulbs. If you put a voltmeter across one of the lightbulbs, it will read a voltage that is 1/3 of the voltage of the battery.
Answer
That reading you get across the one light bulb is The Voltage Drop.
Answer:
mechanical power used to overcome frictional effects in piping is 2.37 hp
Explanation:
given data
efficient pump = 80%
power input = 20 hp
rate = 1.5 ft³/s
free surface = 80 ft
solution
we use mechanical pumping power delivered to water is
.............1
put here value
= (0.80)(20)
= 16 hp
and
now we get change in the total mechanical energy of water is equal to the change in its potential energy
..............2
and that can be express as
..................3
so
......4
solve it we get
hp
so here
due to frictional effects, mechanical power lost in piping
we get here
put here value
= 16 -13.614
= 2.37 hp
so mechanical power used to overcome frictional effects in piping is 2.37 hp
Answer:
See attached picture.
Explanation:
See attached picture for explanation.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:

Explanation:
In this problem you need to define the force that acts upon a beam in a 3 point bending problem. I put a picture of the problem taken from Wikipedia:
In this problem the flexural strength is defined with the following formula:

where F is the force applied, L the length between the two rods, b the width of the ceramic block and d it's height.
The force is then defined as:
