Information Technology – Solved Paper PYQs - CBSE Board 2024
CBSE Board 2024 — Complete solved paper (MCQs + Subjective answers)
SECTION A — Objective Type Questions
Q1. Attempt any 4
- (i) Dot (.)
- (ii) Visual
- (iii) Emotional Intelligence
- (iv) Self-Motivation
- (v) Wealthy
- (vi) 17
Q2. Attempt any 5
- (i) Styles
- (ii) Format
- (iii) Hold down Ctrl key while dragging
- (iv) Raster image
- (v) Two
- (vi) F4
Q3. Attempt any 5
- (i) Define name
- (ii) Track changes
- (iii) Solver
- (iv) Return
- (v) Edit → Compare document
- (vi) Conditional formatting
Q4. Attempt any 5
- (i) Delete
- (ii) Asc
- (iii) Boolean
- (iv) SELECT
- (v) LONGVARBINARY
- (vi) Varchar
Q5. Attempt any 5
- (i) Blog
- (ii) Evacuation drill
- (iii) Sticky keys
- (iv) Peer-to-Peer architecture
- (v) Cookies
- (vi) Digital Subscriber Line
SECTION B — Subjective Type Questions
Q6.
Cultural differences can be a barrier to communication because language, gestures, traditions, and values differ across regions. A message clear in one culture may be misinterpreted in another, causing misunderstanding and reduced effectiveness of communication.
Q7.
- Misconception 1: Entrepreneurs are born, not made — real fact: entrepreneurial skills can be learned through training and experience.
- Misconception 2: Entrepreneurship means instant success — real fact: success generally requires hard work, persistence, and learning from failure.
Q8.
Time management is significant because it helps prioritize tasks, reduce stress, improve productivity, and balance personal and professional responsibilities. Effective time management leads to achieving goals more efficiently.
Q9.
Spam mails are unsolicited bulk emails often used for advertising or fraud. They can contain malicious links. Recommended actions: mark as spam, delete them, and never click suspicious links or provide personal information.
Q10.
- Use solar panels to harness clean solar energy.
- Promote and implement wind energy solutions.
Q11.
Steps to group drawing objects in Writer:
- Select the objects to be grouped (click & drag or Shift+click to multi-select).
- Choose Format → Group → Group (or right‑click and select Group).
- The grouped objects behave as a single unit for moving/resizing/formatting.
Q12.
Consolidating data combines information from multiple sheets or ranges into one summary sheet. It helps summarize, compute totals, and compare data from different sources for analysis and reporting.
Q13.
LAN (Local Area Network) covers a small geographic area (office, school). WAN (Wide Area Network) spans large geographic areas (cities, countries) using telecommunication links and ISPs to connect multiple LANs.
Q14.
Two parts of a cell reference when referencing other sheets:
- Sheet name (for example:
Sheet2
) - Cell address (for example:
A1
)
Sheet2.A1
Q15.
Two benefits of creating relationships between tables:
- Reduces data redundancy by linking related information instead of duplicating it.
- Maintains referential integrity and consistent updates across related tables.
Q16.
Two basic fire safety rules:
- Keep emergency exits unobstructed and clearly marked.
- Ensure fire extinguishers are accessible and staff are trained to use them.
Q17. (Mail Merge)
Concept: Mail Merge combines a fixed document template (e.g., letter) with a data source (names/addresses) to generate multiple personalized documents automatically.
Benefits:
Benefits:
- Saves time by producing many personalized documents at once.
- Reduces manual errors and ensures consistency in formatting.
Q18.
Four types of hyperlinks in spreadsheets:
- Web hyperlink — links to an external website (URL).
- Email hyperlink — opens the default email client with a prefilled address.
- Document hyperlink — links to another document or file.
- Place in document — links to a specific cell or sheet inside the same workbook.
Q19.
Four guidelines for strong passwords:
- Use a mix of uppercase, lowercase, digits and special characters.
- Avoid personal information (names, birthdays) and common words.
- Prefer longer passwords (8–12+ characters) or passphrases.
- Change passwords periodically and do not reuse them across sites.
Q20.
Forms: User interfaces for entering, viewing and editing records easily.
Reports: Structured, printable outputs that summarize and present database data for analysis.
Reports: Structured, printable outputs that summarize and present database data for analysis.
Q21. SQL Queries
-- (a) Display names of all products whose category is 'DOMESTIC' SELECT PNAME FROM Product WHERE CATEGORY = 'DOMESTIC'; -- (b) Display product name and price whose quantity is less than 50 SELECT PNAME, PRICE FROM Product WHERE QUANTITY < 50; -- (c) Display price and quantity of Laptop SELECT PRICE, QUANTITY FROM Product WHERE PNAME = 'LAPTOP'; -- (d) Display name and quantity of those products whose price is above 5000 SELECT PNAME, QUANTITY FROM Product WHERE PRICE > 5000;