How do we convert a numeric IP address like 192.18.97.39 into a hostname like globalguideline.com?

Submitted by: Administrator
Below line will convert a numeric IP address like 192.18.97.39 into a hostname like globalguideline.com

String hostname = InetAddress.getByName("192.18.97.39").getHostName();
Submitted by: Administrator

Read Online Basic Networking Job Interview Questions And Answers