HTML
JAVA
CSS
Javascript
SQL
100

What does the acronym for HTML stand for?

What is: Hypertext Markup Language

100

What are the principles of Object Oriented Programming?

Abstraction

Encapsulation

Inheritance

Polymorphism

100

What does the acronym CSS stand for? 

Cascading Style Sheet

100

Inside which HTML element do we put the JavaScript?

<script>

100

Which SQL statement is used to extract data from a database?


SELECT

200

What is the tag and attribute used for displaying an image

<img> tag and src attribute

200

What is the short code for outputting System.out.println()

What is: sysout

200

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 

200

Does Javascript have typed variables?

No. It is a soft typed language.

200

What is the acronym for the core functionality that a full stack application must have. What does each letter stand for?

CRUD

300

Which is the largest heading tag in HTML?

What is: h1

300

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

300

Where in an HTML document is the correct place to refer to an external style sheet?

What is: the <head> tag

300

What is the way that we target an element by its id?

document.getElementById

300

Primary Key is a mixture of what two constraints?

NOT NULL AND UNIQUE

400

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.

400

Frequency of e = 4

400

Which HTML attribute is used for inline css

What is : style attribute

400

Which event occurs when the user clicks on an HTML element?


What is: onClick

400

Which of the following SQL clauses specifies a search condition?

WHERE

500

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.

500

Anagram

500

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.

500

What is the commonly used equivalent of System.print() in Javascript.

What is: console.log

500

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%'