L4 Flashcards

1
Q

What is the purpose of the Label control in a Windows Forms application?

A

It displays static text, such as form titles or instructions.

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

Why can’t you directly assign a TextBox value to an integer variable?

A

TextBox values are strings by default, so a conversion is required.

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

How do you correctly convert a TextBox value to an integer?

A

Use int.Parse(txtAge.Text) or Convert.ToInt32(txtAge.Text).

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

What is the correct way to declare an integer variable in C#?

A

int age = 25;

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

How do you display an integer variable in a TextBox?

A

Use txtAge.Text = age.ToString();

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

What is the operator for modulus (remainder) in C#?

A

%

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

What does the && operator do?

A

It checks if multiple conditions are true.

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

What does the ! operator do?

A

It negates a Boolean value, making true false and vice versa.

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

How do you calculate the sum of two numbers from TextBox inputs in a Windows Forms application?

A

float num1 = float.Parse(txtNum1.Text);
float num2 = float.Parse(txtNum2.Text);
float sum = num1 + num2;
lblSum.Text = sum.ToString();

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

What relational operator checks if two values are equal?

A

==

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

What is the output of the following code?

int a = 10, b = 5;
if (a > b) {
Console.WriteLine(“a is greater than b”);
}

A

“a is greater than b”

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

What will this code output?
bool isRainy = true;
bool hasUmbrella = false;
if (isRainy && !hasUmbrella) {
Console.WriteLine(“You will get wet!”);
}

A

“You will get wet!”

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

What is implicit type conversion in C#?

A

Implicit conversion occurs when the compiler automatically converts one type to another, typically from a smaller data type (e.g., int) to a larger one (e.g., long).

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

What is explicit type casting in C#?

A

Explicit casting requires the developer to manually convert one type to another, often resulting in data loss if not done properly (e.g., double to int).

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

How do you concatenate strings in C#?

A

You can concatenate strings using the + operator or the String.Concat() method. For more complex scenarios, StringBuilder can be used.

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

What is the default value for an uninitialized int variable in C#?

A

The default value for an int is 0.

17
Q

What is the C# ternary operator?

A

The ternary operator is a shorthand for an if-else statement and has the form:

condition ? value_if_true : value_if_false;

18
Q

What does the null-coalescing operator ?? do in C#?

A

It returns the left-hand operand if it is not null; otherwise, it returns the right-hand operand. For example:

string name = input ?? “Default Name”;

19
Q

How does the try-catch block work in C#?

A

The try block contains code that might throw an exception, and the catch block handles the exception if it occurs.

20
Q

What is string interpolation in C#?

A

String interpolation allows embedding expressions inside string literals using $. For example:

int age = 25;
string message = $”Your age is {age}”;