Python
Java
CSS
HTML
100

This symbol starts a comment in Python.

What is #?

100

Every Java program starts running from this method.

What is main?

100

This property changes the color of text.

What is color?

100

This acronym stands for HyperText Markup Language.

What is HTML?

200

This function prints text to the screen in Python.

What is print()?

200

This keyword creates a new object from a class.

What is new?

200

To target a single, unique element, you apply a style to this attribute.


What is an ID?

200

This tag defines the main container that holds visible web page content.

What is <body>?

300

This keyword creates a loop that repeats a set number of times.

What is for?

300

What is a user-defined blueprint of a data type, and what are instances of a class with specific data values called

What is Class & Object?

300

This type of selector targets all elements that share a specific attribute value, such as input[type="text"].


What is an attribute selector?

300

This specific declaration must be the very first line of any valid HTML5 document.

What is <!DOCTYPE html>?

400

You use this keyword to store a value, like: ___ x = 5.

What is nothing? (Python needs no keyword — just x = 5)

400

This is the data type for whole numbers in Java.

What is int?

400

This CSS combinator uses the > symbol to target only the direct children of a specified element.

What is a child combinator?

400

This boolean attribute specifies that a video or audio file should automatically start playing as soon as it is ready.

What is autoplay?

500

This data type stores a list of items in order, using square brackets.

What is a list?

500

This OOP concept means a class can inherit from another class.

What is inheritance?

500

These special keywords (like :hover or :nth-child) are used to define a special state of an element.

 What is a pseudo-class? [1, 2, 3, 4]

500

This tag is used specifically to represent a row inside an HTML table.

What is <tr>? [1, 2, 3, 4]