A mobile gaming team plans to use web sockets in their real-time quiz app. Which statement illustrates one key advantage this choice provides for live communication?
It provides a continuous path for event exchange in both directions, minimizing the need for repeated link reestablishment
It enforces sending multiple requests to retrieve incremental data with each update
It involves scheduling regular timed checks from the client to refresh data after each quiz round
It creates a short session for every question, requiring a handshake whenever the quiz server pushes data
A continuous link that allows data to flow both ways with minimal reconnection leads to swift updates during events. Incremental retrieval patterns and interval-based polling require multiple requests, which add latency. Short repetitive sessions require a new handshake for every transmission, increasing resource usage.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are web sockets?
Open an interactive chat with Bash
How do web sockets minimize latency?
Open an interactive chat with Bash
What is the difference between web sockets and HTTP polling?