Total Pageviews

Friday, September 4, 2026

AYUSH

💻
🤖
🖥️
🗼
✨ Class 6 Computer Science Examination ✨

COMPUTISM LAB CLASS 6 HALF YEARLY EXAMINATION

Basic HTML Assessment (Head, Body, Title, Br, B, U, I, Sub, Sup)

🧠
🤖
Class: 6
Max Marks: 100
Time Allowed: 2 Hours
Section A: Fill in the Blanks10 Marks
  1. The tag contains the title of an HTML document.
  2. To break a line and move to the next line, the tag is used.
  3. The tag is used to make text appear in bold letters.
  4. The tag is used to display an underline beneath text.
  5. The tag is used to display text in italics.
  6. The tag creates subscript text, such as the number 2 in H2O.
  7. The tag creates superscript text, such as the power 2 in X2.
  8. All the visible content of a webpage must be placed inside the tag.
  9. The tag is placed inside the head section to define document metadata/title.
  10. HTML stands for HyperText Language.
Section B: Multiple Choice Questions (MCQs)20 Marks
  1. Which tag is used to insert a single line break?
    • a. <lb>
    • b. <br>
    • c. <break>
    • d. <line>
  2. Which tag makes text bold?
    • a. <bold>
    • b. <b>
    • c. <bl>
    • d. <strong>
  3. Which tag underlines text?
    • a. <line>
    • b. <under>
    • c. <u>
    • d. <ul>
  4. Which tag is used for italic text?
    • a. <italic>
    • b. <it>
    • c. <i>
    • d. <slant>
  5. Where should the <title> tag be placed?
    • a. Inside <body>
    • b. Inside <head>
    • c. Outside html
    • d. Inside <br>
  6. Which tag displays text below the baseline?
    • a. <sub>
    • b. <sup>
    • c. <down>
    • d. <low>
  7. Which tag displays text above the baseline?
    • a. <sub>
    • b. <sup>
    • c. <top>
    • d. <high>
  8. Where do you place text that appears on the browser window?
    • a. <head>
    • b. <title>
    • c. <body>
    • d. <br>
  9. Which tag is an empty tag (does not need a closing tag)?
    • a. <b>
    • b. <u>
    • c. <br>
    • d. <i>
  10. What does the <title> element define?
    • a. The main heading on the page
    • b. The title shown on the browser tab
    • c. The image caption
    • d. The background color
Section C: Assertion-Based MCQs10 Marks
  1. Assertion (A): The <br> tag is used to create a line break.
    Reason (R): It is an empty element that does not require a closing tag.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  2. Assertion (A): The <b> tag makes text bold.
    Reason (R): The letter 'b' stands for bold formatting.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  3. Assertion (A): The <title> tag should be placed inside the <body> section.
    Reason (R): The body section contains all visible text on the browser webpage.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  4. Assertion (A): Subscript text is positioned slightly below the normal baseline.
    Reason (R): The <sub> tag is used to achieve this effect.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  5. Assertion (A): The <i> tag displays text in italic style.
    Reason (R): The letter 'i' stands for italic.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  6. Assertion (A): Everything inside the <head> tag is displayed directly in the browser window body.
    Reason (R): The head tag holds metadata and title information, not visible body contents.
    a) Both A and R are true.
    b) A is true, R is false.
    c) A is false, but R is true.
    d) Both are false.
  7. Assertion (A): Superscript text appears slightly above the normal text line.
    Reason (R): The <sup> tag is used for superscript formatting.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  8. Assertion (A): The <u> tag underlines text.
    Reason (R): The letter 'u' stands for underline.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  9. Assertion (A): HTML documents require a closing tag for every element like <br>.
    Reason (R): The <br> tag is an empty tag with no separate closing tag required.
    a) Both A and R are true.
    b) A is true, R is false.
    c) A is false, but R is true.
    d) Both are false.
  10. Assertion (A): The <title> tag affects what appears on the browser tab.
    Reason (R): Browsers read the title tag inside the head section to name the open window or tab.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, but R is true.
Section D: True or False10 Marks
  1. The <b> tag is used to make text bold. (True / False)
  2. The <br> tag requires a matching closing tag </br>. (True / False)
  3. The <title> tag must be placed inside the <head> tag. (True / False)
  4. The <sub> tag makes text appear above the normal line. (True / False)
  5. The <i> tag displays text in italic format. (True / False)
  6. The <body> tag contains all visible content of the webpage. (True / False)
  7. The <u> tag is used to underline text. (True / False)
  8. The <sup> tag is used for superscript text like mathematical powers. (True / False)
  9. The <head> tag is placed after the <body> tag. (True / False)
  10. HTML tags are written inside angle brackets like <tag>. (True / False)
