L3 Flashcards

1
Q

What are operators in C#?

A

Operators are special symbols that perform operations on operands, such as integers, real numbers, Boolean values, and objects.

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

What is the result of 10 % 4?

A

2

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

What is the difference between x++ and ++x?

A

x++ increases after, ++x increases before.

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

Which operator is used to check equality?

A

==

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

Which of these will print true?

Console.WriteLine(5 > 3 && 2 < 1);

A

false

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

What is the output of the following?

int x = 14, y = 3;
Console.WriteLine(x / y);

A

4

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

What is the output of the following?

double num1 = 14, num2 = 3;
Console.WriteLine(num1 / num2);

A

4.66667

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

What does x += 5 mean?

A

x = x + 5

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

What does the && operator do?

A

It checks if both conditions are true.

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

What is the output of the following?

int result = 10 + 5 * 2;
Console.WriteLine(result);

A

20

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

What is the output of the following?

int corrected = (10 + 5) * 2;
Console.WriteLine(corrected);

A

30

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

What is implicit conversion in C#?

A

A safe type conversion where no data is lost, e.g., int → long.

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

What is explicit conversion (casting)?

A

A type conversion where data loss is possible, e.g., (int)double.

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

What does the ToString() method do?

A

It converts a number to a string.

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