Answer:
U just believe in yourself ..........
Explanation:
<em>If </em><em>there </em><em>a</em><em>r</em><em>e </em><em>more </em><em>electrons </em><em>than </em><em>protons </em><em>in </em><em>a </em><em>piece </em><em>of </em><em>matter </em><em>it </em><em>will </em><em>have </em><em>a </em><em>negative</em><em> </em><em>charge </em><em>.</em><em> </em><em>i</em><em>f</em><em> </em><em>there </em><em>are </em><em>fever </em><em>it </em><em>will </em><em>have </em><em>positive</em><em> </em><em>charge </em><em>and </em><em>if </em><em>there </em><em>are </em><em>e</em><em>qual </em><em>numbers </em><em>it </em><em>will </em><em>have </em><em>neutral</em><em> </em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em><em>.</em>
.
.
.
.
.
.
.
.
hope it was helpful to you.....
Answer:
COMMON ENGINEERING DOCUMENTS
Inspection or trip reports.
Research, laboratory, and field reports.
Specifications.
Proposals.
Progress reports.
ect...
Explanation:
Answer:
(a) The force sustained by the matrix phase is 1802.35 N
(b) The modulus of elasticity of the composite material in the longitudinal direction Ed is 53.7 GPa
(c) The moduli of elasticity for the fiber and matrix phases is 124.8 GPa and 2.2 GPa respectively
Explanation:
Find attachment for explanation
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}