Answer:
elevator , SCAN
Explanation:
In the elevator algorithm, the disk arm starts at one end of the disk and moves toward the other end, servicing requests till the other end of the disk. At the other end, the direction is reversed and servicing continues. SCAN
Hoi!
The correct answer is "A lifestream is a time ordered stream of documents that acts as a user's online diary."
Lifestreaming documents and shares daily moments of someone's online life. :)
Answer:
See explaination for the main functions of the data plane and Of the control plane.
Explanation:
A Data plane is used in a network, it is also known as forwarding plane. The main responsibility of a data plane is to carry forward the packets or data between different clients of the network.
A Control plane used in the network is responsible for establishing a connection information. That is a Control plane connects different controls by exchanging their routing and forwarding information.
get organized because of the beging when she start she will want ot be nice and fresh on everything
Answer:
The answer to this question can be given as
The potential problem with the loop is it's counts when the user enters -1 from the keyboard, so the count will too many.
Explanation:
In the program there some line is missing. So the right program of the question can be given as:
import java.util.*; //import package for take input from user.
public class Main //define main class.
{
public static void main(String[] args)//define main function
{
Scanner scan=new Scanner(System.in); //creating object.
//print values.
System.out.print("Enter integers. Enter -1 to exit.");
System.out.println(" Count of integers entered will be returned.");
int n=0,c=0; //declaring integer variable.
while (n != -1) //loop
{
n = scan.nextInt(); //take input by user and hold on variable n.
c++;
}
System.out.println(c); //print value.
}
}
output:
Enter integers. Enter -1 to exit. Count of integers entered will be returned.
-1
1