.Net Overview Flashcards

Learn C# terminology

0
Q

How do you find .Net?

A

.Net is built into the Windows O/S

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

What is .Net?

A

A framework used to write applications; like a mini O/S on top of Windows

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

Can apps be written on A Mac?

A

No. Apps must be written on a Windows O/S…which has the .Net framework built-in.

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

Who built .Net and when?

A

Microsoft built .Net in 2002

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

Why was .Net built?

A
  1. To manage code…or do garbage collection
  2. Multi-language support
  3. ???
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the file extension for a C# file?

A

.cs

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

What is the file extension for a Visual Basic file?

A

.vb

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

What is a program compiled into?

A

CIL

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

CIL?

A

Common Intermediate Language

a.k.a. MSIL Microsoft Intermediate Language

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

What was CIL originally named, but didn’t stick?

A

MSIL Microsoft Intermediate Language

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

What does CIL do?

A

Create .exe files along with .dll files

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

DLL?

A

Dynamic Link Library

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

What is a dll file?

A

***a library of code used across multiple programs. I.e. Windows Office menus

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

JIT?

A

Just in Time compiler

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

What does the JIT do?

A

Compiles code or builds code into CLR

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

CLR?

A

Common Language Runtime

16
Q

FCL?

A

Framework Class Library

17
Q

What is FCL?

A

A library of 7,000+ sections code; write 1 line of code to use 100s of lines of code

18
Q

OOP?

A

Object Oriented Programming

19
Q

What is OOP?

A

the use of many more modules of code….it allows you to re-use code

20
Q

What is a benefit of OOP?

A

***It allows you to re-use code

21
Q

What has built-in security?

A

***OOP or .Net???