Answer:
AC voltages alternate/cycle, at a rate of 60 times each second.
Answer:
A. 
B. 151.2 V
C. 
D. V = 302.4 V
Solution:
As per the question:
Area of the plates of the parallel plate capacitors, A = 
Charge on the plates of the capacitor, 
Now,
(A) To calculate the electric field strength, E when the separation distance, d = 1.00 mm =
:


(B) To calculate potential difference between the plates:

(C) Electric field strength when spacing is 2 mm, i.e.,
:

Since, the above expression of the electric field shows that it does not depend on the separation distance between the plates thus it will remain same, i.e., 
(D) Potential difference across the capacitor when d =
:
V = Ed = 
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 stress level at which fracture will occur for a critical internal crack length of 6.2mm is 135.78MPa
Explanation:
Given data;
Let,
critical stress required for initiating crack propagation Cc = 112MPa
plain strain fracture toughness = 27.0MPa
surface length of the crack = a
dimensionless parameter = Y.
Half length of the internal crack, a = length of surface crack/2 = 8.8/2 = 4.4mm = 4.4*10-³m
Also for 6.2mm length of surface crack;
Half length of the internal crack = length of surface crack/2 = 6.2/2 = 3.1mm = 3.1*10-³m
The dimensionless parameter
Cc = Kic/(Y*√pia*a)
Y = Kic/(Cc*√pia*a)
Y = 27/(112*√pia*4.4*10-³)
Y = 2.05
Now,
Cc = Kic/(Y*√pia*a)
Cc = 27/(2.05*√pia*3.1*10-³)
Cc = 135.78MPa
The stress level at which fracture will occur for a critical internal crack length of 6.2mm is 135.78MPa
For more understanding, I have provided an attachment to the solution.
Answer: Incoherent question
Explanation: This is an act of plagiarism at subjecting the tutor to unnecessary stress at answering the purported question.