Answer:
Q = -68.859 kJ
Explanation:
given details
mass 
initial pressure P_1 = 104 kPa
Temperature T_1 = 25 Degree C = 25+ 273 K = 298 K
final pressure P_2 = 1068 kPa
Temperature T_2 = 311 Degree C = 311+ 273 K = 584 K
we know that
molecular mass of 
R = 8.314/44 = 0.189 kJ/kg K
c_v = 0.657 kJ/kgK
from ideal gas equation
PV =mRT






WORK DONE

w = 586*(0.1033 -0.514)
W =256.76 kJ
INTERNAL ENERGY IS



HEAT TRANSFER

= 187.902 +(-256.46)
Q = -68.859 kJ
Answer:
technician A is correct
Explanation:
Technician B has circuit topologies confused. In a series circuit, there is only one path for electrical current to take. In a parallel circuit, the current will divide between paths in proportion to the inverse of their resistance. The least resistance path will have the most current.
Technician A is mostly correct.
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer: I am not for sure
Explanation: