Question
import java.net.*;
class networking
{
public static void main(String[] args) throws UnknownHostException
{
InetAddress obj1 = InetAddress.getByName("cisco.com");
InetAddress obj2 = InetAddress.getByName("compscibits.com");
boolean x = obj1.equals(obj2);
System.out.print(x);
}
}
a.
0
b.
1
c.
true
d.
false
Posted under Java Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this program?
Similar Questions
Discover Related MCQs
Q. Which of these interface abstractes the output of messages from httpd?
View solution
Q. Which of these class is used to create servers that listen for either local or remote client programs?
View solution
Q. Which of these methods is used to make raw MIME formatted string?
View solution
Q. Which of these class is used for operating on request from the client to the server?
View solution
Q. Which of these method of MimeHeader is used to return the string equivalent of the values stores on MimeHeader?
View solution
Q. Which of these is an instance variable of class httpd?
View solution
Q. Which of these methods of httpd class is used to read data from the stream?
View solution
Q. Which of these method of httpd class is used to get report on each hit to HTTP server?
View solution
Q. Which of these methods are used to find a URL from the cache of httpd?
View solution
Q. Which of these variables stores the number of hits that are successfully served out of cache?
View solution
Q. Which of these method of httpd class is used to write UrlCacheEntry object into local disk?
View solution
Q. Which of these method is used to start a server thread?
View solution
Q. Which of these method is called when http daemon is acting like a normal web server?
View solution
Q. What does URL stands for?
View solution
Q. Which of these exceptions is thrown by URL class’s constructors?
View solution
Q. Which of these methods is used to know host of an URL?
View solution
Q. Which of these methods is used to know the full URL of an URL object?
View solution
Q. Which of these class is used to access actual bits or content information of a URL?
View solution
Q. Which of these is a wrapper around everything associated with a reply from an http server?
View solution
Q. Which of these transfer protocol must be used so that URL can be accessed by URLConnection class object?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!