Computational Thinking
Programming
Networks and Digital communication
Managing Data
Computer Systems
100

What is the comparision operator?

equal to =

100

Set name = "Leena"

Set greeting = "Hello " + name

Print greeting

Hello Leena

100

Expand WWW.

World Wide Web

100

Name the three types of data.

categorical, discrete, and continuous data

100

_______ is  the smallest unit of data


A bit

200

Give examples for Arithmetic operators

+,-,/,*

200

If temperature > 30°C

   Display "It's hot! Wear sunglasses."

 Else

   Display "It's cool. Carry a jacket."

Ask:

What happens if the temperature is 35°C?


It's hot! Wear sunglasses.

200

What lets devices connect wirelessly to the network.

Wi-Fi Access Point

200

A formula must start with _____

=

200

Is 500 KB larger than 1 MB? Why or why not?


No. 

1024 KB makes 1 MB.

300

What is selection in an algorithm?

Decision-making using IF/ELSE

300

Set score = 90

If score > 95

   Print “Excellent”

Else If score > 80

   Print “Good Job”

Else

   Print “Keep trying”

What will this print? Why?

"Good Job."

300

What is a router?

A router connects different networks together (like your home network to the internet).

300

Which tool lets you see only the rows that meet a specific condition?


filter

300

Give two examples of  Optical storage devices.

CD,DVD,Blu-ray

400

What is a variable ?

a variable in programming stores information that can change during the program’s execution.

400

Set x = 3

Set y = x + 2

Set x = y

Print x

Predict the output

5

400

--------- is a unique number given to every device on a network.

IP Address

400

Mention the two ways to Add the values at A2, A3, A4 .



1)=A2+A3+A4

2)=SUM(A2:A4).

400

What data does mountain weather station device collect and what action does it perform?

Monitors weather conditions, assessing climate change, and providing data for safety in areas where avalanche, flood, or fire risk is high.

500

What is debugging?

Find and fix errors in a code 

500

 If marks > 40

   Print "You passed!"

 Else If marks > 80

   Print "You scored excellent!"

 Else

   Print "You failed."

What's wrong? How should it be fixed?

It always prints You passed if the marks are more than 40. Never get into excellent.

we can check if marks>80 first, followed by if marks>40 

500

What do you call the process that the data is divided into smaller pieces, transmitted as packets through multiple devices over networks and reassembled at the destination.

Packet switching

500

In SUM(A2:A6), the " : " defines the ____________

Range

500

What are Actuators?

Actuators are devices that do something (move, turn on/off) when they receive a command.

M
e
n
u