Answer:
if engineering disappeared for a day i would be at a loss. i wouldnt know what to do with myself considering engineering is my life. one way that engineers improve my life is they help me to understand enything end everything
Explanation:
E. Parts they don’t resemble
Answer:
The maximum length is 3.897×10^-5 mm
Explanation:
Extension = surface energy/elastic modulus
surface energy = 1.05 J/m^2
elastic modulus = 198 GPa = 198×10^9 Pa
Extension = 1.05/198×10^9 = 5.3×10^-12 m
Strain = stress/elastic modulus = 27×10^6/198×10^9 = 1.36×10^-4
Length = extension/strain = 5.3×10^-12/1.36×10^-4 = 3.897×10^-8 m = 3.897×10^-8 × 1000 = 3.897×10^-5 mm
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