C# Overview Flashcards

0
Q

C# is not case sensitive

A

Incorrect…C# is case sensitive

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

What is “ ; “ used for?

A

It is used to end a sentence

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

What do curly brackets do (e.g. { } [ ])?

A

***Create a box defined as a scope

…group statements and declare and assign value

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

What is type-safe and why do I care?

A

***CHRIS?

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

C# is what type of code?

A

MANAGED code

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

IDE?

A

Integrated Development Environment

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

3 Most Common Types of .Net Apps

A
Windows apps
Web apps
Web services (specialized area)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What app can be used for file management?

A

Visual Studio

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

What is a SOLUTION in VS?

A

A SOLUTION is a collection or portfolio of projects

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

What should you be cautious of when naming files and folders in VS?

A

Spaces

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

What is Intelli-sense or intelligent code sense?

A

It speeds up coding thru auto-completion pop ups when typing

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

What does Ctrl+F5 do?

A

***It saves, compiles, and runs code

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

What are the key parts of .Net architecture?

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

Create a simple .Net console app in VS

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

Define the fundamental data types in .Net apps

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

Demonstrate the ability to declare and assign a variable using C#

A
16
Q

Identify and explain how to use operators in a .Net app

A
17
Q

Determine the appropriate control structure to use in a given scenario

A
18
Q

Create classes and objects with C# and understand the benefits of using OOP language

A
19
Q

Explain the difference between inheritance and containment and illustrate why each are important in class library

A