0% found this document useful (0 votes)
14 views2 pages

I CHT

The document provides answers to various questions related to web development, covering topics such as HTML, CSS, FTP, IP, and client-server communication. It includes definitions, examples of HTML tags, and explanations of CSS types. The content is structured into two sections, with the first focusing on basic concepts and the second on more detailed explanations and examples.

Uploaded by

karandey968
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

I CHT

The document provides answers to various questions related to web development, covering topics such as HTML, CSS, FTP, IP, and client-server communication. It includes definitions, examples of HTML tags, and explanations of CSS types. The content is structured into two sections, with the first focusing on basic concepts and the second on more detailed explanations and examples.

Uploaded by

karandey968
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Here are the answers to the questions on the first page of the exam paper:

---

### Q1. Attempt any eight of the following:

1. **Define HTML**: HTML (HyperText Markup Language) is the standard language


for creating web pages and web applications. It structures content on the web by
using tags to define elements like headings, paragraphs, links, images, and
more.

2. **What is a stylesheet?**: A stylesheet is a document used to define the


presentation of HTML or XML documents. CSS (Cascading Style Sheets) is the most
common type of stylesheet, allowing for the styling of elements, including
color, layout, fonts, and spacing.

3. **Define:**
- **FTP**: FTP (File Transfer Protocol) is a protocol used to transfer files
between a client and server on a computer network.
- **IP**: IP (Internet Protocol) is a protocol used for sending data across a
network by assigning unique addresses to each device.

4. **Write any two HTTP request methods**:


- **GET**: Requests data from a specified resource.
- **POST**: Submits data to be processed to a specified resource.

5. **What is WWW?**: WWW (World Wide Web) is a system of interlinked hypertext


documents accessed via the internet. It allows users to view web pages, which
may contain text, images, videos, and other multimedia, using a web browser.

6. **Define CSS. Define Website**:


- **CSS**: CSS (Cascading Style Sheets) is used to control the layout and
appearance of web pages. It styles HTML elements to make web pages visually
appealing.
- **Website**: A website is a collection of related web pages hosted on a
server and accessible via a web address.

7. **Explain `<table>` tag with an example**:


- The `<table>` tag is used to create a table in HTML.
```html
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
```

8. **Explain `<br>` tag**: The `<br>` tag inserts a line break, making content
start from the next line. It doesn’t have a closing tag.

9. **Explain `<body>` tag**: The `<body>` tag defines the main content of an
HTML document. It contains all the visible content on a webpage, like text,
images, links, tables, etc.

---

### Q2. Attempt any four of the following:

1. **Explain Client-Server Communication**:


- Client-server communication is a model where clients (devices or software)
request resources, and servers respond to those requests. For example, when you
access a website, your browser (client) sends a request to the web server, which
responds with the website's data.

2. **Explain array in JavaScript**:


- An array in JavaScript is a data structure that stores a collection of
values in a single variable. Each value is accessible by its index.
```javascript
let fruits = ["apple", "banana", "cherry"];
```

3. **Explain physical and logical HTML**:


- Physical HTML tags (e.g., `<b>`, `<i>`) represent the visual appearance of
text, like bold or italic.
- Logical HTML tags (e.g., `<strong>`, `<em>`) convey meaning, like
importance or emphasis, which may also change the appearance but prioritize
semantics.

4. **What is CSS? Explain its types**:


- CSS (Cascading Style Sheets) is used for styling HTML elements on a
webpage. Its types include:
- **Inline CSS**: Styles are applied directly within an HTML tag using the
`style` attribute.
- **Internal CSS**: Styles are placed within a `<style>` tag in the HTML
document's `<head>`.
- **External CSS**: Styles are defined in a separate `.css` file linked to
the HTML document.

5. **Explain any 4 tags in HTML with Syntax**:


- **`<h1>` to `<h6>`**: Headings. `<h1>Heading 1</h1>`
- **`<p>`**: Paragraph. `<p>This is a paragraph.</p>`
- **`<a>`**: Anchor (link). `<a href="https://example.com">Click Here</a>`
- **`<img>`**: Image. `<img src="image.jpg" alt="Image description">`

---

If you need help with additional questions from the next page or further
explanations, feel free to ask!

You might also like