L2 Flashcards
What is a variable?
A variable is a named memory location that stores a value of a specific type.
Which data type is best for storing monetary values?
decimal
What is the default value of a bool variable?
false
Which data type has the highest precision for real numbers?
decimal
Where are value types stored in memory?
Stack
What will be the output of the following code?
int x = 5;
x = x + 3;
Console.WriteLine(x);
8
Which data type should you use for storing a person’s weight in kilograms?
double
What will happen in this code?
const int MaxCount = 50;
MaxCount = 100;
It will cause an error.
What is the difference between float, double, and decimal?
float is less precise, double is more precise, and decimal is for high precision calculations.
What is the difference between a value type and a reference type?
Value types store data directly, and reference types store memory addresses.