Show:
Questions
Responses
Print
T-SQL
Objects
C# Keywords
Potpourri
.NET Concepts
100
The keyword in a query that creates a filter on a result set.
What is where?
100
The process of building one class from the definition of another class.
What is inheritance?
100
The keyword that builds an object and calls its constructor.
What is new?
100
The C# data type that stores true/false values.
What is bool?
100
The process of creating new object from a class.
What is instantiation?
200
The keyword that helps us return a unique list of values in a query.
What is distinct?
200
The characteristics or attributes of an object.
What are properties?
200
The method from system.object that converts a value type's data to text.
What is ToString?
200
The SQL server data type that stores true/false values.
What is bit?
200
.EXE or .DLL files created by compiling C# are called this.
What is an assembly?
300
The specification that allows an auto-increment value on a given column.
What is identity?
300
The object that holds a query in
ADO.NET
.
What is a command?
300
The keyword in an accessor that can create a read-only property.
What is get?
300
The C# keyword that exits a loop or stops processing a switch.
What is break?
300
The logical container for classes that can be referenced with a Using statement.
What is a namespace?
400
The function that can return a default value instead of a null.
What is coalesce?
400
A value type object that does not support inheritance is not built from a class, but rather from this.
What is a struct?
400
The default value for a reference type variable.
What is null?
400
This punctuation character can be used in defining a nullable type or a ternary operator.
What is a question mark?
400
The template you choose in Visual Studio that helps to create the middle tier.
What is a class library?
500
The subcategory of T-SQL statements that include create, alter and drop.
What is DDL?
500
The keyword that means a base class is giving permission for derived classes to override a method.
What is virtual?
500
The keyword that refers to a parent class from within child class code.
What is base?
500
This type in .NET creates function pointers and is necessary to create new events.
What is a delegate?
500
Putting the name of a class in parentheses before an expression is this type of conversion operator.
What is an explicit cast?