×

Important MCQs IT class 10 CBSC 2026 1

0 0
Read Time:47 Minute, 12 Second

Table of Contents

 IT class 10 CBSC

 

No. Keyword Definition
1 Database A structured collection of related data organized in tables for easy storage, retrieval, and management. Example: MySQL database storing student records.
2 DBMS (Database Management System) Software that manages databases by enabling data storage, retrieval, security, and administration. It acts as an interface between users and data.
3 Memo Data Type A data type used to store long text values exceeding 255 characters, such as descriptions or comments.
4 Text Data Type A data type used for storing short alphanumeric values with a maximum length of 255 characters.
5 SQL (Structured Query Language) A standard programming language used to create, modify, and retrieve data from relational databases.
6 DCL (Data Control Language) A category of SQL commands used to control access and permissions in a database, such as GRANT and REVOKE.
7 Primary Key A unique field or combination of fields that identifies each record in a database table.
8 INSERT Command An SQL command used to add new records into a database table.
9 Sustainable Development Development that meets present needs without compromising the ability of future generations to meet their own needs.
10 Resource Conservation The responsible use and protection of natural resources to prevent depletion and ensure environmental balance.

Q1. Which statement best defines a database?

A) Collection of unrelated files

B) Organized collection of related data

C) Temporary memory storage

D) Hardware storage unit

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Organized collection of related data

📖 Explanation: A database is a structured collection of logically related data organized for efficient retrieval, management, and updating. Unlike random files, databases use tables, records, and relationships. Database Management Systems control storage, retrieval, and security. Early database models evolved from file systems to relational systems improving consistency and minimizing redundancy. Modern systems like MySQL or Oracle manage enterprise data efficiently ensuring data integrity, concurrency control, and systematic organization across applications and users.

Q2. DBMS primarily ensures which property?

A) Data redundancy increase

B) Data independence

C) Hardware dependency

D) Manual processing

🕉️ View Answer & Explanation

✓ Correct: B – Data independence

📖 Explanation: Data independence allows structural changes in database schema without affecting application programs. DBMS provides logical and physical independence separating storage details from users. This feature enhances maintainability, flexibility, and scalability. Traditional file systems lacked such abstraction leading to redundancy and inconsistency. Database architecture ensures controlled access, security enforcement, and systematic storage. This principle became fundamental in relational database theory enabling efficient data handling across changing technological environments.

Q3. Why is Memo datatype preferred over Text datatype?

A) Faster processing

B) Stores numeric values

C) Stores data beyond 255 characters

D) Used for indexing only

🕉️ View Answer & Explanation

✓ Correct: C – Stores data beyond 255 characters

📖 Explanation: Memo datatype is used when text length exceeds the fixed limitation of standard text fields. Traditional text datatype typically stores up to 255 characters only. When storing descriptions, reports, or project details requiring extensive content, memo fields ensure storage without truncation. This design supports flexibility in database structure and preserves information integrity. It reflects database normalization practices ensuring fields accommodate variable-length content without violating storage constraints or causing data loss.

Q4. SQL command used to create a table belongs to which category?

A) DML

B) DCL

C) DDL

D) TCL

🕉️ View Answer & IT class 10 CBSC

✓ Correct: C – DDL

📖 Explanation: Data Definition Language defines database structure including tables, schemas, and constraints. Commands like CREATE, ALTER, and DROP modify metadata rather than actual records. This classification distinguishes structural operations from data manipulation. SQL architecture separates responsibilities ensuring organized database administration. Table creation establishes schema integrity and defines field types enabling consistent storage. Such structural commands are foundational to relational database systems supporting controlled and standardized data organization across applications.

Q5. GRANT and REVOKE commands belong to:

A) DML

B) DDL

C) DCL

D) TCL

🕉️ View Answer & Explanation

✓ Correct: C – DCL

📖 Explanation: Data Control Language manages access privileges and security mechanisms in database systems. Commands such as GRANT and REVOKE regulate user permissions controlling who can read, modify, or administer data. Security management is essential in multi-user environments ensuring confidentiality and integrity. Database security evolved alongside enterprise computing emphasizing controlled authorization. These commands enforce policy compliance and protect organizational information assets from unauthorized access or manipulation within structured database frameworks.

Q6. Core principle of sustainable development is:

A) Unlimited consumption

B) Meeting present needs without harming future

C) Industrial expansion only

D) Resource depletion

🕉️ View Answer & Explanation

✓ Correct: B – Meeting present needs without harming future

📖 Explanation: Sustainable development emphasizes balanced resource utilization ensuring present needs are satisfied without compromising future generations. It integrates environmental conservation, economic growth, and social equity. This concept emerged from global ecological concerns highlighting limits of uncontrolled industrialization. Responsible resource management preserves biodiversity and ecological stability. Policy frameworks worldwide incorporate sustainability principles to ensure long-term human welfare and environmental resilience within interconnected natural and socioeconomic systems.

Q7. Sustainable development promotes:

A) Resource wastage

B) Environmental neglect

C) Intergenerational equity

D) Profit maximization alone

🕉️ View Answer & Explanation

✓ Correct: C – Intergenerational equity

📖 Explanation: Intergenerational equity ensures fairness between present and future populations in resource utilization. Sustainable development advocates responsible consumption preventing ecological degradation. This principle integrates ethics, environment, and economics recognizing Earth as shared heritage. Conservation strategies maintain ecological balance supporting biodiversity and long-term productivity. Policy frameworks emphasize inclusive participation, environmental stewardship, and responsible development practices ensuring human progress does not compromise planetary sustainability or future societal well-being.

Q8. Which SQL command inserts data into a table?

A) UPDATE

B) INSERT

C) CREATE

D) ALTER

🕉️ View Answer & Explanation

✓ Correct: B – INSERT

📖 Explanation: INSERT command belongs to Data Manipulation Language and is used to add new records into database tables. It specifies target table and corresponding values for fields. Data manipulation operations differ from structural commands as they operate on stored records. Controlled insertion ensures data consistency, integrity, and transactional accuracy. Modern database systems maintain atomicity during insertion preventing partial data entry and preserving reliability within multi-user operational environments.

Q9. Primary key in a table ensures:

A) Duplicate records allowed

B) Unique identification of records

C) Faster internet speed

D) Random arrangement

🕉️ View Answer & Explanation

✓ Correct: B – Unique identification of records

📖 Explanation: Primary key uniquely identifies each record within a relational table ensuring entity integrity. It prevents duplicate and null values maintaining consistent referencing across tables. Database normalization relies on unique identifiers to establish relationships. This constraint enhances data retrieval efficiency and logical organization. Without primary keys relational mapping becomes ambiguous. Hence, they serve as fundamental structural elements preserving coherence and reliability in database architecture and transaction processing.

Q10. Sustainable development mainly addresses:

A) Only economic growth

B) Environmental, social, economic balance

C) Military expansion

D) Urban congestion

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Environmental, social, economic balance

📖 Explanation: Sustainable development integrates environmental conservation, economic advancement, and social equity into a unified development model. It rejects isolated growth strategies emphasizing holistic progress. Resource efficiency, ecological protection, and inclusive participation form its foundation. This framework emerged from global environmental concerns highlighting limits of unchecked industrialization. Balanced development ensures human welfare while maintaining ecological systems that support life. Such integration promotes resilience and long-term stability across societies.

