C# Flashcards
A process of sets and rules to construct a program
Algorithm
A notation resembling a simplified programming language.
pseudocode
Alerts computer that a decision needs to be made and provides appropriate actions to take based on the result of that decision.
Decision Structure
Directs the computer to process the program instructions one after another, in the order listed.
Sequence Structure
Indicates that one or more instructions need to be repeated until condition is met
Repetition Structure
A named location in computer memory that can hold different values at different points in time
Variable
A named location in computer memory that cannot be changed after a program is compiled
Constant
Describes the format and size of amount of memory occupied by a data item constant or variable
Data Type
Characteristics of the class (variables and constants)
Data Members
Analyze the problem, Plan the algorithm, desk check, Code into the program, Test Program,
6 steps in the problem Solving process
behaviors of the class- the things it can do
Methods
Entity that is a logical grouping of data and behavior members
Class
Acts like a container to provide a way to group similar classes
Namespace
Output from a method must be the data type of the value returned.
Return Value
Input into a method each parameter must state the data type and name
Parameter List