A database language with the acronym Sql.
What is Structured Query Language?
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.
Html stands for this.
What is HyperText Markup Language?
This is where we put our JavaScript references in our shared layout.
Where is the bottom of the page in <script> tags.
CSS stands for this.
Cascading Style Sheets.
The default setting when using the ORDER BY syntax.
What is ASC or ascending order?
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
This allows you to make a bulleted list.
What is <ul>
function myFunction() will create a new function.
What is a true statement?
This thing that Jenna and totally not Jeff came up with, is how you define comments in Css
a slashstrix
/* */
This SQL statement will allow you to return the number of records in the "Persons" table?
What is COUNT?
SELECT COUNT(*) FROM Persons
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;
Alt="" is this.
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
This is a special text string for describing a search pattern.
What is Regular Expression or RegEx?
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"?
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?
This 'special' class represents a group of constants and is not a giant bird with bad hair.
What is an Enum
This syntax lets you open a link in a new tab/browser window.
<a href="url" target="_blank">
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!";
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;
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?
The correct way to create an object called myObj of MyClass.
MyClass myObj = new myObj();
An <iframe> is used for this.
How to display a web page within a web page?
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.
This is the default value of the position property?
What is static?