Answer:

Just draw a line from point D join to point E
The triangle formed DME will be congruent to AMC
Answer:
Numbers 4, 6, & 7 are correct
Explanation:
4- this allows the op amp to have zero voltage so that maximum voltage is transferred to output load.
6- this ensures that op amp doesn't cause loading in the original circuit, high input impedance would not deter the circuit from pulling current from it.
7- high difference between upper and lower frequencies.
Answer:
mass flow rate = 0.0534 kg/sec
velocity at exit = 29.34 m/sec
Explanation:
From the information given:
Inlet:
Temperature 
Quality 
Outlet:
Temperature 
Quality 
The following data were obtained at saturation properties of R134a at the temperature of -16° C




The forklift overturning is a very common way of getting injured from a forklift. Overturning the forklift means it tips over onto it's side due to the operator turning it too fast.
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);
}
}