Explanation:
Ohm's law is used here. V = IR, and variations. The voltage across all elements is the same in this parallel circuit. (V1 =V2 =V3)
The total supply current is the sum of the currents in each of the branches. (It = I1 +I2 +I3)
Rt = (8 V)/(8 A) = 1 Ω . . . . supply voltage divided by supply current
I3 = 8A -3A -4A = 1 A . . . . supply current not flowing through other branches
R1 = (8 V)/(3 A) = 8/3 Ω
R2 = (8 V)/(4 A) = 2 Ω
R3 = (8 V)/(I3) = (8 V)/(1 A) = 8 Ω
V1 = V2 = V3 = 8 V
Answer:
Option D
All the above
Explanation:
Depending with the number of occupants in a building, the number of air conditioners required can either be increased or reduced. For instance, if the building is to be a classroom of over 50 students, 1 air-conditioner can't serve effectively. Similarly, the activity of occupants also dictate the amount of air conditioners required since if it's a gym room where occupants exercise often then the air conditioners required is different from if the room was to serve as a lounge. The appliances that also operate in a room require that air conditioners be installed as per the heat that may be generated by the appliances.
Answer:
In general a cache memory is useful because the speed of the processor is higher than the speed of the ram . so reducing the number of memory is desirable to increase performance .
Explanation:
.
.
#hope it helps you ..
(◕ᴗ◕)
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Answer: For the center plate to remain stationed in one position without rotating, the bottom plate has to move to the left at a speed of 2m/s, so as to cancel the force acting on it from the top.
The center plate will not move when the bottom plate is moving left in a speed of 2m/s to counter the speed of the top plate, because a body will continue to be at rest if all the forces acting towards the body are equal. The center plate will be at rest because we have directed equal force from the top and bottom of the plate.