Answer:
D
Explanation:
in series circuit the resistance is divided Total resistance is equal to the sum of resistances
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).
Answer:
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Explanation:
given data
area = 3 ft by 3 ft
air density = 0.075 lbm/ft³
to find out
minimum electric power consumption of the fan motor
solution
we know that energy balance equation that is express as
E in - E out =
......................1
and at steady state
= 0
so we can say from equation 1
E in = E out
so
minimum power required is
E in = W = m
=
put here value
E in =
E in =
E in = 0.1437 Btu/s
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Answer:
The amount of energy transferred to the water is 4.214 J
Explanation:
The given parameters are;
The mass of the object that drops = 5 kg
The height from which it drops = 86 mm (0.086 m)
The potential energy P.E. is given by the following formula
P.E = m·g·h
Where;
m = The mass of the object = 5 kg
g = The acceleration de to gravity = 9.8 m/s²
h = The height from which the object is dropped = 0.086 m
Therefore;
P.E. = 5 kg × 9.8 m/s² × 0.086 m = 4.214 J
Given that the potential energy is converted into heat energy, that raises the 1 g of water by 1°C, we have;
The amount of energy transferred to the water = The potential energy, P.E. = 4.214 J.
Answer:
A.) 0.3088
B.) 0.0017
C.) part A
Explanation:
A.)




B.)


C.) Since the seat performance for an individual pilot is more important than 39 different pilots.