Section E: HTML Programming Questions (Final Question)20 Marks
  1. Program 1: Write an HTML code using <head>, <title>, <body>, <b>, <u>, <br>, and <sub> to display your name in bold, your school name underlined, and the chemical formula for water ($H_2O$) with a line break between each.

        
              
  2. Program 2: Write an HTML code using <head>, <title>, <body>, <i>, <sup>, <br>, and <b> to display a title "Maths Formula" in italics, followed by a line break, and a mathematical expression like $X^2 + Y^2$ with superscript tags.

⭐ Best of Luck for Your Examination! Keep Learning! 🚀
CREATED BY BIJAN KRISHNA PAUL

aditya

🚗
🤖
🗼 💻 🖥️ 🧠
🖥️
🗼
✨ Computer Science Half-Yearly Assessment ✨

Computer Science(Aditya)

Comprehensive Theory & Practical Skills Examination

🧠
🤖
Standard: Computer Studies
Max Marks: 70
Time Allowed: 3 Hours
Section A: Fill in the Blanks10 Marks
  1. The is the first screen that appears after turning on the computer.
  2. is the default web browser of Windows 10.
  3. A collection of related web pages is referred to as a .
  4. The unique address of a website is called its .
  5. A is a group of contiguous cells in an Excel worksheet.
  6. Formulas in Excel always start with an sign.
  7. The intersection of a row and a column in a table is called a .
  8. The option lets you combine two or more table cells into a single cell.
  9. The title bar is located at the of the browser or application window.
  10. Email stands for Mail.
Section B: Multiple Choice Questions (MCQs)10 Marks
  1. Which of the following is an operating system?
    • a. MS Word
    • b. Windows 10
    • c. MS Paint
    • d. Notepad
  2. Which feature allows you to search the web and manage virtual desktops in Windows 10?
    • a. Task View
    • b. Recycle Bin
    • c. File Explorer
    • d. Control Panel
  3. What does WWW stand for in networking?
    • a. World Wide Web
    • b. Web World Wide
    • c. Wide World Web
    • d. World Web Wide
  4. Which of the following is a popular search engine?
    • a. Google
    • b. Windows
    • c. MS Access
    • d. Paint
  5. What is the default name of an Excel workbook when first opened?
    • a. Sheet1
    • b. Workbook1
    • c. Book1
    • d. Document1
  6. How many total rows are available in an Excel 2016 worksheet?
    • a. 1048576
    • b. 16384
    • c. 65536
    • d. 32767
  7. Which tab in MS Word contains tools for inserting rows, columns, and merging table cells?
    • a. Home
    • b. Insert
    • c. Layout
    • d. Design
  8. Which tool is used to quickly copy formatting attributes from one text to another?
    • a. Format Painter
    • b. Border Tool
    • c. Shading Option
    • d. Style Pane
  9. Which key is pressed to move the cursor to the next cell in a Word table?
    • a. Enter key
    • b. Tab key
    • c. Spacebar
    • d. Shift key
  10. Which arithmetic operator is used for multiplication in Excel formulas?
    • a. +
    • b. -
    • c. *
    • d. /