Q11. Which field type stores date values?

A) Text

B) Integer

C) Date

D) Boolean

🕉️ View Answer & Explanation

✓ Correct: C – Date

📖 Explanation: Date datatype stores calendar-based values enabling chronological sorting, comparison, and computation. It supports operations such as interval calculation and time-based queries. Specialized storage format ensures accuracy unlike textual representation. Databases use structured date formats to maintain consistency across systems. Proper datatype selection improves query efficiency and prevents data anomalies. Logical classification of data types forms essential aspect of schema design ensuring integrity and meaningful interpretation.

Q12. Which principle emphasizes conservation of biodiversity?

A) Industrial maximization

B) Earth’s vitality protection

C) Population expansion

D) Technological dominance

🕉️ View Answer & Explanation

✓ Correct: B – Earth’s vitality protection

📖 Explanation: Protection of Earth’s vitality refers to preserving biodiversity, ecological processes, and natural balance. Sustainable development advocates conservation of ecosystems ensuring stability of life-support systems. Biodiversity provides resilience against environmental disruptions and supports resource availability. Conservation-oriented development maintains environmental productivity while enabling human progress. This principle reflects ethical responsibility toward nature recognizing interdependence between ecological health and long-term human survival.

Q13. Database structure is defined using:

A) Queries

B) Schema

C) Records

D) Reports

🕉️ View Answer & Explanation

✓ Correct: B – Schema

📖 Explanation: Schema represents logical blueprint of database describing tables, fields, relationships, and constraints. It defines structural organization independent of stored data. Database design begins with schema modeling to ensure consistency and normalization. Proper schema design reduces redundancy and enhances integrity. This structural framework guides data storage, retrieval, and validation processes forming foundation of relational database management systems and enterprise data architecture.

Q14. Which objective reflects sustainable human development?

A) Resource exhaustion

B) Quality of life improvement

C) Ecological neglect

D) Consumption maximization

🕉️ View Answer & Explanation

✓ Correct: B – Quality of life improvement

📖 Explanation: Sustainable human development prioritizes improving quality of life while preserving environmental systems. It integrates economic opportunity, social equity, and ecological stability. Development without environmental responsibility leads to long-term decline. Sustainable models ensure equitable resource distribution, public participation, and ethical stewardship. This perspective recognizes humanity’s role as caretaker of Earth promoting responsible advancement compatible with ecological resilience and future generational welfare.

Q15. Which SQL command removes a table permanently?

A) DELETE

B) DROP

C) UPDATE

D) SELECT

🕉️ View Answer & Explanation

✓ Correct: B – DROP

📖 Explanation: DROP command permanently deletes database objects including tables and their data. It belongs to Data Definition Language and alters database structure irreversibly. Unlike DELETE which removes records, DROP eliminates entire schema object. Structural commands require administrative privileges due to irreversible impact. Proper database governance ensures such operations are controlled to prevent accidental data loss and maintain integrity of information systems.

Q16. Sustainable development encourages community participation because:

A) It reduces awareness

B) It ensures inclusive environmental management

C) It promotes exploitation

D) It increases inequality

🕉️ View Answer & Explanation

✓ Correct: B – It ensures inclusive environmental management

📖 Explanation: Community participation strengthens environmental governance through local engagement and shared responsibility. Sustainable development emphasizes inclusive decision-making enabling communities to manage resources effectively. Participatory approaches enhance accountability, awareness, and long-term conservation outcomes. Local knowledge contributes to ecological preservation. Collective stewardship ensures equitable distribution of benefits and responsibilities supporting resilient development models compatible with environmental sustainability and social justice principles.

Q17. Which constraint prevents null values in a field?

A) UNIQUE

B) NOT NULL

C) CHECK

D) DEFAULT

🕉️ View Answer & Explanation

✓ Correct: B – NOT NULL

📖 Explanation: NOT NULL constraint ensures mandatory data entry preventing absence of values in specified fields. It enhances data completeness and reliability. Constraints are integrity rules embedded within schema design. Such restrictions enforce consistency across database operations. Ensuring mandatory attributes exist supports accurate analysis, reporting, and decision-making. Constraint-based validation forms essential component of relational database management systems maintaining structured and dependable information storage.

Q18. Major global concern leading to sustainability concept was:

A) Cultural diversity

B) Environmental degradation

C) Space exploration

D) Trade globalization

🕉️ View Answer & Important MCQs IT class 10 2026

✓ Correct: B – Environmental degradation

📖 Explanation: Growing environmental degradation including pollution, deforestation, and resource depletion triggered global awareness about sustainable development. Scientific assessments revealed limits of unchecked industrial growth. Sustainability emerged as response emphasizing responsible resource use and ecological protection. Environmental decline threatened human survival and economic stability. International cooperation promoted sustainable practices to balance development with environmental preservation ensuring long-term planetary health.

Q19. Which operation retrieves data from a database?

A) SELECT

B) INSERT

C) CREATE

D) DROP

🕉️ View Answer & Explanation

✓ Correct: A – SELECT

📖 Explanation: SELECT command retrieves stored records from database tables based on specified conditions. It forms core of data querying enabling filtering, sorting, and aggregation. Query processing transforms user requests into structured retrieval operations. Efficient retrieval mechanisms are central to database usefulness. SQL query language provides declarative approach allowing users to specify required results rather than procedural steps ensuring optimized execution strategies within database engines.

Q20. Sustainable development ultimately aims at:

A) Short-term gains

B) Long-term ecological balance

C) Resource monopolization

D) Industrial dominance

🕉️ View Answer & Explanation

✓ Correct: B – Long-term ecological balance

📖 Explanation: Sustainable development seeks long-term ecological balance ensuring harmony between human activities and natural systems. It prioritizes resource conservation, environmental protection, and equitable development. Long-term sustainability supports economic stability and social welfare. This approach recognizes finite planetary resources and promotes responsible stewardship. Balanced development ensures continued productivity of ecosystems while meeting human needs across generations without environmental collapse.

IT class 10 CBSC

No. Keyword Definition
1 SQL (Structured Query Language) A standard database language used to create, retrieve, update, and delete data stored in relational database tables.
2 Design View A table view used to define or modify the structure of a database table, including fields, data types, and keys.
3 Auto Value (Auto Increment) A numeric data type property that automatically generates unique sequential numbers for each record.
4 Arithmetic Operators Operators used to perform mathematical calculations such as addition, subtraction, multiplication, and division.
5 Datasheet View A table view that displays records in rows and columns and allows direct data entry and editing.
6 DELETE Command An SQL command used to remove one or more records from a database table.
7 Composite Primary Key A primary key formed by combining two or more columns to uniquely identify each record.
8 Varchar (Text Data Type) A data type used to store variable-length text or character data.
9 Binary Data Type A data type used to store non-text data such as images, audio files, and multimedia content.
10 Format Property A field property used to display data in a specific pattern such as phone numbers or dates.

 

Q1. What does SQL stand for?

A) Structured Query Language

B) Structured Quality Language

C) Structural Query Language

D) None of the above

🕉️ View Answer & Important MCQs IT class 10 2026

