HTML, CSS, and Bootstrap Flashcards
1
Q
What are the different forms of CSS?
A
- External - In a separate file that is linked.
- Internal - At the top of the document in style tags.
- Inline - as an attribute on the elements themselves.
2
Q
What is DOM?
A
- Document Object Model
- Represents the HTML page structure as nodes and objects. That way, programming
languages can connect to the page.
3
Q
What is Bootstrap?
A
- A front-end, open source toolkit used to speed up development with HTML, CSS, and
JavaScript.
4
Q
What is ASCII?
A
- American Standard Code Information Interchange
- A character encoding standard for electric communication.
5
Q
What is ANSI?
A
- American National Standards Institute.
- Creates standards for the computer industry.
6
Q
What is UTF-8?
A
- Unicode Transformation Format
- 8 means it uses 8-bit blocks to represent a character
7
Q
What tags would you use to create tables?
A
- T - table tag
- Tr - is table row
- Th - is table head
- Td - is table data (column data)
8
Q
What tag would you use to create list?
A
Ordered list - Ol - li Unordered list - Ul - li Description list - Dl - Dt - Dd
9
Q
What tag would you use to create forms?
A
- Form tag creates a form
- Input specifies the different form inputs
- Button or input type=”button” can be used to submit.
10
Q
What is AJAX
A
- Stands for Asynchronous JavaScript and XML.
- A new technique for creating better, faster, and more interactive web applications
using XML, HTML, CSS, and JavaScript.
11
Q
What is OBP?
A
- Represents Object Based Programming.
- Basically, a superset of OOP.
12
Q
What is DOM Manipulation?
A
- The altering of the DOM while the application is running.
- You can use this to add remove and change the way elements are laid out and how they
look on the page.
13
Q
What kind of compiler does JavaScript use/have?
A
- JavaScript is interpreted not compiled
- The script is interpreted by other applications like web-browsers or Node Packet
Manager(npm).
14
Q
What is Prototypical Inheritance?
A
- Each object has a private property which holds a link to another object called its
prototype. - When you construct an object the prototype chain links all the way up to Object, the
parent of everything in JavaScript to build the object.
15
Q
Is JavaScript Pass-By-Value or Pass-By-Reference?
A
- For primitives JavaScript is pass by value.
- JavaScript also uses call by sharing for objects.
- Call by sharing is similar to pass by reference in that the function is able to modify the
same mutable object but unlike pass by reference isn’t able to assign directly over it.