Answer: Plastic, metal, rubber, wiring, electricity, technology, wifi,
Explanation: You need PLASTIC to make a frame for the computer. METAL
to make an exoskeleton under the plastic frame. RUBBER to hold those loose wires and to make sure the electricity doesn't escape and shock you. ELECTRICITY to charge and make the computer runs. Technology is used for you to log in and out of your computer and WIFI to make sure it doesn't lag.
Answer:
import java.util.Scanner;
public class Division {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter an integer");
int userNum = in.nextInt();
System.out.println("Enter the divisor");
int x = in.nextInt();
int first = userNum/x;
int second = first/x;
int third = second/x;
int fourth = third/x;
System.out.println(first+" "+second+" "+third+" "+fourth);
}
}
Explanation:
- In Java programming langauge use the scanner class to receive the values from the user (userNum and x)
- Carryout integer division of userNum/x to obtain the first number
- Repeat the sam step to obtain the second, third and fourth number
- Output the numbers to the user
Answer:
Multiplying by 2
Explanation:
The binary num number to decimal conversion is made by making the sum of each binary digits multiplying by 2 with raised to the power of the positional notation of digits .
Hope it is helpful to you