✓ Correct: A – Structured Query Language

📖 Explanation: SQL stands for Structured Query Language, the standard language used to communicate with relational database systems. It enables users to create tables, insert records, retrieve data, and manage permissions. The language follows declarative programming principles where users specify what data is required rather than how to obtain it. As Edgar F. Codd emphasized, structured data organization ensures consistency, integrity, and logical accessibility in modern information systems worldwide for reliability.

Q2. In which view can the structure of a table be changed?

A) Design view

B) Structure view

C) Data view

D) All of the above

🕉️ View Answer & Explanation

✓ Correct: A – Design view

📖 Explanation: Design view allows modification of table structure including field names, data types, primary keys, and constraints. It focuses on schema definition rather than data manipulation. Database design determines how efficiently information is stored and retrieved. According to database theory, structure precedes data because logical organization defines integrity rules. Changing structure in data view risks corruption, therefore DBMS platforms separate schema design from record entry operations for safety, clarity, and systematic control management.

Q3. What data type is the Auto Value property used for?

A) Date

B) Character

C) Numeric

D) Binary

🕉️ View Answer & Explanation

✓ Correct: C – Numeric

📖 Explanation: Auto Value automatically generates sequential numeric values for each record, typically used in primary key fields. This ensures uniqueness and eliminates manual entry errors. In relational database theory, unique identifiers maintain entity integrity. Numeric auto-increment fields optimize indexing and search performance. As the principle states, “A key must uniquely identify a record.” Auto Value fields enforce this rule systematically without user intervention, enhancing reliability, consistency, and scalability of structured databases significantly.

Q4. Which SQL query retrieves all students whose favorite color is Blue?

A) SELECT all FROM Stud WHERE fav_Color = ‘Blue’;

B) SELECT all FROM Stud WHERE fav_Color is ‘Blue’;

C) SELECT name FROM Stud WHERE fav_Color = ‘Blue’;

D) SELECT * FROM Stud WHERE fav_Color = ‘Blue’;

🕉️ View Answer & Important MCQs IT class 10 2026

✓ Correct: D – SELECT * FROM Stud WHERE fav_Color = ‘Blue’;

📖 Explanation: SELECT * retrieves all columns from a table, while the WHERE clause filters rows based on a condition. SQL follows precise syntax rules; therefore keywords and operators must be correctly used. Logical comparison ensures accurate filtering. In relational algebra, selection operation extracts tuples satisfying conditions. This query represents practical implementation of selection. Precision in query writing reflects the principle: “Correct syntax ensures correct results,” fundamental in structured data management systems everywhere today.

Q5. Which operators perform mathematical calculations in Base?

A) Arithmetic Operators

B) Membership Operators

C) Logical Operators

D) Relational Operators

🕉️ View Answer & IT class 10 CBSC

✓ Correct: A – Arithmetic Operators

📖 Explanation: Arithmetic operators perform addition, subtraction, multiplication, and division operations on numeric data. These operators support computed fields and data analysis. Mathematical processing inside queries reduces redundancy and enhances performance. Relational databases combine data storage with computational capability. As database philosophy suggests, “Bring computation to data, not data to computation.” Arithmetic operators implement this efficiency principle by allowing direct calculations during retrieval, ensuring optimized and logical data processing workflows universally.

Q6. In which view can records be entered into a table?

A) Datasheet View

B) Design View

C) Both

D) None

🕉️ View Answer & Explanation

✓ Correct: A – Datasheet View

📖 Explanation: Datasheet view displays records in tabular form, enabling direct entry, editing, and deletion of data. It represents the operational interface for users interacting with stored information. Database interfaces separate structural design from operational manipulation. This follows the abstraction principle in DBMS architecture. Logical data independence ensures users manipulate records without affecting schema definition. Such separation enhances usability, prevents structural errors, and maintains systematic control of stored information across applications efficiently and reliably.

Q7. Which SQL command removes records from a table?

A) INSERT

B) REMOVE

C) SELECT

D) DELETE

🕉️ View Answer & IT class 10 CBSC

✓ Correct: D – DELETE

📖 Explanation: DELETE removes existing records based on specified conditions. It is a Data Manipulation Language command used to modify stored information. Proper use of conditions prevents unintended data loss. Database operations follow transactional control principles ensuring accuracy and consistency. As emphasized in data management philosophy, “Data once deleted cannot represent reality again.” Therefore DELETE must be used cautiously with WHERE clause to preserve database integrity and operational correctness throughout system usage.

Q8. A primary key consisting of multiple fields is called:

A) Composite Primary Key

B) Alternate Primary Key

C) Foreign Primary Key

D) Reference Primary Key

🕉️ View Answer & Explanation

✓ Correct: A – Composite Primary Key

📖 Explanation: A composite primary key uses two or more attributes to uniquely identify each record. It is applied when a single attribute cannot ensure uniqueness. Composite keys represent real-world relationships where identification depends on combined factors. In relational design, such keys enforce entity integrity across complex datasets. Database normalization often requires composite identifiers to eliminate redundancy. They provide logical precision, maintain uniqueness, and support relational mapping across interconnected tables within structured database environments effectively.

Q9. Which data type stores images, audio, and multimedia files?

A) Numeric

B) Varchar

C) Binary

D) Alphanumeric

🕉️ View Answer & IT class 10 CBSC

✓ Correct: C – Binary

📖 Explanation: Binary data type stores non-text information such as images, videos, and audio files in raw byte format. Unlike text data, binary content represents machine-readable patterns. Databases support binary storage to manage multimedia efficiently. This aligns with the principle that databases store structured and unstructured content. Binary fields enable flexible storage beyond numeric and textual information, expanding database capability for modern applications involving digital media and complex information systems in diverse computing environments.

Q10. Which SQL clause groups rows sharing a common value?

A) ORDER BY

B) GROUP BY

C) WHERE

D) DISTINCT

🕉️ View Answer & Explanation

✓ Correct: B – GROUP BY

📖 Explanation: GROUP BY organizes rows into sets sharing identical values in specified columns. It is primarily used with aggregate functions like COUNT, SUM, and AVG. This clause supports analytical processing and summarization. In relational operations, grouping represents partitioning of data into logical subsets. Aggregation after grouping reflects statistical abstraction. It embodies the concept that structured data supports knowledge extraction, transforming raw information into meaningful summaries for informed decision-making across complex database environments.

Q11. Which normal form removes transitive dependency?

A) 1NF

B) 2NF

C) 3NF

D) BCNF

🕉️ View Answer & Important MCQs IT class 10 2026

✓ Correct: C – 3NF

📖 Explanation: Third Normal Form eliminates transitive dependency where non-key attributes depend on other non-key attributes. It ensures attributes depend only on the primary key. Normalization reduces redundancy and update anomalies. Relational design emphasizes logical dependency control. The guiding principle states, “Data should depend on the key, the whole key, and nothing but the key.” Third Normal Form enforces this rule, improving consistency, storage efficiency, and logical clarity within relational database structures significantly.

Q12. Which key maintains referential integrity between tables?

A) Primary Key

B) Foreign Key

C) Candidate Key

D) Super Key

🕉️ View Answer & Explanation

✓ Correct: B – Foreign Key

