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

A program written in everyday words to understand it more.

A

pseudocode

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

Instructions read by a computer in a linear fashion.

A

sequence structure

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

Instructions read by a computer in a 2-way result fashion.

A

decision structure

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

Instructions read by a computer over and over until the requirement has been met.

A

repetition structure

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

Six Steps

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 placeholder that can be changed.

A

variable

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

Something that stays the same.

A

constant

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

A type of data made for the computer to understand.

A

data type

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

Behaviors of the class - the things it can do.

A

Method

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

Acts like a container to provide a way to group similar classes.

A

Namespace

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

Output from a method - must be the data type of the value returned.

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 piece for every c# application

A

Main Method

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

Holds a data range of 0 to 255

A

Byte

17
Q

Holds a data value of -128 to 127

A

Signed Byte

18
Q

Holds a data value of -32,768 to 32,767

A

Short

19
Q

Holds a data value of 0 to 65535

A

Unsigned Short

20
Q

Holds a data value of -2,147,483,648 to 2,147,483,647

A

int

21
Q

Holds a data value of 0 to 4,294,967,295

A

Unsigned Int

22
Q

Holds a data value of -9 quintillion to 9 quintillion

A

Long

23
Q

Holds a data value of 0 to 18 quintillion

A

Unsigned Long

24
Q

Can store any number from ±1.5 *10⁻⁴⁵ to ±3.4 * 10³⁸ with 7 significant digits

A

Float