HTML
CSS
General Coding Questions 1
General Coding Questions 2
100

This tag defines a hyperlink, which is used to link from one page to another.

What is an 'a' tag?

100

This is the meaning of the CSS acronym.

What is Cascading Style Sheet?

100

What does HTML stand for?

What is Hyper Text Markup Language?

100

The rules you need to follow when using a programming language.

What is syntax

200

HTML tag will create the largest heading?

What is <h1>?

200

This is the CSS selector that is used to identify a class.

What is a dot?

200

A visual tool that programmers use to help them plan an algorithm.

What is a flowchart

200

You create a statement block by enclosing the statements in a set of ____.

What is braces (curly braces)

300

What should be the first line of your HTML files?

What is <!DOCTYPE html>?

300

This is the CSS selector that identifies an id.

What is a hash (#)?

300
  • Commonly referred to as a collection of items stored at contiguous memory locations.
  • Items stored are of the same type.

Array

300

The repetition structure is referred to more simply as a ____.

What is a loop

400

This tag defines a division or a section in an HTML document.

What is a 'div' tag?

400

These properties define the space around elements.

What is margin?

400

It is basically a sequence of nodes, each node points towards the next node forming a chain-like structure.

Linked List

400

Assigning a beginning value to a memory location.

What is initializing

500

When you place JavaScript on an HTML page, within which two immediate tags would you place it?

<script> </script>

500

These CSS properties define the space between the element border and the element content.

What is padding?

500
  • Refers to a linear data structure performing operations in a LIFO (Last In First Out) order.
  • Elements can only be accessed, starting from the topmost to the bottom element.

Stack

500
  • Refers to a linear data structure that performs operations in a FIFO order.
  • The least recently added elements are removed first as opposed to a stack. 

Queue

M
e
n
u