📖 Explanation: A foreign key establishes a link between two tables by referencing the primary key of another table. It enforces referential integrity ensuring valid relationships. This mechanism prevents orphan records and maintains consistency across relational structures. Referential integrity reflects real-world associations among entities. Database theory emphasizes relational linkage as fundamental to structured data modeling. Foreign keys operationalize relationships, ensuring coordinated updates and preserving logical correctness throughout interconnected database systems reliably and efficiently.

Q13. Which SQL command changes table structure?

A) ALTER

B) UPDATE

C) MODIFY

D) CHANGE

🕉️ View Answer & Explanation

✓ Correct: A – ALTER

📖 Explanation: ALTER modifies existing table structure by adding, deleting, or changing columns and constraints. It belongs to Data Definition Language commands managing schema design. Structural modification impacts database organization rather than content. Schema evolution supports changing requirements while maintaining integrity. Database administration requires careful structural control to avoid data loss. ALTER embodies the principle that database structure must adapt logically to new requirements while preserving consistency and system stability over time.

Q14. Which operation combines rows from two tables based on condition?

A) UNION

B) JOIN

C) MERGE

D) GROUP

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – JOIN

📖 Explanation: JOIN retrieves related records from multiple tables using a logical condition. It represents relational database strength by enabling structured connections. Various join types include inner, left, right, and full joins. This operation reflects relational algebra’s combination principle. Data relationships enable comprehensive information retrieval. JOIN supports normalization by allowing distributed storage with unified querying. It embodies relational design philosophy where meaningful information emerges from structured relationships among independent data entities.

Q15. Which constraint ensures no duplicate values?

A) UNIQUE

B) CHECK

C) DEFAULT

D) NOT NULL

🕉️ View Answer & Explanation

✓ Correct: A – UNIQUE

📖 Explanation: UNIQUE constraint ensures all values in a column are distinct. It prevents duplication while allowing null values depending on DBMS implementation. This constraint enforces data validity and supports logical consistency. Data quality depends on constraint enforcement. Structured databases rely on rules to maintain accuracy. UNIQUE supports entity differentiation without necessarily defining primary identity. It represents integrity enforcement mechanisms essential for reliable information storage, retrieval, and logical representation of real-world entities accurately.

Q16. Which SQL clause filters grouped data?

A) WHERE

B) HAVING

C) ORDER BY

D) DISTINCT

🕉️ View Answer & Explanation

✓ Correct: B – HAVING

📖 Explanation: HAVING filters grouped records after aggregation, unlike WHERE which filters rows before grouping. It works with GROUP BY and aggregate functions. Analytical queries require post-aggregation filtering. SQL processing order determines clause functionality. HAVING represents logical refinement of grouped data. It supports complex analysis such as filtering groups based on totals. This clause demonstrates structured query execution stages, reinforcing logical data processing principles within relational database systems and analytical decision-making processes.

Q17. Which anomaly occurs due to redundancy?

A) Update anomaly

B) Logical anomaly

C) Structural anomaly

D) Binary anomaly

🕉️ View Answer & IT class 10 CBSC

✓ Correct: A – Update anomaly

📖 Explanation: Update anomaly occurs when redundant data requires multiple updates to maintain consistency. If one instance is missed, inconsistency arises. Redundancy increases storage and reduces reliability. Database normalization removes redundancy to avoid such anomalies. Update anomalies highlight importance of structured design. They demonstrate that improper organization affects accuracy and integrity. Eliminating redundancy ensures consistent updates, efficient storage, and logically dependable data representation across relational database systems operating in real-world environments.

Q18. Which command permanently removes a table?

A) DELETE

B) REMOVE

C) DROP

D) CLEAR

🕉️ View Answer & IT class 10 CBSC

✓ Correct: C – DROP

📖 Explanation: DROP permanently deletes a table including structure and data. It is irreversible in standard execution. Unlike DELETE, which removes records, DROP eliminates schema definition. Structural removal represents Data Definition Language operation. Database administration requires careful use of DROP to avoid permanent loss. It reflects authority over schema lifecycle. The command underscores that structural decisions define system existence, emphasizing controlled and deliberate database management practices for long-term information governance reliability.

Q19. Which level of DBMS architecture hides physical storage details?

A) Internal level

B) Conceptual level

C) External level

D) Logical level

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Conceptual level

📖 Explanation: The conceptual level describes overall logical structure of the database independent of physical storage. It hides implementation details from users. DBMS architecture separates internal, conceptual, and external levels. This abstraction ensures data independence and system flexibility. Conceptual schema defines entities, relationships, and constraints. Abstraction is fundamental in database theory because it enables logical modeling without hardware dependency. This separation improves portability, maintainability, and systematic control of structured information systems in practice.

Q20. Which operation returns only unique records?

A) DISTINCT

B) UNIQUE

C) PRIMARY

D) FILTER

🕉️ View Answer & IT class 10 CBSC

✓ Correct: A – DISTINCT

📖 Explanation: DISTINCT eliminates duplicate rows from query results, ensuring uniqueness in output. It is applied during retrieval without altering stored data. Distinct selection supports data analysis by preventing repetition. In relational algebra, projection with duplicate elimination corresponds to DISTINCT. It emphasizes clarity of information. The operation reflects the principle that meaningful knowledge requires non-redundant representation. DISTINCT therefore improves interpretability, accuracy, and logical precision in query results generated from structured relational databases.

Keyword Definition IT class 10 CBSC
Database An organized collection of data stored electronically for easy access, management, and retrieval.
DBMS A software system that creates, manages, and controls access to databases while ensuring data consistency.
Data Raw, unorganized facts such as numbers, text, images, or sounds that require processing.
RDBMS A database management system that stores data in related tables connected through keys.
Primary Key A unique field that identifies each record in a database table and does not allow duplicate or null values.
Foreign Key A field that links one table to another by referencing the primary key of another table.
Data Integrity The accuracy, reliability, and consistency of data maintained through defined rules and constraints.
Data Redundancy Unnecessary duplication of data in multiple locations, which DBMS aims to minimize.
DDL Data Definition Language used to create, modify, and delete database structures such as tables and schemas.
DML Data Manipulation Language used to insert, retrieve, update, and delete data in a database.

Q1. Which feature of DBMS primarily ensures logical independence between data and application programs?

A) Data Redundancy

B) Data Independence

C) Data Integrity

D) Data Sharing

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Data Independence

📖 Explanation: Data independence means database structure changes do not require modification of application programs. This separation is fundamental to DBMS architecture because data descriptions are stored independently from programs accessing them. It allows flexibility in modifying schemas without affecting users or software logic. This principle bridges information and data effectively. Logical and physical data independence ensure stable system design. It directly distinguishes database systems from conventional file-processing systems in real-world computing environments.

Q2. In relational databases, tables are connected using which essential mechanism?

A) Primary Memory

B) Common Field

C) Data Dictionary

D) Query Language

🕉️ View Answer & Explanation

✓ Correct: B – Common Field

📖 Explanation: Relational databases organize data into multiple tables linked using common fields, typically foreign keys referencing primary keys. This structure enables efficient data retrieval and consistency across related datasets. Without such linking attributes, relational integrity cannot be maintained. The relational model’s strength lies in logical connections rather than physical storage. It allows structured queries and supports normalization. Therefore, common fields form the structural backbone of relational database management systems in practical implementations worldwide today.

