Total Pageviews

Thursday, September 10, 2026

💻 COMPUTISM LAB CLASS 8 — COMPLETE SOLUTION

 

💻 COMPUTISM LAB CLASS 8 — COMPLETE SOLUTION

SECTION A — Fill in the Blanks

  1. Scratch was developed by the Lifelong Kindergarten Group at MIT Media Lab, led by Mitchel Resnick.
  2. The X-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 looping statements.
  4. The SUM 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 Windows Server.
  6. A scatter chart displays data points by combining X and Y values into single points.
  7. The if 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 delay.

The questions in this section are given on the examination page.


SECTION B — Multiple Choice Questions

Q.QuestionCorrect Answer
1Effective way to display data in pictorial formb. Chart
2Chart similar to a spider's netb. Radar
3Text concatenation operator in Excela. &
4Error when a number is divided by zerob. #DIV/0!
5Selection statementc. if...else
6OS used in air traffic controlb. Real-time
7CUI-based operating systemb. DOS
8Running several programs simultaneouslyb. Multitasking
9Component showing the actual grapha. Plot area
10INT functionb. Rounds to nearest integer
11Not a control structured. Hardware
12Best chart for trends over timea. Line chart
13Function that rounds a numbera. ROUND
14MOD(10, 3)b. 1
15Axis representing values in a standard column chartb. Value axis
16Example of system softwareb. Windows
17Cell rangeb. A group of contiguous cells
18Loop that checks condition at the endc. do...while loop
19OS between user and hardwareb. Interface / Bridge
20Program for presentationsa. MS PowerPoint

These are based directly on the 20 MCQs published in Section B.

Important calculations

Q14: MOD(10,3)

10 ÷ 3 gives:

  • Quotient = 3
  • Remainder = 1

Therefore:

MOD(10,3) = 1


SECTION C — Assertion-Based MCQs

1.

Assertion: Control statements alter the normal sequential flow of program execution.

Reason: They allow programs to make decisions and repeat blocks of code based on conditions.

Answer: a) Both A and R are true, and R is the correct explanation of A.


2.

Assertion: The condition in an if statement must evaluate to a Boolean value (True or False).

Reason: Program decisions depend entirely on whether the tested condition is true or false.

Answer: a) Both A and R are true, and R is the correct explanation of A.


3.

Assertion: Excel functions are predefined formulas used to perform calculations.

Reason: Users cannot write custom calculations; they must rely entirely on built-in functions.

Answer: b) A is true, but R is false.

Explanation: Excel provides predefined functions, but users can also create their own formulas.


4.

Assertion: An operating system is software that controls overall computer operations and hardware.

Reason: Application software can run independently without any operating system.

Answer: b) A is true, but R is false.

Explanation: Application programs normally depend on an operating system to access hardware and system resources.


5.

Assertion: Charts make it easier to draw comparisons and analyze relationships in data visually.

Reason: Pictorial representation of data is more engaging and easier to interpret than raw numbers.

Answer: a) Both A and R are true, and R is the correct explanation of A.


6.

Assertion: Absolute cell references change when copied to another cell.

Reason: Dollar signs ($) are used to lock row and column coordinates in absolute referencing.

Answer: c) A is false, but R is true.

Example:

$A$1

When copied, the reference remains $A$1.


7.

Assertion: Real-time operating systems guarantee response within a strict time constraint.

Reason: They are utilized in mission-critical environments like medical equipment and industrial robotics.

Here, both statements are true, but the reason gives examples of where RTOS is used rather than directly explaining the definition of a strict time constraint.

Answer: b) Both A and R are true, but unrelated.


8.

Assertion: The legend in a chart helps identify different data series by their colors or patterns.

Reason: Without a legend, users cannot read axis labels or chart titles.

Answer: b) A is true, but R is false.

Explanation: Axis labels and chart titles can still be read without a legend.


9.

Assertion: Looping statements are used to repeat execution of a statement block multiple times.

Reason: For and while loops are classic examples of looping structures in programming.

The reason gives examples of looping structures and supports the assertion.

Answer: a) Both A and R are true, and R is the correct explanation of A.


10.

Assertion: GUI operating systems require users to type text commands for every operation.

Reason: Graphical user interfaces use icons, menus, and windows for easy interaction.

Answer: c) A is false, but R is true.


SECTION D — True or False

No.StatementAnswer
1The condition in an if statement must always return a Boolean value.True
2All conditions in an if...else if...else ladder are checked even if one is already true.False
3Sequential statements involve loops and conditions by default.False
4The chart title indicates the overall purpose of the chart.True
5Gridlines are exclusively used in XY scatter charts and no other chart types.False
6Software and hardware operate completely independently without interaction.False
7The BIOS loads the operating system into the computer's RAM during startup.True
8A single-user multitasking operating system allows more than one user to log in at the same time.False
9The SUM function is used to calculate averages of a given cell range.False
10File management is an essential core function of modern operating systems.True

No comments:

Post a Comment