Answer:
For listening sake
To listen to information from the computer
They receive audio input from the computer's sound card and produce audio output in the form of sound waves.
Python code:
x=121
x += 9
x *= 2
x -= 4
x >>= 2
x -= 121
It is a Peer-to-peer type of network when you have implemented a network where each device provides shared files with all other devices.
So the answer is Peer-to-peer.
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