Answer:

Explanation:
given data:
pressure 1 MPa
diameter of pipe = 30 cm
average velocity = 10 m/s
area of pipe

A = 0.070 m2
WE KNOW THAT mass flow rate is given as

for pressure 1 MPa, the density of steam is = 4.068 kg/m3
therefore we have


Answer:
1425.78 N.m
Explanation:
Moments of force is calculated as ;
Moments= Force * distance
M= F*d
The S.I unit for moment of force is Newton-meter (N.m)
Given in the question;
Force = 72 lbs
1 pound = 4.45 N
72 lbs = 4.45 * 72=320.4 N
Distance= 15 ft
1ft= 0.3048 m
15 ft = 15*0.3048 = 4.57 m
d= 4.57 m
M= F*d
M=320.4*4.57 =1425.78 N.m
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Answer:
True
Explanation:
An LED test light is a piece of electronic test equipment used to determine the presence of electricity in a piece of equipment under test, making this statement true.