Answer:
1. Generate a random number
2. Ask the user for a guess.
3. Compare the user's answer to the correct number.
4. Give the user a hint as to whether their guess is too high or too
Explanation:
Leave a like and brainist if this helped
Answer:
He should disable UPnP technology to disallow devices to dynamically add themselves to the network without configuration.
Explanation:
- UPnP stands for Universal Plug n Play.
- It is an easiest way that allows gadgets to find all other devices connecting to your network.
- This can also modify router settings to allow devices from outside the network to access the router.
- External IP address can also be obtained by the gadget and a new port forwarding map can be set
- So from all perspectives, UPnP is an open invitation for hackers to scan for the ports and hack into the device.
- UPnP is a vulnerability to the secure system
Answer:
b. speed up chemical reactions.
Explanation:
brainly plz
Answer:
fifty five years later he burned out the same person who had to go and he said that the same person you met in a long period and I have been on my side and you know what I mean to him but she is the one I want her out and then she has a good time for me to get to the point where I don't know her I would have
Answer:
Explanation:
The following program was written in Java. It creates a loop that asks the user for numbers. If it can convert it to an integer it accepts it and adds it to the sum variable otherwise it ouputs that it is not a valid number. Once all 10 integers are added it prints the Average of the values entered.
import java.util.ArrayList;
import java.util.Scanner;
class Brainly {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int count = 0;
int sum = 0;
while (count != 10) {
System.out.println("Enter a number: ");
String answer = in.nextLine();
try {
int intAnswer = Integer.parseInt(answer);
sum += intAnswer;
count += 1;
} catch (NumberFormatException e) {
System.out.println("Not a valid number.");
}
}
int average = sum / count;
System.out.println("Average: " + average);
}
}