Answer:
Vab = 80V
Explanation:
The only current flowing in the circuit is supplied by the 100 V source. Its only load is the 40+60 ohm series circuit attached, so the current in that loop is (100V)/(40+60Ω) = 1A. That means V1 = (1A)(60Ω) = 60V.
Vab will be the sum of voltages around the right-side "loop" between terminals 'a' and 'b'. It is (working clockwise from terminal 'b') ...
Vab = -10V +60V +(0A×10Ω) +30V
Vab = 80V
Answer:
the hurts my brain sorry bud cant help
Explanation:
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.
Answer:
englishhhh pleasee
Explanation:
we dont understand sorry....