Section C: Assertion-Based MCQs10 Marks
  1. Assertion (A): Windows 10 uses Live Tiles to provide real-time updates directly in the Start menu.
    Reason (R): Live tiles refresh automatically without needing to open the actual application.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  2. Assertion (A): Email allows instant digital communication across the globe over the internet.
    Reason (R): Emails require physical delivery through traditional courier services.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  3. Assertion (A): Every formula in Excel must begin with an equal sign (=).
    Reason (R): The equal sign informs Excel that the entered data is a mathematical calculation rather than plain text.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  4. Assertion (A): Merging table cells combines multiple selected cells into one unified cell.
    Reason (R): Splitting cells breaks down a single cell into multiple individual rows or columns.
    a) Both A and R are true, and R relates to cell manipulation.
    b) Both are false.
    c) A is true, R is false.
    d) A is false, R is true.
  5. Assertion (A): The Windows 10 taskbar contains the Start button, pinned icons, and notification area.
    Reason (R): The taskbar is permanently fixed at the top edge of the monitor screen.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  6. Assertion (A): A web browser is an application program used to access and view web pages on the World Wide Web.
    Reason (R): Microsoft Edge and Google Chrome are examples of web browsers.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  7. Assertion (A): A cell range like A1:C5 refers to a single isolated cell.
    Reason (R): A cell range represents a rectangular block of adjacent cells in a worksheet.
    a) Both A and R are true.
    b) A is true, R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  8. Assertion (A): The AutoFill feature in Excel accelerates entering predictable sequences of data.
    Reason (R): AutoFill automatically generates series such as numbers, days of the week, or months.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both are false.
    c) A is true, R is false.
    d) A is false, R is true.
  9. Assertion (A): Format Painter copies formatting styles and applies them to different text selections.
    Reason (R): It modifies the spelling and grammar of the document text.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both are false.
  10. Assertion (A): Personalisation settings in Windows 10 allow users to change desktop backgrounds and themes.
    Reason (R): Users can customize their computer's visual appearance to suit their personal preferences.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both are true, but unrelated.
    c) A is true, R is false.
    d) A is false, but R is true.
Section D: True or False10 Marks
  1. The taskbar is located at the bottom of the Windows desktop screen. (True / False)
  2. Microsoft Edge is classified as a spreadsheet program. (True / False)
  3. A website consists of a collection of interconnected web pages. (True / False)
  4. Formulas in Excel always start with a plus (+) sign by default. (True / False)
  5. You can combine multiple table cells using the Merge Cells option in Word. (True / False)
  6. The intersection of a row and a column in a worksheet is known as a cell. (True / False)
  7. Email stands for Electronic Mail. (True / False)
  8. Sheet1 is the default name given to an individual worksheet tab when opening Excel. (True / False)
  9. Task View allows users to manage multiple virtual desktops and switch tasks easily. (True / False)
  10. The title bar displays the file name of the currently active document or application. (True / False)
Section E: Three-Marks Questions30 Marks
  1. What is the Windows 10 desktop? Mention its primary visual components.
  2. Explain the purpose and utility of the Task View feature in Windows 10.
  3. Define the terms 'Website' and 'Web page' and explain how they relate.
  4. What is Email? State any two essential rules of internet etiquette (netiquette).
  5. Differentiate clearly between an Excel workbook and an Excel worksheet.
  6. What is a formula in Excel? Provide a simple example of an addition formula.
  7. Differentiate between merging and splitting cells in an MS Word table.
  8. Explain the utility and application of the Format Painter tool in Microsoft Word.
  9. Write short notes on the Title Bar and Formula Bar in Microsoft Excel.
  10. Explain the importance and advantages of using charts in Excel for data analysis.
⭐ Best of Luck for Your Examination! Keep Learning and Exploring! 🚀
CREATED BY BIJAN KRISHNA PAUL

COMPUTISM LAB CLASS 8 HALF YEARLY EXAMINATION

💻
🤖
🖥️
🗼
✨ Class 8 Computer Science Examination ✨

COMPUTISM LAB CLASS 8 HALF YEARLY EXAMINATION

Half-Yearly Assessment

🧠
🤖
Class: 8
Max Marks: 70
Time Allowed: 2 Hours
Section A: Fill in the Blanks10 Marks
  1. Scratch was developed by the Lifelong Kindergarten Group at MIT Media Lab, led by .
  2. The axis in an Excel chart is also known as the category axis.
  3. Statements that repeat a set of instructions based on a condition are called statements.
  4. The function in Excel is used to calculate the sum of values.
  5. An operating system that manages network traffic and multi-user environments is essential for server computers, such as .
  6. A chart displays data points by combining X and Y values into single points.
  7. The statement is used for making decisions in programming languages.
  8. In Excel, absolute cell referencing uses the sign before column and row references.
  9. A chart includes all the objects and elements present in a chart window.
  10. Real-time operating systems are primarily used in applications that require zero .
