Answer:
Bluray
DVD
CD
Explanation:
Blu ray can hold 25gb per layer
Dvd can hold 4.7GB on a single layer
Cd can hold around 737 mb
Also, dvds can go up to 2 layers
Blu ray can go up to 4
Answer:
24.72 kwh
Explanation:
Electric energy=potential energy=mgz where m is mass, g is acceleration due to gravity and z is the elevation.
Substituting the given values while taking g as 9.81 and dividing by 3600 to convert to per hour we obtain
PE=(108*9.81*84)/3600=24.72 kWh
Answer and Explanation:
The DC motor has coils inside it which produces magnetic field inside the coil and due to thus magnetic field an emf is induced ,this induced emf is known as back emf. The back emf always acts against the applied voltage. It is represented by
The back emf of the DC motor is given by
Here N is speed of the motor ,P signifies the number of poles ,Z signifies the the total number of conductor and A is number of parallel paths
As from the relation we can see that back emf and speed ar dependent on each other it means back emf limits the speed of DC motor
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);
}
}