Are you searching for the CPWDP-101 Web Designing Question Paper 2025? For students pursuing the Certificate in Professional Skills at Aligarh Muslim University, having access to solved previous year papers is crucial for exam preparation.

This post provides the complete solution for the CPWDP-101 Web Designing Question Paper 2025 (Short Term Batch II). Below, you will find detailed answers to theoretical questions, step-by-step binary conversions, and the exact HTML code required for the practical sections.

Download Question Paper


Solved Paper: Web Designing and Publishing (2025)

Paper Code: 7407

Max Marks: 50

Duration: 2 Hours

Q 1: Answer any FOUR of the following:

1) What do you mean by a computer system? Discuss its types, application and limitations.

A computer system is an integrated set of hardware and software designed to process data and produce meaningful information. It accepts input, processes it according to instructions, and provides output.

  • Types: Microcomputers (PCs/Laptops), Minicomputers, Mainframe computers, and Supercomputers.
  • Applications: Education (online learning), Healthcare (diagnostic tools), Business (accounting), and Scientific Research.
  • Limitations: It has no IQ (cannot think on its own), lacks emotion, and is dependent on electricity and user instructions1.

2) Differentiate between Hardware, Software and Firmware with suitable examples.

  • Hardware: The physical components of a computer that you can touch and feel. Example: Keyboard, CPU, Monitor.
  • Software: A set of instructions or programs that tell the hardware what to do. Example: MS Word, Google Chrome.
  • Firmware: Permanent software programmed into a read-only memory. It provides low-level control for the device’s specific hardware. Example: BIOS (Basic Input/Output System)2.

3) What is Primary and Secondary memory? Differentiate between ROM, EPROM, and EEPROM.

  • Primary Memory: Also known as main memory, it is directly accessible by the CPU (e.g., RAM, ROM). It is volatile (RAM) or non-volatile (ROM).
  • Secondary Memory: External storage used for long-term data retention (e.g., Hard Drive, USB, SSD).
  • Differences:
    • ROM (Read Only Memory): Data is written during manufacturing and cannot be erased.
    • EPROM (Erasable Programmable ROM): Can be erased by exposing it to ultraviolet (UV) light.
    • EEPROM (Electrically Erasable Programmable ROM): Can be erased and reprogrammed electrically without removing the chip3.

4) Write a short note on the Intranet. Define in brief Internet & Extranet.

  • Intranet: A private network restricted to an organization (like a company or university) used to share information securely among employees.
  • Internet: A global network of networks connecting billions of devices worldwide, accessible to the public.
  • Extranet: An extension of an intranet that allows controlled access to outsiders, such as vendors or partners4.

5) Convert the following numbers:

i. Decimal (159)_{10} to its binary equivalent (?)_{2}

  • Solution:
    • 159 \div 2 = 79 (Remainder 1)
    • 79 \div 2 = 39 (Remainder 1)
    • 39 \div 2 = 19 (Remainder 1)
    • 19 \div 2 = 9 (Remainder 1)
    • 9 \div 2 = 4 (Remainder 1)
    • 4 \div 2 = 2 (Remainder 0)
    • 2 \div 2 = 1 (Remainder 0)
    • 1 \div 2 = 0 (Remainder 1)
    • Read from bottom to top: 10011111
    • Answer: (10011111)_2 5

ii. Binary (1000111011)_2 to its decimal equivalent (?)_{10}

  • Solution:
    • 1 \times 2^9 + 0 \times 2^8 + 0 \times 2^7 + 0 \times 2^6 + 1 \times 2^5 + 1 \times 2^4 + 1 \times 2^3 + 0 \times 2^2 + 1 \times 2^1 + 1 \times 2^0
    • 512 + 0 + 0 + 0 + 32 + 16 + 8 + 0 + 2 + 1
    • 512 + 59 = 571
    • Answer: (571)_{10} 6

Q 2: Answer any THREE of the following:

1) What is the difference between a webpage and a website? Explain the various web design tools.

  • Webpage: A single document on the web (e.g., the “About Us” page).
  • Website: A collection of related webpages linked together under a single domain name (e.g., englishnotes.in).
  • Web Design Tools:
    • Text Editors: Notepad, Sublime Text (for writing code manually).
    • WYSIWYG Editors: Adobe Dreamweaver (visual editing).
    • Graphic Tools: Photoshop, Canva (for creating visual assets)7.

2) Explain the entire process of content creation in HTML using a text editor.

  1. Open Editor: Open a text editor like Notepad.
  2. Write Structure: Type the basic HTML skeleton (<html>, <head>, <body>).
  3. Add Content: Insert text, images, and links within the <body> tags.
  4. Save File: Save the file with the extension .html (e.g., index.html).
  5. View: Open the saved file in a web browser to see the result.

3) List out the attributes of the Form tag. Create the User Login Form using HTML.

  • Attributes: action (where data is sent), method (GET or POST), target, enctype.
  • Code Example:

HTML

<form action="/login" method="POST">
  <label for="username">Username:</label>
  <input type="text" id="username" name="username"><br><br>
  <label for="password">Password:</label>
  <input type="password" id="password" name="password"><br><br>
  <input type="submit" value="Login">
</form>

8

4) Write the HTML code to create a table and insert the following:

(Based on the data provided in the question paper regarding Employee Names and Salaries)

HTML

<table border="1">
  <tr>
    <th>S.No.</th>
    <th>Employee Name</th>
    <th>Salary (Monthly in Rupees)</th>
  </tr>
  <tr>
    <td>1)</td>
    <td>Naresh Kumar</td>
    <td>37,000</td>
  </tr>
  <tr>
    <td>2)</td>
    <td>Satish Jain</td>
    <td>32,000</td>
  </tr>
  <tr>
    <td>3)</td>
    <td>Zahid Khan</td>
    <td>43,000</td>
  </tr>
  <tr>
    <td>4)</td>
    <td>Zohaib Ahmad</td>
    <td>25,000</td>
  </tr>
  <tr>
    <td>5)</td>
    <td>Mohd. Umair</td>
    <td>12,000</td>
  </tr>
</table>

9


Q 3: Write short notes on any TWO of the following:

1) Internet and Intranet

The Internet is a public, global communication network connecting computers around the world. Intranet is a private version of the Internet used within an organization, not accessible to the general public, ensuring internal data security10.

2) Publishing a website

Publishing a website involves three main steps:

  1. Domain Name: Buying a web address (e.g., .com, .in).
  2. Web Hosting: Renting server space to store your website files.
  3. Uploading: Transferring your HTML/CSS files to the server using FTP (File Transfer Protocol) tools like FileZilla11.

3) Internet Service Providers (ISP)

An ISP is a company that provides individuals and organizations access to the Internet. They offer various connection types like Fiber, Broadband, or 4G/5G. Common examples in India include Jio, Airtel, and BSNL12.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.