Scot lilly rpg game Flashcards

1
Q

Is C$ case sensitive?

A

C# is case-sensitive

When you name anything in C# (class, variable, function, etc.), the casing you use is important. “Player” is different from “player” and “PLAYER”.

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

editor

A

An editor is basically a word processor for your program.

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

IS C# is a “high-level” language?

A

C# is a “high-level” language

This means is that C# looks similar to natural English – well, at a certain level.

So it’s much easier to program in a high-level language, and letting the computer compile that into a low-level language wich it understands

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

What is compiling/building?

A

Before a computer can run a C# program, the program needs to be converted into something a computer can read. This is called compiling.

In Visual Studio, you compile your program by either selecting the “Build” menu option or the “Start” menu option (which compiles the program and then runs it).

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

Build

A

Before a computer can run a C# program, the program needs to be converted into something a computer can read. This is called compiling.

Build – This “compiles” your solution – converts it from C# code to code that the computer can understand. This will also tell you if there are any problems in your solution.

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

Start

A

“Start” menu option (which compiles the program and then runs it).

Start – This builds (compiles) your program and runs it – so you can actually use it.

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