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:
The strength coefficient is
and the strain-hardening exponent is 
Explanation:
Given the true strain is 0.12 at 250 MPa stress.
Also, at 350 MPa the strain is 0.26.
We need to find
and the
.

We will plug the values in the formula.

We will solve these equation.
plug this value in 

Taking a natural log both sides we get.

Now, we will find value of 

So, the strength coefficient is
and the strain-hardening exponent is
.
I think that the answer would be B or C
Answer:
the two defects of a simple cell are:
1. Polarization
2. Local action
Answer:
d. The company uses role-based access control and her user account hasn't been migrated into the correct group(s) yet
Explanation:
Since Deidre is accessing her e-mail there appears to be nothing wrong with her account or password. Since her role is new, most likely the problem is associated with her new role.