C# Flashcards
A step-by-step solution to a problem
Algorithm
Instructions written in a higher language
Psudocode
Instructions done one after the other in a linear way
Sequence Structure
Instructions done when a certain variable is true
Decision Structure
Instruction done as long as a certain variable is true
Repetition Structure
(1)Analyze problem, (2)Plan Algorithm, (3)Desk-check, (4)Code, (5)Test, (6)Modify
6 Steps in the Problem Solving Process
A changeable value
Variable
An unchangeable value
Constant
What can be stored and how much can be stored in a variable
Data Type
Behaviors of the class
Method
Act like a container to store similar classes
Namespace
Output of a method
Return Value
Container to store similar methods
Class
Public or private access
Access Modifiers
The starting place of every C# application
Main Method