Q3. Which integrity rule prohibits null and duplicate values in a primary key column?

A) Domain Integrity

B) Referential Integrity

C) Entity Integrity

D) User-defined Integrity

🕉️ View Answer & Explanation

✓ Correct: C – Entity Integrity

📖 Explanation: Entity integrity ensures that every table has a primary key with unique and non-null values. This rule guarantees that each record is identifiable and prevents ambiguity in database operations. Without entity integrity, duplicate or missing identifiers could cause inconsistency and retrieval errors. It is a foundational constraint in relational database design. By enforcing uniqueness, entity integrity supports accurate referencing, stable relationships, and reliable transaction processing within structured database environments effectively.

Q4. A database server primarily performs which function?

A) Stores application programs

B) Executes operating system tasks

C) Holds databases and runs DBMS software

D) Controls network security

🕉️ View Answer & IT class 10 CBSC

✓ Correct: C – Holds databases and runs DBMS software

📖 Explanation: A database server is a dedicated computer designed to store databases and execute DBMS-related operations. It manages storage, retrieval, and access control functions. Unlike general-purpose systems, database servers focus on efficient data handling and concurrency management. They enable centralized storage and multi-user access. This architecture improves reliability, consistency, and performance. Database servers form the infrastructure backbone of enterprise data management systems and support structured data processing environments across organizations globally.

Q5. Which DBMS advantage directly minimizes storage wastage and duplication?

A) Data Security

B) Data Redundancy Reduction

C) Backup Facility

D) Data Views

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Data Redundancy Reduction

📖 Explanation: Data redundancy refers to unnecessary duplication of data across files or tables. DBMS reduces redundancy by centralized storage and controlled data sharing. This eliminates repeated storage of identical data items, saving space and improving consistency. Reduced redundancy also minimizes update anomalies and processing overhead. It ensures that modifications occur at a single location. This advantage is fundamental in distinguishing database systems from traditional file-processing approaches in structured information management environments effectively.

Q6. Which key uniquely identifies each record in a table?

A) Foreign Key

B) Alternate Key

C) Primary Key

D) Composite Key

🕉️ View Answer & Explanation

✓ Correct: C – Primary Key

📖 Explanation: A primary key is a field or combination of fields that uniquely identifies each record in a table. It cannot contain duplicate or null values. This ensures entity integrity and enables accurate referencing by foreign keys. The primary key establishes identity and stability within relational structures. Without a primary key, records cannot be reliably distinguished. Therefore, it is a fundamental design requirement in relational database systems for maintaining structured, consistent, and retrievable data relationships efficiently.

Q7. Which DBMS component represents raw facts and figures?

A) Hardware

B) Data

C) Software

D) Query

🕉️ View Answer & Explanation

✓ Correct: B – Data

📖 Explanation: Data consists of raw, unorganized facts such as numbers, text, images, or sounds. It forms the fundamental content stored within a database. DBMS processes data into meaningful information through storage, retrieval, and manipulation operations. Data acts as a bridge between hardware and software. Without data, databases have no functional purpose. Accurate data management ensures reliability, consistency, and usefulness of information systems supporting organizational decision-making processes in modern digital environments globally.

Q8. Which data model stores data in a single table structure?

A) Relational Model

B) Flat File Model

C) Network Model

D) Hierarchical Model

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Flat File Model

📖 Explanation: A flat file database stores all data within a single table structure. It is suitable for small datasets and simple applications. Unlike relational systems, it lacks table relationships and structured linking mechanisms. This simplicity limits scalability and data integrity enforcement. However, flat files are easy to implement and manage for minimal data storage needs. Their structure reflects early data management systems prior to advanced relational database architectures widely used in contemporary computing environments globally.

Q9. Which DBMS feature allows multiple users to access the same data simultaneously without duplication?

A) Data Sharing

B) Data Redundancy

C) Data Isolation

D) Data Fragmentation

🕉️ View Answer & Explanation

✓ Correct: A – Data Sharing

📖 Explanation: Data sharing enables multiple authorized users to access the same centralized dataset simultaneously without maintaining separate copies. This capability reduces redundancy and ensures consistency across applications. Through concurrency control and transaction management, DBMS maintains accuracy even when many users operate concurrently. Data sharing supports collaboration and efficient information flow within organizations. It distinguishes database systems from isolated file-based storage models traditionally used in earlier computing environments and improves resource utilization significantly overall.

Q10. Which integrity ensures values in a column follow defined type and range constraints?

A) Domain Integrity

B) Entity Integrity

C) Referential Integrity

D) View Integrity

🕉️ View Answer & IT class 10 CBSC

✓ Correct: A – Domain Integrity

📖 Explanation: Domain integrity ensures that all values stored in a column conform to a predefined data type, format, and allowable range. It prevents invalid data entry by enforcing constraints such as numeric limits or specific formats. This rule maintains consistency within attributes across records. Domain integrity supports data reliability and accuracy in database operations. It forms a core validation mechanism ensuring that stored data remains meaningful and logically structured throughout system processing and retrieval activities consistently.

Q11. Which key establishes relationship between two tables?

A) Candidate Key

B) Foreign Key

C) Alternate Key

D) Composite Key

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Foreign Key

📖 Explanation: A foreign key is a field in one table that references the primary key of another table. It establishes logical relationships between datasets and maintains referential integrity. By linking records across tables, foreign keys enable structured relational queries and consistent data representation. They prevent orphan records and maintain cross-table accuracy. Foreign keys are essential components of relational database design and ensure meaningful associations between related entities stored across multiple tables effectively.

Q12. Which DBMS disadvantage arises due to multi-user processing overhead?

A) Increased Redundancy

B) Lower Efficiency

C) Reduced Security

D) Lack of Backup

🕉️ View Answer & Explanation

✓ Correct: B – Lower Efficiency

📖 Explanation: DBMS environments supporting multiple concurrent users require transaction management, locking mechanisms, and consistency controls. These processes introduce computational overhead that may reduce efficiency compared to single-user file systems. However, this trade-off ensures reliability, integrity, and coordinated access. Multi-user architecture prioritizes correctness over raw performance. Thus, lower efficiency represents a manageable limitation of database systems when handling complex shared data operations across large-scale organizational information systems in practice worldwide today.

Q13. Which SQL command retrieves records from a table?

A) INSERT

B) DELETE

C) SELECT

D) UPDATE

🕉️ View Answer & IT class 10 CBSC

✓ Correct: C – SELECT

📖 Explanation: The SELECT command retrieves data from one or more tables in a database. It is the most frequently used Data Manipulation Language operation. SELECT enables filtering, projection, sorting, and joining of data. Unlike INSERT or UPDATE, it does not modify stored data. Instead, it extracts information based on specified conditions. This capability supports reporting, analysis, and decision-making functions within database-driven applications and forms the foundation of query-based data access mechanisms universally used.

Q14. Which language defines database structure such as tables and schemas?

A) DML

B) DDL

C) SQL View

D) Query Language

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – DDL

