What is an assignment operation?
An assignment operator sets the value of a variable, constant, or other item in the code behind of a Page class.
The assignment statement is so fundamental to computer programming that every procedural/imperative programming language requires such a statement—regardless of its syntax.
Name the two important types used within the .NET Framework.
What is the difference between value type, and reference type variables?
A variable of value type contains an instance of the type and has a set memory size.
A reference type contains a pointer (or a reference) to an instance of a type which does not have an allocated memory.
Name the 2 sizes (in bits) of unicode characters?
Variable Declarations Summary
-
Constant Declarations Summary
Assignment Operators Summary
What is the difference between simple and compound assignment operators?
Simple assignment operators store a value (X = Y) whereas compound assignment operators store a value before/after performing some calculation on the value.
(X += Y Equivalent to X = X + Y)
Ennumeration Summary
What is an enumeration?
An ennumeration is a set of constants of a specific type.
They provide a way to declare and use a set of relatable constants that can be assignmed to a variable in the code behind.
Exception Handling Summary
Exception Class Summary
-
Conversion Operations Summary
Control Operations Summary
String Operations Summary
What is an escape character?
An escape character is a character that changes the meaning of the character (or characters) that follow it within a string.
What is a verbatim literal?
Verbatim literals in C# can be used to write out a string “word for word”. They (almost) negate the need for escape sequences.
What is an array?
An array is a container that holds data while it is being manipulated by a computer program.
It is a data structure that consists of a collection of elements of the same type, where each element contains its own value and is identified by one or more indices.
What is a stack?
A stack is a one-dimensional last-in-first-out (LIFO) data structure that contains zero or more objects.
Operations on the stack can only occur at the top of the stack.
What is a queue?
A queue is a one dimensional first-in-first-out (FIFO) data structure that contains zero or more objects.
Operations on a queue can only occur at the beggninig of a queue. (the object that joined the queue first)
Collection Operations Summary
File System Operations Summary
Class Design Summary