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);
}
}
Answer:
Prevention Against Viruses and Malware.
Speed up Your Computer.
Explanation:
Answer:
How was the addition of an improvement over early web design? Webpages could finally incorporate tables into the design
A user who wants to print a spreadsheet horizontally on a piece of paper instead of vertically to fit more columns on a single page should check the portrait orientation check box.
<h3 /><h3>What is a Spreadsheet?</h3>
A spreadsheet is basically a term used to describe any computer application that is used to <em>compute, organize, analyse and store data</em> in tabular form.
Spreadsheets applications play a crucial role today as they help to make the work of educators more efficient. The next time you come across data presented in a tabular form, do remember it was likely made possible by a spreadsheet application.
You can learn about spreadsheets here brainly.com/question/26919847
#SPJ1
Answer:
Demarcation point
Explanation:
There is point that is set by engineers for the entrance of the cables to provide different services such as Telephone, internet and other utilities. At this point a device has been installed, in which service provider and end users plugin their cables.
Service providers is responsible for any service degradation till this point. After this point user is responsible for any damage. This point is called Demarcation point
.