📖 Explanation: Data Definition Language defines the structure of database objects including tables, schemas, and indexes. DDL commands such as CREATE, ALTER, and DROP establish or modify database architecture. Unlike DML, which manipulates stored data, DDL focuses on structural design. It determines how data is organized and stored. This structural specification is essential for database initialization and management. DDL ensures standardized organization and controlled modification of database frameworks within structured information systems globally today.

Q15. Which DBMS feature allows different users to see different subsets of data?

A) Data Encryption

B) Multiple Views

C) Data Replication

D) Data Locking

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Multiple Views

📖 Explanation: Multiple views allow different users to access customized representations of the same database. Each view presents only relevant data based on user roles or requirements. This enhances security, usability, and efficiency by restricting unnecessary information exposure. Views do not store separate data but provide logical subsets. This capability supports role-based access control and simplifies interaction with complex databases. It is a fundamental usability and security feature of modern database management systems worldwide today.

Q16. Which DBMS function recovers data after hardware failure?

A) Data Security

B) Backup and Recovery

C) Data Sharing

D) Data Integrity

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Backup and Recovery

📖 Explanation: Backup and recovery mechanisms protect databases from data loss due to hardware failures, power interruptions, or software errors. Backup creates stored copies of data, while recovery restores them when failures occur. This subsystem ensures continuity and reliability of information systems. Without recovery capability, database corruption could cause irreversible loss. It is a critical safeguard ensuring long-term stability, resilience, and trustworthiness of database management systems operating in real-world environments globally today.

Q17. Which database object organizes data into rows and columns ?

A) Query

B) Table

C) Report

D) Form

🕉️ View Answer & Explanation

✓ Correct: B – Table

📖 Explanation: A table is the fundamental database object that stores structured data in rows and columns. Each row represents a record, and each column represents an attribute. Tables serve as primary storage units in relational databases. They enable systematic organization, retrieval, and manipulation of information. Through keys and constraints, tables maintain relationships and integrity. Thus, tables provide the structural foundation for storing and managing data within database management systems effectively and efficiently.

Q18. Which DML operation modifies existing data?

A) SELECT

B) UPDATE

C) CREATE

D) ALTER

🕉️ View Answer & Explanation

✓ Correct: B – UPDATE

📖 Explanation: UPDATE is a Data Manipulation Language command used to modify existing records within a table. It changes attribute values based on specified conditions. Unlike INSERT, which adds new records, UPDATE alters stored data. This operation maintains database currency and correctness. Controlled updates ensure consistency across related tables. It is essential for transaction processing and data maintenance. UPDATE supports dynamic information systems requiring periodic data revisions in operational environments worldwide.

Q19. Which database type is most suitable for managing large structured datasets with relationships?

A) Flat File Database

B) Relational Database

C) Text Database

D) Binary Database

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Relational Database

📖 Explanation: Relational databases organize data across multiple interrelated tables linked through keys. This structure supports complex queries, integrity constraints, and scalability. They are designed for medium to large structured datasets requiring consistency and logical relationships. Unlike flat files, relational systems enforce rules ensuring accuracy and efficient retrieval. Their standardized design and query capabilities make them dominant in enterprise data management and structured information processing environments across modern computing systems globally today.

Q20. Which statement best describes the primary goal of a DBMS?

A) Replace operating systems

B) Provide convenient and efficient data storage and retrieval

C) Eliminate hardware requirements

D) Remove need for users

🕉️ View Answer & IT class 10 CBSC

✓ Correct: B – Provide convenient and efficient data storage and retrieval

📖 Explanation: The primary goal of a DBMS is to provide an environment that enables users to store, retrieve, and manage data efficiently and conveniently. It acts as an interface between applications and stored data. By organizing information systematically, DBMS improves accessibility, consistency, and reliability. It simplifies complex data operations while maintaining integrity and security. This core objective defines the functional purpose of database management systems in modern computing environments globally today.

IT class 10 CBSC Today MCQs

 

SQL Key Definition (Exam Style) Example Table CBSE Previous Question / Quotation
Primary Key A field that uniquely identifies each record in a table. It cannot contain NULL values. STUDENT(
RollNo, Name, Class
)
RollNo → Unique
“Identify the primary key in the STUDENT table.”
“Which key uniquely identifies a record?”
Candidate Key All possible attributes that can uniquely identify records in a table. EMPLOYEE (
EmpID, Email, Phone
)
Candidate Keys → EmpID, Email
“Differentiate between candidate key and primary key.”
Alternate Key Candidate keys not selected as the primary key. EMPLOYEE(
EmpID (PK), Email
)
Alternate Key → Email
“What is an alternate key? Give one example.”
Foreign Key A field that refers to the primary key of another table to create a relationship. STUDENT(RollNo, Name)
MARKS(RollNo, Marks)
RollNo in MARKS → Foreign Key
“Explain foreign key with example.”
“Which key maintains referential integrity?”
Composite Key A primary key formed using more than one attribute. RESULT(
RollNo, Subject, Marks
)
PK → (RollNo + Subject)
“Define composite key with suitable example.”
Super Key Any set of attributes that uniquely identifies a record. STUDENT(RollNo, Name, Phone)
Super Keys → RollNo, RollNo+Name
“What is a super key? How is it different from primary key?”

DBMS class 10 CBSC

1️⃣ Identify the primary key in the STUDENT table

Answer:

The Primary Key is the attribute that uniquely identifies each record and does not allow NULL values.

Example:

STUDENT(RollNo, Name, Class)

RollNo = Primary Key (each student has a unique roll number)


2️⃣ Which key uniquely identifies a record?

Answer:

A Primary Key uniquely identifies each record in a table.

It must be:

  • Unique

  • Not NULL

  • Stable (does not change frequently)


3️⃣ Differentiate between Candidate Key and Primary Key

Feature Candidate Key Primary Key
Meaning All possible unique identifiers Selected unique identifier
Number Can be many Only one per table
NULL values Not allowed Not allowed
Example EmpID, Email EmpID (chosen one)

Conclusion: Primary key is selected from candidate keys.


4️⃣ What is an Alternate Key? Give one example.

Answer:

An Alternate Key is a candidate key that is not selected as the primary key.

Example:

EMPLOYEE (EmpID, Email, Phone)

If EmpID is Primary Key → Email = Alternate Key


5️⃣ Explain Foreign Key with example

Answer:

A Foreign Key is a field in one table that refers to the Primary Key of another table.

It establishes a relationship between tables.

Example:

STUDENT(RollNo, Name)

MARKS(RollNo, Marks)

➡ RollNo in MARKS = Foreign Key


6️⃣ Which key maintains referential integrity?

Answer:

The Foreign Key maintains referential integrity.

It ensures:

  • Values must exist in the parent table

  • Invalid references are not allowed

  • Table relationships remain consistent


7️⃣ Define Composite Key with suitable example

Answer:

A Composite Key is a primary key made using two or more attributes together.

Example:

RESULT(RollNo, Subject, Marks)

➡ Primary Key = (RollNo + Subject)

Reason: Same student can have multiple subjects.


8️⃣ What is a Super Key? How is it different from Primary Key?

Super Key:

Any attribute or combination of attributes that uniquely identifies a record.

Example:

STUDENT(RollNo, Name, Phone)

Super Keys → RollNo, RollNo+Name, RollNo+Phone

Difference

