C# Programming Flashcards

1
Q

What is C#?

A

A modern, object-oriented programming language developed by Microsoft

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

What are variables in C#?

A

Variables store data and can hold values like numbers, characters, or objects

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

Name a data type in C# for integers.

A

int

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

What data type is used for floating-point numbers in C#?

A

float

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

What does the ‘bool’ data type represent in C#?

A

Boolean values (true or false)

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

What is the purpose of control structures in C#?

A

To manage the flow of control in a program

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

What is an if-else statement used for?

A

Conditional statements for decision-making

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

What does a for loop do?

A

Repeats a block of code a specific number of times

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

What is a method in C#?

A

A reusable code block used to perform operations or return values

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

Fill in the blank: A method is declared with a return type, method name, and _______.

A

parameters (optional)

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

What are classes in C#?

A

Blueprints for creating objects

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

What are objects in C#?

A

Instances of classes

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

What is encapsulation?

A

Hiding the internal details of an object and exposing only necessary functionality

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

What is inheritance in C#?

A

A mechanism that allows a class to inherit properties and methods from another class

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

What does polymorphism allow in C#?

A

Objects of different classes to be treated as objects of a common base class

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

What is abstraction?

A

Hiding complex implementation details and showing only necessary features

17
Q

What is an interface in C#?

A

A contract that classes must implement, containing only method signatures and properties

18
Q

What is exception handling?

A

A method to handle errors gracefully

19
Q

What are common types of collections in C#?

A
  • Arrays
  • Lists
  • Dictionaries
20
Q

What does LINQ stand for?

A

Language Integrated Query

21
Q

What do delegates in C# represent?

A

Type-safe function pointers allowing methods to be passed as parameters

22
Q

What are events used for in C#?

A

Notifications or changes in state

23
Q

What are generics in C#?

A

A way to write classes, methods, or interfaces that work with any data type while maintaining type safety

24
Q

What is garbage collection in C#?

A

A mechanism to automatically manage memory by cleaning up unused objects

25
Q

What do the async and await keywords do?

A

Help in writing asynchronous code for non-blocking execution