Answer:
(a) Surface energy is greater than grain boundary energy due to the fact that the bonds of the atoms on the surface are lower than those of the atoms at the grain boundary. The energy is also directly proportional to the number of bonds created.
(b) The energy of a high-angle grain boundary is higher than that of a small-angle grain boundary because the high-angle grain boundary has a higher misalignment and smaller number of bonds than a small-angle grain boundary.
Explanation:
(a) Surface energy is greater than grain boundary energy due to the fact that the bonds of the atoms on the surface are lower than those of the atoms at the grain boundary. The energy is also directly proportional to the number of bonds created.
(b) The energy of a high-angle grain boundary is higher than that of a small-angle grain boundary because the high-angle grain boundary has a higher misalignment and smaller number of bonds than a small-angle grain boundary.
The answer is B because it could be feasible but it’s not a need it and you got a time frame but it’s not a requirement and it doesn’t have to be unique.
Answer:
ω=314.15 rad/s.
0.02 s.
Explanation:
Given that
Motor speed ,N= 3000 revolutions per minute
N= 3000 RPM
The speed of the motor in rad/s given as

Now by putting the values in the above equation

ω=314.15 rad/s
Therefore the speed in rad/s will be 314.15 rad/s.
The speed in rev/sec given as

ω= 50 rev/s
It take 1 sec to cover 50 revolutions
That is why to cover 1 revolution it take

Answer:
8*10000+3*1000+1*00+2*10+2
Explanation:
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