Answer:
1200KJ
Explanation:
The heat dissipated in the rotor while coming down from its running speed to zero, is equal to three times its running kinetic energy.
P (rotor-loss) = 3 x K.E
P = 3 x 300 = 900 KJ
After coming to zero, the motor again goes back to running speed of 1175 rpm but in opposite direction. The KE in this case would be;
KE = 300 KJ
Since it is in opposite direction, it will also add up to rotor loss
P ( rotor loss ) = 900 + 300 = 1200 KJ
Answer:
Explanation:
We know that Drag force

Where
is the drag force constant.
A is the projected area.
V is the velocity.
ρ is the density of fluid.
Form the above expression of drag force we can say that drag force depends on the area .So We should need to take care of correct are before finding drag force on body.
Example:
When we place our hand out of the window in a moving car ,we feel a force in the opposite direction and feel like some one trying to pull our hand .This pulling force is nothing but it is drag force.
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:
battery life in year = 9 years and 48 days
Explanation:
given data
Battery Ampere-hours = 1.5
Pulse voltage = 2 V
Pulse width = 1.5 m sec
Pulse time period = 1 sec
Electrode heart resistance = 150 Ω
Current drain on the battery = 1.25 µA
to find out
battery life in years
solution
we get first here duty cycle that is express as
duty cycle =
...............1
duty cycle = 1.5 × 
and applied voltage will be
applied voltage = duty energy × voltage ...........2
applied voltage = 1.5 ×
× 2
applied voltage = 3 mV
so current will be
current =
................3
current = 
current = 20 µA
so net current will be
net current = 20 - 1.25
net current = 18.75 µA
so battery life will be
battery life = 
battery life = 80000 hours
battery life in year = 
battery life in year = 9.13 years
battery life in year = 9 years and 48 days
Answer:
import java.util.Scanner;
public class InputExample {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int birthMonth;
int birthYear;
birthMonth = scnr.nextInt();
birthYear = scnr.nextInt();
System.out.println(birthMonth+"/"+birthYear);
}
}