Q1
What is the main difference between TCP and UDP?
mediumCorrect Answer: TCP is connection-oriented and guarantees reliable delivery, while UDP is connectionless and does not guarantee delivery
Explanation:
TCP establishes a connection through a handshake and ensures packets arrive in order and without loss, while UDP simply sends packets without such guarantees, making it faster but less reliable, which suits use cases like live video streaming.