Section B: Multiple Choice Questions (MCQs)20 Marks
  1. Which of the following is an effective way to display data in a pictorial form?
    • a. Table
    • b. Chart
    • c. Function
    • d. Formula
  2. Which chart type looks similar to a spider's net?
    • a. Stock
    • b. Radar
    • c. Area
    • d. Bubble
  3. Which operation is used for text concatenation in Excel?
    • a. &
    • b. +
    • c. *
    • d. %
  4. What type of error occurs when a number is divided by zero in Excel?
    • a. #VALUE!
    • b. #DIV/0!
    • c. #NAME?
    • d. #REF!
  5. Which of the following is a selection statement in programming?
    • a. for
    • b. while
    • c. if...else
    • d. do...while
  6. Which operating system type is used in air traffic control systems?
    • a. Single-user
    • b. Real-time
    • c. Distributed
    • d. Batch
  7. Which of these is a CUI-based operating system?
    • a. Windows
    • b. DOS
    • c. Ubuntu
    • d. Android
  8. Running several programs simultaneously on a computer system is known as:
    • a. Single-tasking
    • b. Multitasking
    • c. Booting
    • d. Compiling
  9. Which component shows the actual graph in an Excel chart?
    • a. Plot area
    • b. Chart area
    • c. Legend
    • d. Axis title
  10. What does the INT function do in Excel?
    • a. Counts values
    • b. Rounds to nearest integer
    • c. Displays current date
    • d. Finds maximum value
  11. Which of the following is not a control structure?
    • a. Sequential
    • b. Selection
    • c. Looping
    • d. Hardware
  12. Which chart is best suited for showing trends over time?
    • a. Line chart
    • b. Pie chart
    • c. Doughnut chart
    • d. Radar chart
  13. What function rounds a number to a certain number of digits?
    • a. ROUND
    • b. MOD
    • c. INT
    • d. SUM
  14. What does MOD(10, 3) return in Excel?
    • a. 3
    • b. 1
    • c. 10
    • d. 0
  15. Which axis represents values in a standard column chart?
    • a. Category axis
    • b. Value axis
    • c. Series axis
    • d. Plot axis
  16. Which of the following is an example of system software?
    • a. MS Word
    • b. Windows
    • c. MS Excel
    • d. Paint
  17. What is a cell range in Excel?
    • a. A single cell
    • b. A group of contiguous cells
    • c. A workbook
    • d. A formula bar
  18. Which loop structure checks the condition at the end of the loop?
    • a. for loop
    • b. while loop
    • c. do...while loop
    • d. if statement
  19. What does an operating system act as between the user and hardware?
    • a. Barrier
    • b. Interface / Bridge
    • c. Antivirus
    • d. Compiler
  20. Which program allows users to create presentations with text, graphics, and animations?
    • a. MS PowerPoint
    • b. MS Access
    • c. MS Paint
    • d. Notepad
Section C: Assertion-Based MCQs10 Marks
  1. Assertion (A): Control statements alter the normal sequential flow of program execution.
    Reason (R): They allow programs to make decisions and repeat blocks of code based on conditions.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  2. Assertion (A): The condition in an if statement must evaluate to a Boolean value (True or False).
    Reason (R): Program decisions depend entirely on whether the tested condition is true or false.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  3. Assertion (A): Excel functions are predefined formulas used to perform calculations.
    Reason (R): Users cannot write custom calculations; they must rely entirely on built-in functions.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  4. Assertion (A): An operating system is software that controls overall computer operations and hardware.
    Reason (R): Application software can run independently without any operating system.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  5. Assertion (A): Charts make it easier to draw comparisons and analyze relationships in data visually.
    Reason (R): Pictorial representation of data is more engaging and easier to interpret than raw numbers.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  6. Assertion (A): Absolute cell references change when copied to another cell.
    Reason (R): Dollar signs ($) are used to lock row and column coordinates in absolute referencing.
    a) Both A and R are true.
    b) A is true, R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  7. Assertion (A): Real-time operating systems guarantee response within a strict time constraint.
    Reason (R): They are utilized in mission-critical environments like medical equipment and industrial robotics.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  8. Assertion (A): The legend in a chart helps identify different data series by their colors or patterns.
    Reason (R): Without a legend, users cannot read axis labels or chart titles.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  9. Assertion (A): Looping statements are used to repeat execution of a statement block multiple times.
    Reason (R): For and while loops are classic examples of looping structures in programming.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  10. Assertion (A): GUI operating systems require users to type text commands for every operation.
    Reason (R): Graphical user interfaces use icons, menus, and windows for easy interaction.
    a) Both A and R are true.
    b) A is true, R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
