This symbol starts a comment in Python.
What is #?
Every Java program starts running from this method.
What is main?
This property changes the color of text.
What is color?
This acronym stands for HyperText Markup Language.
What is HTML?
This function prints text to the screen in Python.
What is print()?
This keyword creates a new object from a class.
What is new?
To target a single, unique element, you apply a style to this attribute.
What is an ID?
This tag defines the main container that holds visible web page content.
What is <body>?
This keyword creates a loop that repeats a set number of times.
What is for?
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?
This type of selector targets all elements that share a specific attribute value, such as input[type="text"].
What is an attribute selector?
This specific declaration must be the very first line of any valid HTML5 document.
What is <!DOCTYPE html>?
You use this keyword to store a value, like: ___ x = 5.
What is nothing? (Python needs no keyword — just x = 5)
This is the data type for whole numbers in Java.
What is int?
This CSS combinator uses the > symbol to target only the direct children of a specified element.
What is a child combinator?
This boolean attribute specifies that a video or audio file should automatically start playing as soon as it is ready.
What is autoplay?
This data type stores a list of items in order, using square brackets.
What is a list?
This OOP concept means a class can inherit from another class.
What is inheritance?
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]
This tag is used specifically to represent a row inside an HTML table.
What is <tr>? [1, 2, 3, 4]