Johnjjjjjjhhhhhhhhjjjjjjjjjjj
Answer:
import java.util.Scanner;
public class SumVectorElements
{
public static void main(String[] args)
{
final int NUM_VALS = 4;
int[] origList = new int[NUM_VALS];
int[] offsetAmount = new int[NUM_VALS];
int i = 0;
origList[0] = 40;
origList[1] = 50;
origList[2] = 60;
origList[3] = 70;
offsetAmount[0] = 5;
offsetAmount[1] = 7;
offsetAmount[2] = 3;
offsetAmount[3] = 0;
/* Your solution goes here */
// Print the Sum of each element in the origList
// with the corresponding value in the
// offsetAmount.
for (i = 0; i < NUM_VALS; i++)
{
System.out.print((origList[i] + offsetAmount[i])+" ");
}
System.out.println("");
return;
}
}
Explanation: see attachment below
Answer:
a) 600°F days
b) 103°F days
Explanation:
Given data :
overall heat loss coefficient = 400 Btu/h.oF
Furnace efficiency = 0.78
applying the degree- day method the heating energy requirement per day can be obtained by subtracting the average temperature for a particular day from the acceptable mid/balance point temperature
lets assume the mid/balance point temperature = 65°F
a) heating energy requirement in Denver Colorado
we will have 600°F days ; considering the the average temperature - balance point temperature
= 665 - 65 = 600°F
b) heating energy requirement in Little Rock Arkansas
we will have 103° days
Answer:
A. Is constant
Explanation:
This is in accordance with pascal's law of pressure that states the hydraulic pressure in a fluid is transmitted undiminished to every portion of the fluid.