Skip to the content.
Home Page
Class 12 Notes
Review, Research, and Discussion
- The benefits of transforming data into packets is that it takes less space when sending that information through the network. (Less bandwidth use)
- It is considered a connectionless protocol because it allows information to be sent before there is an arguement from the recieving party.
- A server can hace multiple socket connections as long as the client is using multiple sockets on their end.
- This is the same when talking about an app connection to two other socket apps/servers.
- Yes you can have both a socket connection and a socket server in one app.
Terms
- Listener: A function or module that is waiting for an event to happen.
- Event Handler: A function that will handle the information that the listener received.
- Event Driven Programming: This sort of programming means that everything that happens must be triggered by an event/ something that happens before it.