What does HTML stand for?
Hypertext Markup Language
What does CSS stand for?
Cascading Style Sheets
This keyword is used to declare a variable.
var, let, const
A representation of a type of object. The template that describes the details of an object?
Class/Schema
Anything inside a class is refered to as a ____ of that class.
What is a Member
What are two tags that can be used to create lists?
<ul> and <ol> and <dl>
What property would you change to make a font bold?
font-weight
This control flow statement will iterate a given number of times.
for, while, do while loop
Abstraction, Encapsulation, Inheritance, Polymorphism
What are the pillars of Object Oriented Programming
A way to include or separate defined classes from one part of a program to another. So the same name can be used for two different classes in a program.
What is a Namespace
What tag holds the majority of your code?
<body>
Name the three "elements" that make up a CSS rule?
h1 { color: orange; }Selector, Property, and Value
This function is used to delay execution of a given piece of code (one time).
setTimeout()
A programming language model organized around objects rather than actions.
What is object oriented programming
The ability to reuse a class when defining a new class. Instead of rewriting all of the members, one can bring in members from a base class.
What is Inheritance
What are the 3 ways you can add CSS to a webpage?
<link rel="stylesheet" type="text/css" href="theme.css">
<style type="text/css">
h1 { color: red; }
</style><h1 style="color: red;">My Header</h1>
This is used to permanently store data in a user's browser.
localStorage
A method used to initialize the state of an object. With the rules that its method name should be the same as the class type, and it has no return type.
What is a Constructor
In a method definition, ____, are passed by reference. Whereas in a method call, ____, are passed by value
parameters and arguments
required
Six dimension properties that can be defined on an element
Height, Max-Height, Max-Width, Min-Height, Min-Width, Width
This method will transform a JSON string to a Javascript literal.
JSON.parse()
A feature of Object Oriented Programming that allows for hiding unnecessary details from the user
What is Encapsulation
A contract that defines 'what' members must exist on a class. The class itself and not the contract, must assign value to these members.
What is an Interface