Answer:
4m/s
Explanation:
We know that power supplied by the motor should be equal to the rate at which energy is increased of the mass that is to be hoisted
Mathematically
\
We also know that Power = force x velocity ..................(i)
The force supplied by the motor should be equal to the weight (mg) of the block since we lift the against a force equal to weight of load
=> power = mg x Velocity........(ii)
While hoisting the load at at constant speed only the potential energy of the mass increases
Thus Potential energy = Mass x g x H...................(iii)
where
g = accleration due to gravity (9.81m/s2)
H = Height to which the load is hoisted
Equating equations (ii) and (iii) we get
m x g x v = 
thus we get v = H/t
Applying values we get
v = 6/1.5 = 4m/s
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:

Explanation:
The Young's module is:


Let assume that both specimens have the same geometry and load rate. Then:

The displacement rate for steel is:



Answer:
See attachment for detailed answer.
Explanation: