11,589 views

2 Answers

Best answer
11 votes
11 votes
B is false, HTTP is protocol, which has no relations with the structure of a web page. Web page structure is given using HTML.
selected by
2 votes
2 votes

HTTP uses TCP as the underlying Network Layer protocol.

Option A is True.

HTTP is essentially used for "passing messages" between the browser and the server. HTTP can't influence/describe the webpage structure in any way.

HTML is used to describe webpage structure.

Option B is False.

Let's take a URL for an example.

http://www.cs.vu.nl/video/index-en.html

This URL consists of three parts:

  1. the protocol (http)
  2. the DNS name of the host(www.cs.vu.nl)
  3. the file name (video/index-en.html)

Now what is the definition of information? I can say these three parts as providing me some information.

 

Moreover, the URL leads us to the webpage (information). HTTP can, in some sense, "store" this information(webpage) into a URL and let the client have access to it.

 

By these reasonings

Option C is True.

HTTP is used by broswer clients to fetch the required webpage from the server. If you type in a hypertext link which is invalid, HTTP won't fetch that page.

Try: http://abcd.1234.bh.com

Option D is True.
Answer:

Related questions

1 votes
1 votes
2 answers
3
Ishrat Jahan asked Nov 2, 2014
3,068 views
Which of the following objects can be used in expressions and scriplets in JSP (Java Server Pages) without explicitly declaring them?session and request onlyrequest and r...