Chapter 2 Definitions

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

Variables

A reserved space in memory used to store a value of some type

2
New cards

Memory Allocation

Each type declaration gives C# precise instructions for memory allocation. No guesswork needed - just clean, efficient storage.

3
New cards

Type Safety

The guarantee that operations will behave consistently based on their types, preventing unexpected bugs and crashes.

4
New cards

Program State

The set of bindings at a given point of execution.

5
New cards

Program Scope

Holds boundaries of code, with a defined start and end, where any new entries to the programs state are cleared once execution crosses the end.

6
New cards

Expression

A set of operators and/or entities which combine to evaluate to a single value.

7
New cards

Assignment

Before we assign or bind a value to a variable, the expression is fully evaluated.