C# Flashcards

1
Q

A step-by-step solution to a problem

A

Algorithm

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

Instructions written in a higher language

A

Psudocode

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

Instructions done one after the other in a linear way

A

Sequence Structure

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

Instructions done when a certain variable is true

A

Decision Structure

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

Instruction done as long as a certain variable is true

A

Repetition Structure

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

(1)Analyze problem, (2)Plan Algorithm, (3)Desk-check, (4)Code, (5)Test, (6)Modify

A

6 Steps in the Problem Solving Process

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

A changeable value

A

Variable

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

An unchangeable value

A

Constant

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

What can be stored and how much can be stored in a variable

A

Data Type

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

Behaviors of the class

A

Method

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

Act like a container to store similar classes

A

Namespace

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

Output of a method

A

Return Value

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

Container to store similar methods

A

Class

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

Public or private access

A

Access Modifiers

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

The starting place of every C# application

A

Main Method

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

Stores 0 - 255

A

Byte

17
Q

Stores -128 - 127

A

Signed Byte

18
Q

Stores -32,768 - 32,767

A

Short

19
Q

Stores 0 - 65,535

A

Unsigned Short

20
Q

Stores -2,147,483,648 - 2,147,483,647

A

Int

21
Q

Stores 0 - 4,294,967,295

A

Unsigned Int

22
Q

Stores -9 Quintillion - 9 Quintillion

A

Long

23
Q

Stores 0 - 18 Quintillion

A

Unsigned Long

24
Q

Stores - or + 1.5 x 10^-45 to - or + 3.4 x 10^38

A

Float