The use of loop in java is to run a block of code for a certain number of times.
An example of two potential uses of this command is in the area or aspect of:
- The troubleshoot of networking problems.
- In configuration
<h3>What protocol does the netstat command use?</h3>
It is known to use the Internet Protocol (TCP/IP) and it is one that is used without parameters, this command is said to often show active TCP connections.
<h3>What is netstat used for?</h3>
The network statistics ( netstat ) command is known to be a kind of a networking tool that is often used for troubleshooting and configuration, and this is one that can be used as a tool for monitoring for connections over the network.
Hence, it is used in incoming and outgoing connections, routing tables, port listening, and others. Therefore, An example of two potential uses of this command is in the area or aspect of:
- The troubleshoot of networking problems.
- In configuration
Learn more about troubleshoot from
brainly.com/question/9572941
#SPJ1
Answer:
Explanation:
PDF or (Portable Document Format) this is a format standard to store, design, administrate, this standard include bit maps format, image format, objects, and text format, all these formats to show pages quickly, PDF is a standard and for the devices can show this format, devices like prints, laptops, or even cellphones.
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter month's budget");
double monthBudget = in.nextDouble();
double totalExpenses = 0.0;
double n;
do{
System.out.println("Enter expenses Enter zero to stop");
n = in.nextDouble();
totalExpenses += n;
}while(n>0);
System.out.println("Total expenses is "+totalExpenses);
System.out.println("The amount over your budget is "+ Math.abs(monthBudget-totalExpenses));
}
}
Explanation:
- Using Java programming language
- Prompt user for month's budget
- Use Scanner class to receive and store the amount entered in a variable
- Use a do while loop to continuously request user to enter amount of expenses
- Use a variable totalExpenses to add up all the expenses inside the do while loop
- Terminate the loop when user enters 0 as amount.
- Subtract totalExpenses from monthBudget and display the difference as the amount over the budget
Answer:
cyberspace
Explanation:
It is the notional environment in which communication over computer networks occurs.