What is HTML?
Hyper Text Markup Language, used to define how a web page is laid out using tags.
What is CSS?
Cascading Style Sheet which defines how elements will look on the web page.
How can CSS be applied?
What is iFrame?
What is DOM?
Document Object Model, represents the html page structure as nodes and objects.
What is Bootstrap?
A front-end, open source toolkit used to speed up development with HTML, CSS, and JavaScript.
Built for mobile first web-development using a grid system.
What are Meta Tags?
What is ASCII?
- A character encoding standard for electric communication.
What is UTF-8?
What tag would you use to create tables?
What are the types of lists?
What does attribute “required” do?
Used on input to specify that it must be filled out for the form to submit.
What does attribute ‘target=”_blank”’ do?
JavaScript and AJAX
Is JavaScript loosely typed or strict typed?
JavaScript is loosely typed you don’t declare the data types of variables explicitly.
Is JavaScript case-sensitive?
Yes
What is Prototypical Inheritance?
Is JavaScript Pass-By-Value or Pass-By-Reference?
What is Type Coercion?
What are the variable scopes in JavaScript?
Global and local scope
What are functions in JavaScript?
What are the types of functions?
What is an anonymous function?
What is a self-invoking function?