Super Key Primary Key
Many possible Only one
May contain extra attributes Minimal unique identifier
Not selected formally Official unique identifier

Conclusion:

Every Primary Key is a Super Key, but not every Super Key is a Primary Key.

Today MCQs

 

Q1. Which feature summarizes data from multiple worksheets into one worksheet?

A) Goal Seek

B) Scenario

C) Data Consolidation

D) Solver

🕉️ View Answer & Explanation

✓ Correct: C – Data Consolidation

📖 Explanation: Data Consolidation is defined in CBSE spreadsheet curriculum as a graphical tool that combines information from several worksheets into a master worksheet. It performs statistical operations like sum, average, max, and count on grouped ranges. Unlike Goal Seek or Solver, consolidation works with existing data rather than unknown variables. Previous definitions state: “Consolidation gathers and summarizes data from multiple sources into one coherent output for analysis and reporting purposes.”

Q2. Which tool determines the input required to achieve a desired output?

A) Subtotal

B) Goal Seek

C) Scenario

D) Filter

🕉️ View Answer & Explanation

✓ Correct: B – Goal Seek

📖 Explanation: Goal Seek is a What-if analysis tool designed to calculate unknown input values that produce a specified result in a formula. It works with one variable and one formula relationship. According to CBSE definitions, “Goal Seek reverses calculation logic by identifying the required input when output is known.” It differs from Solver because Solver handles multiple constraints and variables. Goal Seek is therefore a deterministic single-variable analytical method widely used in financial projections.

Q3. A cell or range used in formulas to locate values is called:

A) Data Range

B) Cell Reference

C) Field

D) Label

🕉️ View Answer & Explanation

✓ Correct: B – Cell Reference

📖 Explanation: A cell reference identifies the address of a cell or group of cells used in calculations. It enables formulas to dynamically retrieve values without rewriting expressions. CBSE material defines it as “a pointer to worksheet data used for computational processing.” References may be relative, absolute, or mixed, affecting copying behavior. Logical computation in spreadsheets depends on referencing structure rather than direct value insertion, which ensures automation, consistency, and scalable formula design across datasets.

Q4. Which function category is available in Data Consolidation?

A) Max

B) Min

C) Count

D) All of the above

🕉️ View Answer & Explanation

✓ Correct: D – All of the above

📖 Explanation: Consolidation supports multiple statistical aggregation functions including Sum, Average, Max, Min, and Count. These functions operate on grouped ranges from different worksheets. According to standard CBSE definitions, “Consolidation performs statistical summarization across data sources.” This flexibility makes it suitable for reporting and comparative analysis. The tool transforms distributed information into structured output, enabling centralized interpretation without manual recalculation or duplication of formulas across sheets.

Q5. An absolute hyperlink stops working when:

A) Source changes

B) Target moves

C) Workbook renames

D) Sheet deleted

🕉️ View Answer & Explanation

✓ Correct: B – Target moves

📖 Explanation: An absolute hyperlink stores a fixed path to the destination location. It breaks only when the target resource changes location. CBSE explanations define it as “a fully specified path reference independent of document movement.” Unlike relative hyperlinks, absolute links do not depend on folder structure relationships. Logical understanding: if source location shifts but target remains constant, the path still resolves. Thus breakage occurs exclusively when destination positioning changes.

Q6. Which feature tracks modifications in a shared worksheet?

A) Comparing Worksheets

B) Solver

C) Goal Seek

D) Consolidation

🕉️ View Answer & Explanation

✓ Correct: A – Comparing Worksheets

📖 Explanation: Comparing worksheets or record changes identifies modifications made by different users. It highlights edited cells and tracks revision history. According to CBSE documentation, “Record changes monitors who changed data, when changes occurred, and what values were modified.” This feature supports collaborative spreadsheet environments. Analytical significance lies in auditability and transparency. It prevents unauthorized modifications and allows evaluators to verify computational integrity across shared workbook environments.

Q7. Which advanced tool handles multiple variables and constraints?

A) Scenario

B) Solver

C) Subtotal

D) Filter

🕉️ View Answer & Explanation

✓ Correct: B – Solver

📖 Explanation: Solver is an optimization tool used for equations involving multiple variables and constraints. It can maximize, minimize, or achieve specific target values. CBSE definition states, “Solver extends Goal Seek by allowing constraint-based optimization across variables.” It applies mathematical logic such as linear programming principles. Unlike simple What-if analysis, Solver systematically tests combinations to identify optimal solutions under defined conditions, making it essential for resource allocation and decision modeling.

Q8. Scenarios in spreadsheets are primarily used for:

A) Data filtering

B) What-if analysis

C) Formatting

D) Printing

🕉️ View Answer & Explanation

✓ Correct: B – What-if analysis

📖 Explanation: Scenarios store alternative sets of values for analytical comparison. CBSE defines scenarios as “named sets of input values used to examine different computational outcomes.” They allow switching between assumptions without altering formulas. Logical benefit lies in predictive modeling. Users evaluate potential results under varied conditions. Scenarios differ from Goal Seek because they test multiple predefined inputs rather than calculating unknown values from desired outputs within formulas.

Q9. Subtotal feature requires which step first?

A) Sorting data

B) Filtering data

C) Protect sheet

D) Formatting

🕉️ View Answer & Explanation

✓ Correct: A – Sorting data

📖 Explanation: Subtotals calculate grouped results based on category structure. Data must be sorted so similar values are grouped. CBSE definition states, “Subtotal performs statistical operations on categorized arrays.” Without sorting, grouping logic fails. Logical sequence ensures correct hierarchical computation. Subtotal is therefore dependent on structured arrangement. This design reflects database principles where aggregation requires ordered classification to produce meaningful intermediate summaries within spreadsheet datasets.

Q10. Default macro library in Calc is:

A) Module

B) Standard

C) Library1

D) Default

🕉️ View Answer & Explanation

✓ Correct: B – Standard

📖 Explanation: The Standard library is automatically created when a Calc document is saved. CBSE defines it as “the default container storing macros and modules.” It organizes automation scripts within structured components. Logical importance lies in execution management and reusability. Without library structure, macros cannot be systematically stored or accessed. Therefore Standard functions as the foundational macro repository enabling spreadsheet automation and procedural extension capabilities.

.IT class 10 CBSC

No. Keyword Definition
1 Data Consolidation A spreadsheet tool that summarizes and combines data from multiple worksheets or workbooks into a single worksheet.
2 Scenario A What-if analysis feature that stores different sets of values to compare possible outcomes without changing formulas.
3 Cell Reference The address of a cell or range of cells used in formulas to locate and calculate data values.
4 Subtotal A feature that calculates grouped totals or statistical values for categorized data within a worksheet.
5 Absolute Hyperlink A fixed path link that breaks only when the destination location changes.
6 Relative Hyperlink A path link based on relative location that breaks when the source-target relationship changes.
7 Goal Seek A tool that calculates the input value required to produce a specified result in a formula.
8 Solver An advanced analytical tool that finds optimal solutions by handling multiple variables and constraints.
9

class10 

