Q1: What is a key capability added by HTTP/2 compared to HTTP/1.1
Multiple Choice
**Explanation:**
**Terms:** multiplexing, stream, connection. HTTP/2 introduces a binary framing layer where independent streams can share one connection.
**Correct (B):** Multiplexing reduces head-of-line blocking at the HTTP application layer compared to HTTP/1.1 pipelining.
**Options:**
- A (incorrect): HTTP semantics remain defined by RFC 9110.
- B (correct): This is the major transport-level change.
- C (incorrect): HTTP/2 typically runs over TLS, but it does not replace TLS.
**Related:** HTTP/2 improves efficiency but still runs over TCP, so transport-level head-of-line can still exist.