C# Flashcards
What is a statically typed language?
Static typing is where the type is bound to the variable. Types are checked at compile time. C# and Java are statically typed languages.
What is a dynamically typed language?
Dynamic typing where the type is bound to the value. Types are checked at run time. PHP and JavaScript are dynamically typed languages.
What is a strongly typed language?
Strongly typed languages will not allow automatic conversion from one type to another. It does not allow for type coercion. Python is a strongle typed language.
What is a weakly typed language?
Weakly typed languages do allow for automatic conversion from one type to another. It allows for type coercion. JavaScript is a weakly typed language.
What does type safe mean?
Type safety is the idea that you can only interact with an object in ways that are allowed by that object. For example, C# prevents you from interacting with a string type as if it were an integer type.
What does memory safe mean?
Memory safety is a property of programming languages where all memory access is well defined. Most programming languages in use today are memory safe because they use some form of garbage collection.
What is a value type?
A value type is the actual value. If it is declared within the body of a method then it is placed on the stack. If a value type is declared inside a reference type then is will be placed within the reference type on the heap.
What is a reference type?
A reference type’s value is stored in the Heap. It is accessed by a pointer. The pointer is stored in the Stack which points to an address in the Heap where the real value is stored.
In memory what is the Stack?
The Stack keeps track of what’s executing in the code. It is self maintaining and takes care of its own memory management.
In memory what is the Heap?
The Heap’s purpose is to hold data, so anything in the the Heap can be accessed at any time. The heap contains Reference Type values. It is garbage collected.
What is a namespace?
A namespace is a way to logically arrange classes, interfaces, structs, etc. into their own named space. It’s used to provide context for the compiler for all named information in the program.
What is a using statement?
It explicitly tells the compiler that you’ll be using a certain namespace in the program. A developer can avoid having to fully qualify classes with the namespace in every instance of typing it.
What is an access modifier?
They are keywords that define the accessibility of a member, class or datatype in a program. It can restrict unwanted access by external programs or classes.
What is the default access modifier for a class?
internal
What is the default access modifier for a type member?
private
What is the internal access modifier?
The type of member can only be accessed by code in the same assembly.
What is the private access modifier?
The type or member can only be accessed by code in the same class or struct.
What is the protected access modifier?
The type or member can only be accessed by code in the same class, or in a class that is derived from that class.
What is the public access modifier?
The type or member can be access by any other code in the same assembly or another assembly that references it.
What is the protected internal access modifier?
The type or member can be accessed by any code in the same assembly or from within a derived class in another assembly.
What is the private protected access modifier?
The type or member can only be accessed with its declaring assembly by code in the same class or in a type that is derived from that class.
What is a statement?
Statements are written using C# Keywords and Expressions. They end in a semicolon or curly braces.
What is an expression?
Expressions are constructed using operators and operands. They usually result in a value.
What is the Common Language Runtime (CLR)?
The execution engine is called the Common Language Runtime. It consists of the Just-In-Time compiler, Runtime Type Safety, and Garbage Collection
What is the .NET Base Class Libraries (BCL)?
It is part of the .NET Framework that provides library support to the CLR to work properly.
What is Common Intermediate Language (CIL)?
C# is compiled into CIL using the Roslyn compiler. The dotnet build command uses MSBuild. MDBuild uses the Roslyn compiler. CIL is the Assembly. This could be a DLL or EXE file.
What is Just-In-Time compiler (JIT)?
The JIT compiles the CIL into machine code, as needed. The machine code is then executed by the CPU.
What are the Integer Types in C#?
Integer types are value types.
Signed: sbyte, short, int, long
Unsigned: byte, ushort, uint, ulong
What are the Decimal Types in C#?
Decimal types are value types.
floating decimal point: float, double
fixed decimal point: decimal
What are the other Value Types in C#?
enum
char
bool
struct
What are the Reference Types in C#?
String
Arrays
Class
Delegates
What is immutable in C#?
Strings are immutable. If changes are made to a string object then the old instance will be discarded and a new instance will be created in to hold the new value.
What happens when you pass a value type into a method?
A new copy of the variable will be created for the method. If the value is changed in the method, it will not affect the variable value.
What happens when you pass a reference type into a method?
A new copy will not be created, instead a copy of the address in memory will be passed into the method. Changes to the passed in object will change the original object.
What is Boxing in C#?
It is used to store value types on the garbage collected heap. It is an implicit conversion of a value type or to any interface type implemented by this value type.
What is Unboxing in C#?
It is an explicit conversion from the type object to a value type.