Answer:
Answer with Explanation is in the following attachments.
Explanation:
Harmonic excitation refers to a sinusoidal external force of a certain frequency applied to a system. ... Resonance occurs when the external excitation has the same frequency as the natural frequency of the system. It leads to large displacements and can cause a system to exceed its elastic range and fail structurally.
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
The best answer would be
D. Int calculateCost(int count);
Answer:
r = 1.922 mm
Explanation:
We are given;
Yield stress; σ = 250 MPa = 250 N/mm²
Force; F = 29 KN = 29000 N
Now, formula for yield stress is;
σ = F/A
A = F/σ
Where A is area = πr²
Thus;
r² = 2900/250π
r² = 3.6924
r = √3.6924
r = 1.922 mm