InterviewSolution
Saved Bookmarks
| 1. |
Which layer is used to handle the HTTP requests?(a) Network Layer(b) Transport Layer(c) Application Layer(d) Presentation LayerThis question was posed to me by my school teacher while I was bunking the class.This intriguing question originated from Browser Parsing and Rendering topic in division Graphics and Rendering of JavaScript |
|
Answer» RIGHT option is (a) Network Layer The explanation: HTTP is a protocol which allows the FETCHING of RESOURCES, such as HTML documents. It is the foundation of any data EXCHANGE on the Web and a client-server protocol, which means requests are initiated by the recipient, usually the Web browser. The network layer is used to handle the HTTP requests. |
|