ADO.NET
JavaScript
HTML
Databases
The Missing Code
100
The class responsible for defining the server name, database and login information.
What is connection?
100
The object at the top of the DOM that contains an alert method.
What is window?
100
The attribute that defines inline CSS rules and properties for HTML elements.
What is style?
100
A database object that represents an entity, like a customer or company.
What is a table?
100
SELECT * FROM Customers _____ Country = 'Mexico'
What is where?
200
The class that is generated for each table in a typed dataset.
What is a table adapter?
200
The JavaScript object that holds a collection of values in a single variable.
What is Array?
200
The input type that defines a date and time control.
What is datetime?
200
A callable, parameterized unit of T-SQL statements.
What is a stored procedure?
200
var x; var txt=""; var person={fname:"John",lname:"Doe",age:25}; for (x _____ person) { txt=txt + person[x]; }
What is in?
300
The acronym for queries that can be written in C# but ay still get data from SQL Server.
What is LINQ?
300
The option defined in the jQuery AJAX function that runs a function when the data is returned from the requested end point.
What is success?
300
The element that allows content from an external site to be loaded into the body of an HTML page.
What is an iFrame?
300
The specification in SQL Server that auto populates columns with numeric values.
What is identity?
300
// When retrieving an object from session state, cast it as // the appropriate type. ArrayList stockPicks = (_________)Session["StockPicks"];
What is ArrayList?
400
The method of the SqlDataReader class that moves to the first and subsequent available rows.
What is Read?
400
The method that executes a function once, after waiting a specified number of milliseconds.
What is setTimeout?
400
The HTML 5 element that defines sound content embedded in the page.
What is
400
The kind of index created when a primary key is defined on a table.
What is a clustered index?
400
public class Taxi { public bool isInitialized; public _____() { isInitialized = true; } }
What is Taxi?
500
The file extension containing "LINQ to SQL" entity classes that map to objects within a database.
What is dbml?
500
The function that returns the following sibling element of the selected element in jQuery.
What is next?
500
The HTML 5 element that may include description, keywords and author.
What is meta?
500
The type of subquery in which the inner query depends on the outer query for its values.
What is correlated?
500
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","books.xml",false); xmlhttp.send(); xmlDoc=xmlhttp._________________;
What is responseXML?