Record Changes A feature that tracks and highlights modifications made in a shared worksheet.
10 Comparing Worksheets A method used to identify differences between shared or edited spreadsheet versions.
11 Macro A recorded sequence of commands that automates repetitive spreadsheet tasks.
12 Macro Library A storage structure that organizes macros within a spreadsheet document.
13 Standard Library The default macro library automatically created when a Calc document is saved.
14 Insert Sheet A command used to add new worksheets before or after existing sheets.
15 Copy Results To An option that specifies where consolidated results will be displayed.
16 Worksheet A spreadsheet page consisting of rows and columns used to organize data.
17 Workbook A file containing one or more worksheets used for data organization and analysis.
18 Sorting Arranging data in a specified order to enable grouping and analysis.
19 Statistical Function A mathematical operation such as sum, average, max, or min applied to data ranges.
20 Shared Worksheet A spreadsheet accessible by multiple users for collaborative editing and tracking.

 

Q11. Which option specifies where consolidated results appear?

A) Source Data Range

B) Target Result At

C) Copy Results To

D) Output Sheet

🕉️ View Answer & Explanation

✓ Correct: C – Copy Results To

📖 Explanation: The “Copy Results To” field determines the destination location where consolidated output will be displayed. CBSE spreadsheet definitions describe it as the target address for computed summary values. Logical understanding: consolidation requires both input references and an output destination. Without specifying result placement, computation cannot be materialized. This option therefore defines the output coordinate structure necessary for transferring aggregated results into a usable worksheet region.

Q12. Which menu path is used to edit macros in Calc?

A) View → Macros

B) Format → Macros

C) Tools → Macros → Edit Macros

D) Insert → Macros

🕉️ View Answer & Explanation

✓ Correct: C – Tools → Macros → Edit Macros

📖 Explanation: Macros are automation scripts stored and managed through the Tools menu. CBSE documentation defines macros as recorded procedures that repeat tasks automatically. Editing macros requires access to their module structure through Tools → Macros. Logical reasoning: automation behavior must be modified at source code level. Therefore editing is not a formatting or viewing function but a procedural configuration task performed through system-level macro management utilities.

Q13. Insert Sheet dialog box contains which elements?

A) After Current Sheet

B) Number of Sheets

C) Before Current Sheet

D) All of the above

🕉️ View Answer & Explanation

✓ Correct: D – All of the above

📖 Explanation: The Insert Sheet dialog controls sheet creation parameters including position and quantity. CBSE definitions describe worksheet insertion as a structural modification of workbook architecture. Logical interpretation: sheet placement determines reference continuity and formula behavior. Therefore options include insertion before or after existing sheets and specifying sheet count. These controls collectively govern worksheet structure expansion and ensure organized data segmentation within spreadsheet environments.

Q14. Which feature allows repeating tasks automatically?

A) Scenario

B) Macro

C) Subtotal

D) Consolidation

🕉️ View Answer & Explanation

✓ Correct: B – Macro

📖 Explanation: A macro records a sequence of commands and executes them automatically when triggered. CBSE curriculum defines macros as “automation tools that repeat tasks consistently.” Logical significance lies in efficiency and accuracy. Repetitive manual operations introduce errors and consume time. Macros convert procedural workflows into programmable routines. This transforms spreadsheets from static calculation tools into automated processing systems capable of executing structured operational sequences.

Q15. Relative hyperlink stops working when:

A) Target deleted

B) Workbook closed

C) Relative path relationship changes

D) Sheet renamed

🕉️ View Answer & Explanation

✓ Correct: C – Relative path relationship changes

📖 Explanation: Relative hyperlinks depend on the positional relationship between source and destination. CBSE explanations define them as path references based on folder structure proximity. Logical reasoning: when structural relationship changes, path resolution fails. Unlike absolute links, relative links remain functional when entire folder structures move together. Therefore breakage occurs only when relative directory hierarchy changes, not when location shifts uniformly.

Q16. Which feature visually marks edited cells in shared sheets?

A) Filter

B) Record Changes

C) Scenario Manager

D) Goal Seek

🕉️ View Answer & Explanation

✓ Correct: B – Record Changes

📖 Explanation: Record Changes highlights modified cells with visual indicators such as colored borders. CBSE defines it as a tracking mechanism identifying who changed data and when. Logical significance lies in audit control and collaborative transparency. Spreadsheet environments often involve multiple users. Change tracking preserves data integrity by documenting modifications. This feature ensures accountability and supports systematic verification of computational updates across shared worksheet environments.

Q17. Goal Seek differs from Solver primarily because:

A) It uses macros

B) It handles one variable

C) It consolidates data

D) It tracks changes

🕉️ View Answer & Explanation

✓ Correct: B – It handles one variable

📖 Explanation: Goal Seek solves equations involving a single unknown variable, while Solver handles multiple variables and constraints. CBSE definitions distinguish Goal Seek as a single-input analytical tool. Logical understanding: problem complexity determines tool selection. When only one input influences output, Goal Seek is sufficient. Multi-variable optimization requires Solver. Thus functional scope, not interface similarity, defines their operational difference within spreadsheet analytical frameworks.

Q18. Which tool allows switching between saved value sets?

A) Macro

B) Scenario

C) Subtotal

D) Filter

🕉️ View Answer & Explanation

✓ Correct: B – Scenario

📖 Explanation: Scenarios store alternative value configurations and allow switching between them for comparative analysis. CBSE defines scenarios as named data sets used to test outcomes. Logical significance lies in predictive evaluation without modifying formulas. They enable decision analysis under varying assumptions. This feature supports modeling techniques similar to simulation approaches in analytical problem-solving frameworks used in data-driven decision environments.

Q19. Consolidation differs from Subtotal because consolidation:

A) Works across worksheets

B) Requires sorting

C) Tracks changes

D) Uses macros

🕉️ View Answer & Explanation

✓ Correct: A – Works across worksheets

📖 Explanation: Consolidation aggregates data from multiple worksheets, whereas Subtotal operates within a single dataset grouped by category. CBSE definitions identify consolidation as cross-source summarization. Logical distinction lies in scope. Subtotal performs hierarchical aggregation inside one table. Consolidation integrates distributed datasets into unified output. Therefore consolidation is a multi-source summarization mechanism, while subtotal is an intra-table grouping computation method.

Q20. Which statement best defines Data Consolidation?

A) Formatting data

B) Summarizing multiple data sources

C) Recording macros

D) Sorting records

🕉️ View Answer & Explanation

✓ Correct: B – Summarizing multiple data sources

📖 Explanation: Data Consolidation is formally defined as the process of combining and summarizing data from multiple worksheets into a single structured output. CBSE descriptions emphasize centralized analysis and statistical aggregation. Logical interpretation: consolidation integrates distributed datasets into a unified computational framework. It transforms fragmented information into coherent summary results. This enables efficient reporting, comparison, and decision-making within spreadsheet-based analytical environments.

happy Important MCQs IT class 10 CBSC 2026 1
Happy
0 %
sad Important MCQs IT class 10 CBSC 2026 1
Sad
0 %
excited Important MCQs IT class 10 CBSC 2026 1
Excited
0 %
sleepy Important MCQs IT class 10 CBSC 2026 1
Sleepy
0 %
angry Important MCQs IT class 10 CBSC 2026 1
Angry
0 %
surprise Important MCQs IT class 10 CBSC 2026 1
Surprise
0 %

Share this content:

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

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

error: Content is protected !!