24 Computer -- Web Technology I

1.     What is the full form of HTML?a. Hypertext Markup Languageb. High-Level Markup Languagec. Hypertext Transfer Languaged. High-Level Transfer Language 2.     What is the purpose of CSS in web development?a. To add visual effects and styles to web pagesb. To define the structure and...

1.     What is the full form of HTML?

a. Hypertext Markup Language

b. High-Level Markup Language

c. Hypertext Transfer Language

d. High-Level Transfer Language

 

2.     What is the purpose of CSS in web development?

a. To add visual effects and styles to web pages

b. To define the structure and content of a web page

c. To provide a way to interact with the web page

d. To control the behavior of the web page

 

3.     What is a web browser?

a. A software application used to access the internet

b. A type of website

c. A language used to develop websites

d. A device used to store web pages

 

4.     What is JavaScript used for in web development?

a. To add interactivity to web pages

b. To add styles and visual effects to web pages

c. To define the structure and content of a web page

d. To control the behavior of the web page

 

5.     What is a web server?

a. A device used to store web pages

b. A type of website

c. A software application that provides access to the internet

d. A computer system that serves web pages to clients over the internet

 

6.     What is the difference between a dynamic and a static website?

a. Dynamic websites can change their content, while static websites cannot

b. Static websites are faster, while dynamic websites are slower

c. Dynamic websites require a database, while static websites do not

d. Static websites are easier to develop, while dynamic websites are more complex

 

7.     What is a domain name?

a. A unique identifier for a website

b. A type of website

c. A software application used to access the internet

d. A device used to store web pages

 

8.     What is a website hosting service?

a. A service that provides storage space for a website

b. A type of website

c. A software application used to access the internet

d. A device used to store web pages

 

9.     What is a web application?

a. A type of website that provides a way to interact with users

b. A device used to store web pages

c. A software application used to access the internet

d. A computer system that serves web pages to clients over the internet

 

10.  What is a website template?

a. A pre-designed layout for a website

b. A type of website

c. A software application used to access the internet

d. A device used to store web pages

 

11.  What is a responsive website?

a. A website that adjusts its layout and content based on the size of the device it is being viewed on

b. A website that is designed for use on a specific device

c. A type of website

d. A software application used to access the internet

 

 

More questions on Web Technology I

What is a link? Write the various ways of linking a document with another.

The link is a feature in HTML that allows the user to connect two webpages or documents.Alinkhas two ends -- calledanchors-- and a direction. The link starts at the "source" anchor and points to the "destination" anchor, which may be any Web resource (e.g., an image, a video clip, a sound bite, a program, an HTML document, an element within an HTML document, etc.).

HTML links are hyperlinks.

You can click on a link and jump to another document.

When you move the mouse over a link, the mouse...

Define table and write its tag.

he<table>tag defines an HTML table.

An HTML table consists of one<table>element and one or more<tr>,<th>, and<td>elements.

The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell.

An HTML table may also include<caption>,<colgroup>,<thead>,<tfoot>, and<tbody>elements.


Example

A simple HTML table, containing two columns and two rows:

<table>
<tr>
...
Close Open App