L2 Flashcards

1
Q

What is a variable?

A

A variable is a named memory location that stores a value of a specific type.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which data type is best for storing monetary values?

A

decimal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the default value of a bool variable?

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which data type has the highest precision for real numbers?

A

decimal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Where are value types stored in memory?

A

Stack

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What will be the output of the following code?

int x = 5;
x = x + 3;
Console.WriteLine(x);

A

8

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which data type should you use for storing a person’s weight in kilograms?

A

double

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What will happen in this code?

const int MaxCount = 50;
MaxCount = 100;

A

It will cause an error.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the difference between float, double, and decimal?

A

float is less precise, double is more precise, and decimal is for high precision calculations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the difference between a value type and a reference type?

A

Value types store data directly, and reference types store memory addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly