0

Web Technology (GATE - CS)

Description: This test will analyse the basic concept of student.
Number of Questions: 17
Created by:
Tags: Basic of Web Technology Web Technologies
Attempted 0/17 Correct 0 Score 0

Which of the following is not an HTTP request command?

  1. GET

  2. HEAD

  3. PUT

  4. PUSH

  5. LINK


Correct Option: D
Explanation:

There is no command in HTTP like PUSH.

What is the main role of TCP/IP software while accessing any web page?

  1. It requests DNS for the IP address corresponding to web address.

  2. It only breaks the request and the response of the HTTP software running on the client and server machine.

  3. It replies with the IP address of the requested web page of client to the browser.

  4. It only reassembles the request and the response of the HTTP software running on the client and server machine.

  5. It breaks and reassembles the request and response of the HTTP software running on the client and server machine.


Correct Option: E
Explanation:

TCP/IP software running on the client breaks the HTTP request into packets, and sends them over TCP to the web server. The TCP/IP software running on the web server reassembles the HTTP request, and the HTTP software hands over this HTTP response to the TCP/IP software, which breaks the HTTP response into packets, and sends them to the client. Here again, the packets are reassembled by the TCP/IP.

Which of the following is a valid name?

  1. <'human>

  2. <'-human>

  3. <'786human>

  4. <'6human>

  5. All of these are true


Correct Option: E
Explanation:

Tag name can start with hyphen, letter or digits. So, all the options are correct.

_____tag specifies the heading cell within a row.

  1. <'td>

  2. <'tr>

  3. <'th>

  4. <'table>

  5. <'ti>


Correct Option: C
Explanation:

It specifies a heading cell within a row.

Which is the correct HTML syntax for creating link to other pages?

  1. <'a href=url> Text to be displayed>

  2. <'a href=url Text to be displayed<'a>

  3. <'a href=url> Text to be displayed<'/a>

  4. <'a href=url> Text to be displayed<'a>

  5. <'a href=url, Text to be displayed>


Correct Option: C
Explanation:

This is the correct syntax for creating link to other pages.

The ________ command allows a client to remove a file from a web server using HTTP.

  1. LINK

  2. PUT

  3. HEAD

  4. DELETE

  5. GET


Correct Option: D
Explanation:

This command isĀ used to remove the web page.

Which of the following is the best input method for choosing the one from large number of options?

  1. Radio button

  2. Checkbox

  3. Drop down list

  4. Both radio button and checkbox

  5. All of these


Correct Option: C
Explanation:

This is the right choice because by clicking, it shows the options that means it did not take space in the main page.

Which tag is used for writing paragraph in HTML?

  1. <'pp>

  2. <'pra>

  3. <'p>

  4. <'paragraph>

  5. <'br>


Correct Option: C
Explanation:

Yes, this is the correct answer. This tag is used for writing paragraph in HTML.

Which of the following tags define(s) the largest heading?

  1. <'h6>

  2. <'h5>

  3. <'h2>

  4. <'h1>

  5. Both <'h1> and <'h6>


Correct Option: D
Explanation:

Yes, it defines the largest heading.

JSP does not support

  1. declaration tag

  2. expression tag

  3. directive tag

  4. scriplet tag

  5. none of these


Correct Option: E
Explanation:

All options are correct. Hence, ' none of these' is the correct answer.

Which of the following is not a web browser?

  1. Internet download manager

  2. Internet explorer

  3. Google chrome

  4. Netscape

  5. Opera


Correct Option: A
Explanation:

It is just a download manager, which downloads data like songs, videos, documents, etc.

Which of the following tags does not have the optional closing tag?

  1. <'table>

  2. <'td>

  3. <'th>

  4. <'tr>

  5. All of these


Correct Option: A
Explanation:

It must have the closing tag. It always ends with <'/table>.

Which of the following statements is/are correct for HTML tags? (1) HTML tags are used to mark up HTML elements. (2) HTML tags are surrounded by the two characters < and >. (3) HTML tags are case sensitive. (4) HTML tags always come in pair.

  1. All 1, 2, 3, and 4

  2. Only 2, 3 and 4

  3. Only 1, 2, and 4

  4. Only 1, 2, and 3

  5. Only 1 and 2


Correct Option: D
Explanation:

Both statements 1 and 2 are true. Statements 1 and 2 are correct while statement 3 is not because HTML is not case sensitive.

Consider the following: http://www.yahoo.com/newone
What is 'newone' in the above URL?

  1. Domain name

  2. Document/File name

  3. Server name

  4. Protocol

  5. Web browser's name


Correct Option: B
Explanation:

Document/file name is always written at the last of URL.

Which of the following statements is incorrect about cookies?

  1. It is stored in browser's memory.

  2. It is created by browser, which stores it in its own memory.

  3. It travels between browser and server.

  4. It is created by server and sent to the browser.

  5. It is a small text file.


Correct Option: B
Explanation:

It is created by server, and sent to the browser along with the first HTTP response. The browser accepts it, and stores it inside its own memory.

Which of the following are correct input types?

  1. Text, Password, Reset, List

  2. Submit, Reset, List, Password

  3. Radio, Reset, List, Password

  4. Submit, Reset, Checkbox, Password

  5. Submit, Reset, Background image, Password


Correct Option: D
Explanation:

Submit, Reset, Checkbox and Password all are input types.

Which of the following functions returns the date of the Date object?

  1. Date()

  2. getDate()

  3. getDay()

  4. getMonth()

  5. getYear()


Correct Option: B
Explanation:

It returns the date of a Date object (from 1 - 31).

- Hide questions