1000+ Web Development Interview Questions and Answers Pdf - 1

Question: 1

Define the term web client and web browser?

Web clients are the computers that are requesting the web pages from the web servers.

Web clients can view the web pages with a program called web browsers.

Question: 2

What are the two segments of a style tag?

A style tag is used to change the default characteristics of a particular tag in the entire web document wherever that tag is used. The style tag is used within the heading section. A style tag has two segments a selector and a property.

The style tag is used within the heading section.

Example

<head >

<style >

h2 { color : green}

</style >

</head >

In this tag, the selector is h2 and the property is color whose values is green.

Question: 3

Give an example for text editor program and web page editor program?

Notepad is an example for text editor program and

Frontpage is an example for web page editor program.

Question: 4

Why forms are used in search engines?

In search engines, forms are used to accept the keywords for search.

Forms contain many types of form elements, such as text boxes, radio buttons, check boxes, buttons and drop down lists.

Question: 5

What do you mean by navigation view and reports view?

Reports view identifies problems with pages and links in the web.

Navigation view lists the navigation order of the site and allows us to change the order that a user would view the pages.

Related Questions