The correct answer is D. UDP.
UDP (User Datagram Protocol) is a connectionless protocol that does not establish a connection before sending or receiving data. UDP simply sends datagrams to the destination without checking if the receiver is ready or not. UDP does not guarantee reliable delivery, error correction, or in-order arrival of the data. UDP is faster and more efficient than connection-oriented protocols for applications that do not require reliability, such as streaming audio or video1
A. SSH (Secure Shell) is not a correct answer. SSH is a connection-oriented protocol that uses TCP (Transmission Control Protocol) as its transport layer. SSH establishes a secure and encrypted connection between two network endpoints before exchanging data. SSH provides authentication, confidentiality, and integrity for remote login and command execution2
B. TCP (Transmission Control Protocol) is not a correct answer. TCP is a connection-oriented protocol that establishes a connection before sending or receiving data. TCP ensures reliable delivery, error correction, and in-order arrival of the data. TCP is slower and more complex than connectionless protocols, but it provides more reliability and quality of service for applications that require it, such as web browsing or email1
C. HTTPS (Hypertext Transfer Protocol Secure) is not a correct answer. HTTPS is a connection-oriented protocol that uses TCP as its transport layer and SSL/TLS as its security layer. HTTPS establishes a secure and encrypted connection between a web browser and a web server before exchanging data. HTTPS provides authentication, confidentiality, and integrity for web transactions, such as online banking or shopping1