This type of attack involves guessing many password combinations rapidly.
What is a brute force attack?
This tag defines the largest heading on a webpage.
What is <h1>?
This property changes the background color of an element.
What is background-color?
This method is used to select an element by its ID.
What is getElementById()?
This data type is used to store a sequence of values in order.
What is a list?
A secure website URL usually begins with this protocol instead of HTTP. This attribute in an <img> tag specifies the image source.
What is HTTPS?
This attribute in an <img> tag specifies the image source.
What is src?
This CSS selector targets all elements of a specific tag type (like all <p> tags).
What is an element selector?
This keyword refers to the current object in JavaScript.
What is this?
This keyword is used to define a function in Python.
What is def?
This term refers to encrypting data so only authorized users can read it.
What is encryption?
This tag is used to create a numbered (ordered) list.
What is <ol>?
This layout system uses rows and columns to organize content.
What is CSS Grid?
This function runs after a specified delay in milliseconds.
What is setTimeout()?
This loop is commonly used to iterate over a list or range.
What is a for loop?
This kind of software secretly records keystrokes on your computer.
What is a keylogger?
This tag is used to group elements together for styling or scripting.
What is <div>?
This property controls how bold or thick text appears.
What is font-weight?
This structure allows code to run only if a condition is true.
What is an if statement?
This data type stores key-value pairs.
What is a dictionary?
This principle means giving users only the access they absolutely need. This part of an HTML document typically contains metadata and links to CSS files.
What is the principle of least privilege?
This part of an HTML document typically contains metadata and links to CSS files.
What is <head>?
This positioning value removes an element from normal flow and positions it relative to the nearest positioned ancestor.
What is position: absolute?
This JavaScript feature allows you to store multiple values in a single variable using indexes.
What is an array?
This built-in function returns the number of items in a list.
What is len()?