C# Flashcards
What is a Algorithm?
The order you Solve on Program.
What is Date Members?
Characteristics of the Class.
What is Methods?
Behaviors of the Class- the things it can do.
What is Class?
Entity That is a logical grouping of data and behavior members.
What is Namespace?
Acts like a Container to provide a way to group similar classes.
What is Return Value?
Output from a Method must be the data type of the value returned.
What is Parameter List?
Input into a Method- each Parameter must state the data type and name.
What is Access Modifiers?
- Pubic - Anyone can see it.
- Private - Can be accessed only by the class it lives in.
What is Main Method?
Entry point into a C# Application.
What is Void?
It has NO Output.
What is a Byte?
It is a small integers, and Reserve 1 byte of memory. (0 to 255)
What is a S’Byte?
Reserves 1 byte of memory. (-128 to 127)
What is a Short?
Reserves 2 bytes of memory. (-32,768 to 32,767)
What is a U’Short?
Reserves 2 byte of memory. (0 to 65,535)
What is a int?
~-2 Bill. to 2 Bill, (-2,147,483,648 to 2,147,483,647)