What does the acronym for HTML stand for?
What is: Hypertext Markup Language
What are the principles of Object Oriented Programming?
Abstraction
Encapsulation
Inheritance
Polymorphism
What does the acronym CSS stand for?
Cascading Style Sheet
Inside which HTML element do we put the JavaScript?
<script>
Which SQL statement is used to extract data from a database?
SELECT
What is the tag and attribute used for displaying an image
<img> tag and src attribute
What is the short code for outputting System.out.println()
What is: sysout
What is the difference with styling a CSS id and a CSS class? What is the syntax for each.
Styling by an id will only target the specific element with that id. While styling by class will affect each item that share this class.
#id
.class
Does Javascript have typed variables?
No. It is a soft typed language.
What is the acronym for the core functionality that a full stack application must have. What does each letter stand for?
CRUD
Which is the largest heading tag in HTML?
What is: h1
What is the name of the date type that is for flexible sized list of elements of a specified generic. Then write it in proper spelling.
ArrayList
Where in an HTML document is the correct place to refer to an external style sheet?
What is: the <head> tag
What is the way that we target an element by its id?
document.getElementById
Primary Key is a mixture of what two constraints?
NOT NULL AND UNIQUE
What is the difference between the <head> tag and <header> tag
<head> tag is where the metadata of the page is placed.
<header> represents a container for introductory content or a set of navigational links.
Frequency of e = 4
Which HTML attribute is used for inline css
What is : style attribute
Which event occurs when the user clicks on an HTML element?
What is: onClick
Which of the following SQL clauses specifies a search condition?
WHERE
What is the <i> tag for?
The <i> tag defines a part of text in an alternate voice or mood. The content inside is typically displayed in italic.
Anagram
How many ways are there for implementing CSS in a project. Also describe them
There are 3 implementations of CSS
Inline CSS - This is CSS within an html element through its style attribute.
Internal CSS - This is CSS written within the <style> tag
External CSS - This is CSS in another file that is connected through the <head> tag by providing a stylesheet src.
What is the commonly used equivalent of System.print() in Javascript.
What is: console.log
With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?
SELECT * FROM Persons WHERE FirstName LIKE 'a%'