Question: Exercise 1 (100 points) The objective of this exercise is to get you familiar with the types used in Java to handle IP addresses. Consider

 Exercise 1 (100 points) The objective of this exercise is to

Exercise 1 (100 points) The objective of this exercise is to get you familiar with the types used in Java to handle IP addresses. Consider the program InetAddressExample.java' provided with this homework: Import java.net.*; // for InetAddress public class InetAddressExample { public static void main(String[] args) { // Get name and IP address of the local host try { InetAddress address = InetAddress.getLocalHost(); System.out.println("Local Host:"); System.out.println("\t" + address.getHostName()); System.out.println("\t" + address.getHostAddress()); } catch (UnknownHostException e) { System.out.println("Unable to determine this host's address"); for (int i = 0; i

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!