C# Flashcards

1
Q

What is a Algorithm?

A

The order you Solve on Program.

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

What is Date Members?

A

Characteristics of the Class.

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

What is Methods?

A

Behaviors of the Class- the things it can do.

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

What is Class?

A

Entity That is a logical grouping of data and behavior members.

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

What is Namespace?

A

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

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

What is Return Value?

A

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

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

What is Parameter List?

A

Input into a Method- each Parameter must state the data type and name.

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

What is Access Modifiers?

A
  • Pubic - Anyone can see it.

- Private - Can be accessed only by the class it lives in.

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

What is Main Method?

A

Entry point into a C# Application.

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

What is Void?

A

It has NO Output.

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

What is a Byte?

A

It is a small integers, and Reserve 1 byte of memory. (0 to 255)

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

What is a S’Byte?

A

Reserves 1 byte of memory. (-128 to 127)

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

What is a Short?

A

Reserves 2 bytes of memory. (-32,768 to 32,767)

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

What is a U’Short?

A

Reserves 2 byte of memory. (0 to 65,535)

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

What is a int?

A

~-2 Bill. to 2 Bill, (-2,147,483,648 to 2,147,483,647)

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

What is a Long?

A

(-9 Quintill. to 9 Quintill.) (18 {0}).

17
Q

What is a U’Long?

A

(o to 18 Quintill) (18 {0}).