What type of network is used for short-range communication between devices like headphones?
Bluetooth
Is the following variable name valid in Python?
your name
No
Which function calculates the total of values?
SUM
How many stages are there in the AI project cycle, including deployment?
6
Which tag creates a paragraph?
<p>
What frequency bands are commonly used by WiFi?
2.4 GHz and 5 GHz
Which keyword is used to start a conditional statement in Python?
if
What is the difference between MAX and MIN?
MAX gives highest, MIN gives lowest
Which stage defines the problem?
Problem Scoping
How many heading levels are there in HTML?
6
What is the full name of DNS?
Domain Name Server
What is the output?
text = "hi"
print(text.upper())
HI
What does this return? =LEFT("PYTHON", 2)
PY
What is the third stage of the AI project cycle?
Data Exploration
Which tag is used for the smallest heading?
<h6>
What are the three main parts of a URL?
Protocol, domain name, path
What is the output?
for index in range(1,4):
print(index)
1
2
3
What will this formula return?
=IF(A1>50,"Pass","Fail") (A1 = 30)
Fail
A student collects images of cats and dogs. Which stage is this?
Data Acquisition
Identify the mistake:
<heading1>My Page</heading1>
<h1>My Page</h1>
Identify the domain name and path in this URL: https://example.com/folder/page.html
What is the output?
for index in range(5):
print(i)
Error
Write a formula to calculate the average of cells A1 to A5.
=AVERAGE(A1:A5)
Suggest one way to evaluate if an AI model is performing well.
Test with new data
Write HTML code to display “Hello” as a heading.
<h1>Hello</h1>