Chapter 2 Flashcards

1
Q

What is a namespace?

A

A container that holds classes

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

C# is primarliy organized in what three ways?

A

Namespaces, classes, and methods

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

When a piece of data is written into a program’s code, it’s called a…

A

Literal

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

What is design time?

A

Time during which you build the GUI and write the application’s code

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

The time during which an application is executing is called..

A

Run time

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

A file that contains a program’s code is called..

A

The source code file

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

What are the 2 source code files in C#?

A

Program.cs file and Form1.cs file

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

What does the Program.cs file contain?

A

The applications start up code; executes when the application runs

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

What does the Form1.cs file contain?

A

Code that is associated with the Form1 form that you will normally write code into

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

What characters do code containers use to enclose code?

A

Braces { }

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

What must you do in order for your application to perform any meaningful actions?

A

Write Code

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