Show:
Questions
Responses
Print
HTML
CSS
T-SQL
Potpourri
C#
100
The element that creates a list of items starting with one and moving forward.
What is
?
100
The target of a selector that begins with a #.
What is an ID?
100
The keyword that allows you to filter the results returned from a select statement.
What is where?
100
The T-SQL keyword that sorts a result set returned from a select statement.
What is order by?
100
The scoping keyword which makes a method visible everywhere.
What is public?
200
The container for the page title, links to CSS and page metadata.
What is the element?
200
The pseudo class that matches a hyperlink when the user mouses over the element.
What is :hover?
200
The keyword in T-SQL that removes duplicates from a result set.
What is distinct?
200
The element that appears in the head section to load an external stylesheet.
What is link?
200
The type of looping structure designed to iterate over all items in a collection.
What is a foreach loop?
300
A tag used to display text like JavaScript code but treating it as plain text while preserving whitespace.
What is the
element?
300
The CSS property that could be used to set text to "Times New Roman?"
What is a font-family?
300
The type of join that select matching records from two selected tables.
What is an inner join?
300
The HTML5 element that replaces embed or object for visual content.
What is video?
300
A way of defining a custom type that supports properties, methods and events but not inheritance.
What is a struct?
400
The attribute that allows an ordered list to start at a number greater than 1.
What is start?
400
The selector that can be used to remove the underline below an anchor tag?
What is text-decoration?
400
The DDL keyword that makes a modification to a database object, such as a table or stored procedure.
What is alter?
400
The type of join statement that returns all records from the table following the "from" and only related records from the table following the "join".
What is a left outer join?
400
A collection of method signatures that defines names, parameters and return types but contains no code.
What is an interface?
500
The tag that allows shapes within an image to be clickable regions.
What is an image map or element?
500
The value that along with static, absolute and fixed are possible values for the position property.
What is relative?
500
The keyword that must appear in a T-SQL statement if the select list contains an aggregate function and another column.
What is group by?
500
A JavaScript workaround that helps older browsers recognize the HTML5 semantic elements.
What is a shiv or shim?
500
A reference type that defines the common signature used by events and event handlers.
What is a delegate?