Answer:
DM Tess, tell her to ignore them
Explanation:
No one is going to listen to you on the internet. The only way to avoid cyberbullying would be to close the computer. Tell her to block them. Easy as that!
Answer:
The packet is dropped
Explanation:
To see why we need to understand the ACL or Access-control list that is a list of permissions that specify which users can access or modify certain things in a system. Because the source IP doesn't have any parameter and is just a plain IP and packet the Cisco firewall will drop the packet based on the ACL rules, in other words, the Cisco firewall doesn't have any parameter that allows it to verify the permission-level of the sender, therefore, the packet will drop.
Answer:
Explanation:
The following loop code is written in Java and asks the user for the 6 integer numbers as mentioned in the question and sums them up. Finally putting them into a variable named total and printing it out.
int total = 0;
for (int x = 0; x < 6; x++) {
Scanner in = new Scanner(System.in);
System.out.println("Enter an integer: ");
total += in.nextInt();
}
System.out.println("Your total is: " + total);