Import java.util.Scanner; /*please note that i am writing this program in a way that seems as though it is at your level of experience. I am not using arrays to initialize the integers because from the looks of it, you arent at that level yet.*/public class answerBrainly{ public static Scanner in = new Scanner(System.in); public static int input1; public static int input2; public static int input3; public static int input4; public static int input5; public static int input6; public static int input7; public static int input8; public static void main(String[]args){ System.out.println("Please enter in your first grade: "); input1=in.nextInt(); System.out.println("Please enter in your second grade: "); input2=in.nextInt(); System.out.println("Please enter in your third grade: "); input3=in.nextInt(); System.out.println("Please enter in your fourth grade: "); input4=in.nextInt(); System.out.println("Please enter in your fifth grade: "); input5=in.nextInt(); System.out.println("Please enter in your sixth grade: "); input6=in.nextInt(); System.out.println("Please enter in your seventh grade: "); input7=in.nextInt(); System.out.println("Please enter in your eighth grade: "); input8=in.nextInt(); int average = (input1+input2+input3+input4+input5+input6+input7+input8)/8; System.out.println("Your average is: "+average); int input1Calc=average-input1; int input2Calc=average-input2; int input3Calc=average-input3; int input4Calc=average-input4; int input5Calc=average-input5; int input6Calc=average-input6; int input7Calc=average-input7; int input8Calc=average-input8; System.out.println("Your first grade is "+input1Calc+" points away from the average"); System.out.println("Your second grade is "+input2Calc+" points away from the average"); System.out.println("Your third grade is "+input3Calc+" points away from the average"); System.out.println("Your fourth grade is "+input4Calc+" points away from the average"); System.out.println("Your fifth grade is "+input5Calc+" points away from the average"); System.out.println("Your sixth grade is "+input6Calc+" points away from the average"); System.out.println("Your seventh grade is "+input7Calc+" points away from the average"); System.out.println("Your eighth grade is "+input8Calc+" points away from the average"); }}
Internet is the correct answer for the above question.
Explanation:
The Internet Explorer define some security zone (which includes the Restricted sites, internet, Trusted sites, and Local intranet) which is used to block the unwanted sites which can be opened by some other websites.
When any user use any website, sometimes that websites open different websites. This security zone gives the features to secure the user from this event.
There are four-zone which are described in the first line, in which the internet zone is used to take all the websites which are not defined for the other security zone. It means that when any user does not decide the security zone for any websites then by default it comes in the internet zone.
This is also asked by the question, Hence "internet" is the correct answer.
The following code is written in Java and creates all the classes as requested with their variables, and methods. Each extending to the Person class if needed. Due to technical difficulties I have attached the code as a txt file below, as well as a picture with the test output of calling the Staff class.