Answer:
Demarcation Point
Explanation:
The entrance point that can be a device for the telecommunication utilities or service providers in the building. From this device or point users of the building takes the connection to their house or building. This point is also known as the termination point of the service to the building. The purpose of the this point is to provide ease in providing their services to the users of the building. The service provider is responsible for the maintenance till this point. After this point the user is responsible for the maintenance of the cable.
Answer:
In the Internet Options, define the name of the proxy server and the port number.
Explanation:
If the two staff in the company are unable to reach the websites on the internet also they are able to access servers on the local area network also the Other staff members don't encounter the problem and they have to face the same problem because they do not define the name of the proxy server and the port number in the internet option.
If they do not define the proxy server and the post they have not accessing the website so to able the accessing it must properly define the proxy server and the port number.
Answer:
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
public class ReadFile {
public static void main(String[] args) {
try {
File myObj = new File("filename.txt");
Scanner myReader = new Scanner(myObj);
while (myReader.hasNextLine()) {
String data = myReader.nextLine();
System.out.println(data);
}
myReader.close();
} catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
Explanation:
this will read the file and print it out, to do the rest have it take the data and use some "java math" and then print the answers to either console or a file of your choice.