Section D: True or False10 Marks
  1. The condition in an if statement must always return a Boolean value. (True / False)
  2. All conditions in an if...else if...else ladder are checked even if one is already true. (True / False)
  3. Sequential statements involve loops and conditions by default. (True / False)
  4. The chart title indicates the overall purpose of the chart. (True / False)
  5. Gridlines are exclusively used in XY scatter charts and no other chart types. (True / False)
  6. Software and hardware operate completely independent of each other without interaction. (True / False)
  7. The BIOS loads the operating system into the computer's RAM during startup. (True / False)
  8. A single-user multitasking operating system allows more than one user to log in at the same time. (True / False)
  9. The SUM function is used to calculate averages of a given cell range. (True / False)
  10. File management is an essential core function of modern operating systems. (True / False)
Section E: Short Answer Questions (2 Marks Each)20 Marks
  1. What is a control statement in programming?
  2. What is the difference between sequential and selection statements?
  3. What is a formula in Excel? Give an example.
  4. What is a cell range? How is it represented?
  5. Differentiate between absolute and mixed cell references.
  6. What is the role of an operating system? Name two examples.
  7. What are Excel functions? Give two examples of functions.
  8. What is the purpose of using a chart in Excel?
  9. What is a data series in a chart?
  10. Explain the benefit of a Graphical User Interface (GUI) over a Character User Interface (CUI).
⭐ Best of Luck for Your Examination! Keep Learning! 🚀
CREATED BY BIJAN KRISHNA PAUL

COMPUTISM LAB CLASS 7 HALF YEARLY EXAMINATION

💻
🤖
🖥️
🗼
✨ Class 7 Computer Science Examination ✨

COMPUTISM LAB CLASS 7 HALF YEARLY EXAMINATION

Term Half-Yearly Assessment

🧠
🤖
Class: 7
Max Marks: 70
Time Allowed: 2 Hours
Section A: Fill in the Blanks10 Marks
  1. SMPS stands for Switched-Mode .
  2. A modem converts digital data into signals.
  3. The main circuit board of a computer system is called the .
  4. RAM stands for Random Memory.
  5. The octal number system consists of 8 digits with the base .
  6. The hexadecimal number system includes digits from 0 to 9 and letters from A to .
  7. The term VIRUS stands for Vital Information Resources Under .
  8. A sector virus infects the boot sector of a hard drive.
  9. The tag used to insert an image in an HTML web page is .
  10. Every HTML form uses a element which begins the form structure.
Section B: Multiple Choice Questions (MCQs)20 Marks
  1. What does CPU stand for?
    • a. Central Processing Unit
    • b. Computer Power Unit
    • c. Central Program Utility
    • d. Control Processing Unit
  2. Which of these is not an external hardware device?
    • a. Keyboard
    • b. Mouse
    • c. RAM
    • d. Monitor
  3. Which device is used to scan documents optically?
    • a. Printer
    • b. Scanner
    • c. Modem
    • d. Projector
  4. A projector is an example of which type of device?
    • a. Input
    • b. Storage
    • c. Output
    • d. Processing
  5. What type of printer uses a printing head that strikes the paper ribbon directly?
    • a. Impact printer
    • b. Non-impact printer
    • c. Inkjet printer
    • d. Thermal printer
  6. What is the base of the hexadecimal number system?
    • a. 10
    • b. 8
    • c. 16
    • d. 2
  7. What is the binary equivalent of the decimal number 10?
    • a. 1110
    • b. 1010
    • c. 1001
    • d. 1100
  8. Which of the following is a valid hexadecimal number representation?
    • a. 4D2
    • b. 78H
    • c. 19G
    • d. 8Z4
  9. To convert a decimal number to binary, repeatedly divide it by which number?
    • a. 8
    • b. 10
    • c. 2
    • d. 16
  10. What does the letter 'C' represent in hexadecimal values?
    • a. 13
    • b. 12
    • c. 14
    • d. 15
  11. Which of these enters a computer without the permission or knowledge of the user?
    • a. Antivirus
    • b. Virus
    • c. Internet
    • d. Firewall
  12. Which of these looks like an antivirus but is actually a malicious program?
    • a. Quick Heal
    • b. Sweeper
    • c. Norton
    • d. McAfee
  13. Which of the following is a self-replicating program without human intervention?
    • a. Antivirus
    • b. Macro
    • c. Worm
    • d. Trojan Horse
  14. What tag is used to define table rows in HTML?
    • a. <table>
    • b. <tr>
    • c. <td>
    • d. <th>
  15. What does <input type="checkbox"> allow the user to do?
    • a. Choose multiple options
    • b. Choose only one option
    • c. Reset form
    • d. Submit form
  16. To add a caption to a table in HTML, use which tag?
    • a. <table>
    • b. <title>
    • c. <caption>
    • d. <head>
  17. To collapse table borders in CSS, which property value should be used?
    • a. border-collapse: collapse;
    • b. table-collapse: border;
    • c. collapse: border;
    • d. border: collapse;
  18. Which attribute specifies the source file path of an image in the <img> tag?
    • a. alt
    • b. src
    • c. href
    • d. name
  19. What tag is used to display a numbered list in HTML?
    • a. <ul>
    • b. <ol>
    • c. <li>
    • d. <list>
  20. Which HTML tag is used to mark text as a hyperlink?
    • a. <link>
    • b. <a> (Anchor tag)
    • c. <href>
    • d. <hyper>
