Sql
C#
Html
JavaScript
Css
100

A database language with the acronym Sql.

What is Structured Query Language?

100

The following is an example of string interpolation:

Console.WriteLine("Hi, our name is {0}, and we are here to {1} you.", Duplo, destroy);

Bonus available*

What is a false statement?


Bonus:  What is this, and how would you make it string interpolation.  

100

Html stands for this.

What is HyperText Markup Language?

100

This is where we put our JavaScript references in our shared layout. 

Where is the bottom of the page in <script> tags. 

100

CSS stands for this. 

Cascading Style Sheets. 

200

The default setting when using the ORDER BY syntax. 

What is ASC or ascending order?

200

Below are two ways to write the same code:

a.Equals(b) 

 a == b

*Bonus available for a fully defined answer. 

What is a false statement? 

Bonus: 

Define the difference.

The .Equals method is looking for content.

The == compares value identity

200

This allows you to make a bulleted list. 

What is <ul>

200

function myFunction() will create a new function. 

What is a true statement?

200

This thing that Jenna and totally not Jeff came up with, is how you define comments in Css

a slashstrix

/* */

300

This SQL statement will allow you to return the number of records in the "Persons" table?

What is COUNT?

SELECT COUNT(*) FROM Persons

300

This feature of C# prevents the following code from compiling for this reason:

int = "28";

Bonus: This is the correct way to write the code. 

What is because of Type-Safety, you cannot initialize a string value as an Int.  

int = 28;

300

Alt="" is this. 

Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?



300

This is a special text string for describing a search pattern. 

What is Regular Expression or RegEx?

300

CSS uses columns to determine element location.  This is how many columns are on each page and the Syntax for taking up 3 of them with a regular computer screen. 

What is 12 columns and class="col-md-3"?

400

A RIGHT JOIN is a _____.

What is a join that returns all rows from the right table, even if there are no matches in the left table? 

400

This 'special' class represents a group of constants and is not a giant bird with bad hair. 

What is an Enum

400

This syntax lets you open a link in a new tab/browser window.

<a href="url" target="_blank">  

400

This is the correct JavaScript syntax to change the content of the HTML element below.

<p id="demo">This is a demonstration.</p>

What is document.getElementById("demo").innerHTML = "Hello World!";

400

This is how you display a border like this:

The top border = 10 pixels
The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixel?

border-width:10px 1px 5px 20px;

500

  Select ProductName, UnitPrice

    From Products 

    Where UnitPrice = 

  (Select MIN(UnitPrice) From Products) 

The above is an example of this Sql concept.

What is a Simple Subquery?

500

The correct way to create an object called myObj of MyClass. 

MyClass myObj = new myObj();

500

An <iframe> is used for this.

How to display a web page within a web page? 

500

Duuuude, JavaScript totally doesn't care about casing.  It is not case sensitive. 

What is a false statement?

JavaScript may let you get away with a lot, but it cares about the casing. That is its rug. 

500

This is the default value of the position property?

What is static?

M
e
n
u