This set of Java Multiple Choice Questions & Answers (MCQs) focuses on “Networking – Datagrams”.
1. Which of these is a bundle of information passed between machines?
a) Mime
b) Cache
c) Datagrams
d) DatagramSocket
View Answer
Explanation: The Datagrams are the bundle of information passed between machines.
2. Which of these class is necessary to implement datagrams?
a) DatagramPacket
b) DatagramSocket
c) All of the mentioned
d) None of the mentioned
View Answer
Explanation: Both DatagramPacket and DatagramSocket are essential for implementing datagram-based communication in Java. DatagramPacket represents the data being sent or received, while DatagramSocket is used to send and receive those packets over the network.
3. Which of these method of DatagramPacket is used to find the port number?
a) port()
b) getPort()
c) findPort()
d) recievePort()
View Answer
Explanation: The getPort() method returns the port number of the remote host to which the datagram packet is being sent or from which it was received.
4. Which of these method of DatagramPacket is used to obtain the byte array of data contained in a datagram?
a) getData()
b) getBytes()
c) getArray()
d) recieveBytes()
View Answer
Explanation: The getData() method of the DatagramPacket class is used to retrieve the byte array of data contained in the datagram.
5. Which of these methods of DatagramPacket is used to find the length of byte array?
a) getnumber()
b) length()
c) Length()
d) getLength()
View Answer
Explanation: The method getLength() is used to find the length of the byte array in a DatagramPacket object. This method returns the length of the data contained in the packet.
6. Which of these class must be used to send a datagram packets over a connection?
a) InetAdress
b) DatagramPacket
c) DatagramSocket
d) All of the mentioned
View Answer
Explanation: By using 5 classes we can send and receive data between client and server, these are InetAddress, Socket, ServerSocket, DatagramSocket, and DatagramPacket.
7. Which of these method of DatagramPacket class is used to find the destination address?
a) findAddress()
b) getAddress()
c) Address()
d) whois()
View Answer
Explanation: The getAddress() method returns the IP address of the machine to which the datagram is being sent or from which it was received.
8. Which of these is a return type of getAddress() method of DatagramPacket class?
a) DatagramPacket
b) DatagramSocket
c) InetAddress
d) ServerSocket
View Answer
Explanation: The return type of the getAddress() method of the DatagramPacket class is InetAddress. This method returns the IP address to which the packet is sent or from which it was received.
9. Which API gets the SocketAddress (usually IP address + port number) of the remote host that this packet is being sent to or is coming from.
a) getSocketAddress()
b) getAddress()
c) address()
d) none of the mentioned
View Answer
Explanation: The getSocketAddress() method is used to retrieve the SocketAddress (typically consisting of the IP address and port number) of the remote host to which the datagram is being sent or from which it was received. Specifically, the DatagramPacket.getSocketAddress() method provides this information for the associated datagram packet.
Sanfoundry Global Education & Learning Series – Java Programming Language.
To practice all areas of Java language, here is complete set of 1000+ Multiple Choice Questions and Answers.
- Practice Programming MCQs
- Check Programming Books
- Practice Information Technology MCQs
- Practice BCA MCQs
- Check Java Books