concepts and fundamentals Flashcards

1
Q

What is an algorithm?

A

A step-by-step process to solve a problem.

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

What is the purpose of the Main() method in C#?

A

It is the entry point where execution begins.

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

What are the common C# data types?

A

int, double, float, char, string, bool, decimal.

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

What is the difference between float, double, and decimal?

A

float and double store approximations; decimal is more precise for financial calculations.

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

What is the difference between == and Equals() in C#?

A

== compares values; Equals() checks object equality.

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

What is type casting in C#?

A

Converting one data type to another (implicit or explicit).

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

What are if, else, and switch statements used for?

A

Conditional logic execution.

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

What is a for loop used for?

A

Iterating a block of code a fixed number of times.

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

What is the difference between while and do-while loops?

A

while checks the condition first; do-while executes at least once.

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

What is an array in C#?

A

A collection of elements of the same type, accessed via an index.

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

How do you declare and initialize an array in C#?

A

int[] numbers = { 1, 2, 3, 4, 5 };

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

What is a method in C#?

A

A reusable block of code that performs a specific task.

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

What is method overloading?

A

Defining multiple methods with the same name but different parameters.

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

What is exception handling in C#?

A

Using try-catch-finally to handle runtime errors.

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

What is a List<T> in C#?</T>

A

A dynamic collection of elements that can grow and shrink.

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

How do you declare a List<T> in C#?</T>

A

List<int> numbers = new List<int> { 1, 2, 3 };</int></int>

17
Q

What is file handling in C#?

A

Reading and writing data to files using StreamReader and StreamWriter.

18
Q

What is the purpose of the StringBuilder class?

A

To efficiently manipulate strings without creating multiple immutable objects.

19
Q

What does string.Split() do in C#?

A

Splits a string into an array based on a delimiter.

20
Q

How do you read all lines from a text file in C#?

A

string[] lines = File.ReadAllLines(“file.txt”);