Network
Python
Excel
AI Project Cycle
HTML
100

What type of network is used for short-range communication between devices like headphones?

Bluetooth

100

Is the following variable name valid in Python?
your name

No

100

Which function calculates the total of values?

SUM

100

How many stages are there in the AI project cycle, including deployment?

6

100

Which tag creates a paragraph?

<p>

200

What frequency bands are commonly used by WiFi?

2.4 GHz and 5 GHz

200


Which keyword is used to start a conditional statement in Python?



if

200

What is the difference between MAX and MIN?

MAX gives highest, MIN gives lowest

200

Which stage defines the problem?

Problem Scoping

200

How many heading levels are there in HTML?

6

300

What is the full name of DNS?

Domain Name Server 

300

What is the output? 

text = "hi"

print(text.upper())


HI

300

What does this return? =LEFT("PYTHON", 2)

PY

300

What is the third stage of the AI project cycle?

Data Exploration

300

Which tag is used for the smallest heading?

<h6>

400

What are the three main parts of a URL?

Protocol, domain name, path

400

What is the output? 

for index in range(1,4):

    print(index)

1

2

3

400

What will this formula return?
=IF(A1>50,"Pass","Fail") (A1 = 30)

Fail

400

A student collects images of cats and dogs. Which stage is this?

Data Acquisition

400

Identify the mistake:

<heading1>My Page</heading1>

<h1>My Page</h1>

500

Identify the domain name and path in this URL: https://example.com/folder/page.html

500

What is the output?

for index in range(5):

     print(i)

Error

500

Write a formula to calculate the average of cells A1 to A5.

=AVERAGE(A1:A5)

500

Suggest one way to evaluate if an AI model is performing well.

Test with new data

500

Write HTML code to display “Hello” as a heading.

<h1>Hello</h1>