Section C: Assertion-Based MCQs10 Marks
  1. Assertion (A): RAM is known as a volatile memory.
    Reason (R): Information stored in RAM is lost when you turn off the computer or power goes off.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  2. Assertion (A): ROM is a non-volatile memory.
    Reason (R): ROM retains stored information even when the power has been switched off.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  3. Assertion (A): The binary number system uses base 2.
    Reason (R): Binary number system consists of ten digits from 0 to 9.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  4. Assertion (A): A computer virus can spread via removable storage devices like flash drives.
    Reason (R): Flash drives can carry malicious files and execute AutoRun code to compromise host machines.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  5. Assertion (A): Antivirus software updates its virus database frequently.
    Reason (R): Frequent updates ensure the system can detect new and different types of virus threats effectively.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but R is not the correct explanation of A.
    c) A is true, but R is false.
    d) A is false, but R is true.
  6. Assertion (A): A computer worm is a self-replicating program that can travel without human action.
    Reason (R): Unlike viruses, worms do not consume network bandwidth or memory.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  7. Assertion (A): The <img> tag requires a closing tag like </img> in HTML.
    Reason (R): The <img> tag is an empty tag used to add images to a web page.
    a) Both A and R are true.
    b) A is true, but R is false.
    c) A is false, but R is true.
    d) Both A and R are false.
  8. Assertion (A): The action attribute in an HTML form specifies the file or script the form is submitted to.
    Reason (R): The method attribute specifies how the form information is posted (Get or Post).
    a) Both A and R are true, and R is related to form submission settings.
    b) Both A and R are false.
    c) A is true, R is false.
    d) A is false, R is true.
  9. Assertion (A): Octal number system consists of 8 digits with the base 8.
    Reason (R): Octal system takes binary digits in groups of three to make binary more compact.
    a) Both A and R are true, and R explains the reason behind the octal system.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, R is true.
  10. Assertion (A): Real-time scan in antivirus software runs continuously in the background.
    Reason (R): Real-time scan provides maximum protection by screening opened or saved files for security risks.
    a) Both A and R are true, and R is the correct explanation of A.
    b) Both A and R are true, but unrelated.
    c) A is true, R is false.
    d) A is false, but R is true.
Section D: True or False10 Marks
  1. RAM stores information permanently. (True / False)
  2. A digital camera is classified as an output device. (True / False)
  3. Binary numbers use digits from 0 to 7. (True / False)
  4. The binary system is the most commonly used number system by digital computers. (True / False)
  5. Data is an important asset for an organisation or individual. (True / False)
  6. Viruses cannot be sent as executable files (.exe) with email attachments. (True / False)
  7. A computer worm can travel without any human action. (True / False)
  8. The <img> tag must always be closed with </img>. (True / False)
  9. External links lead to a different website or web page. (True / False)
  10. The border-spacing property is used to change the distance between table cells. (True / False)
Section E: Short Answer Questions (2 Marks Each)20 Marks
  1. Differentiate between RAM and ROM in terms of usage and volatility.
  2. Differentiate between internal and external hardware with examples.
  3. What is a plotter, and how is it used?
  4. Differentiate between impact and non-impact printers.
  5. Write the use of a motherboard in a computer system.
  6. Convert all octal no into binary: 150,73,1020.
  7. Convert all binary  no into decimal: 101100,1100110,101010101.
  8. Convert all decimal no into binary: 150,73,1020.
  9. What is the use of an antivirus? Give two examples.
  10. What is malware?
⭐ Best of Luck for Your Examination! Keep Learning! 🚀
Created by Bijan Krishna Paul