C#L11 Flashcards

1
Q

What is a string in C#?

A

A sequence of characters stored in memory.

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

Are strings mutable or immutable in C#?

A

Immutable.

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

How do you escape special characters in a string?

A

Using a backslash (), e.g., " for quotes.

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

How do you find the length of a string?

A

Using .Length property.

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

How do you compare two strings ignoring case?

A

Use StringComparison.CurrentCultureIgnoreCase.

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

What does IndexOf() return if a substring is not found?

A

-1

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

How do you extract part of a string?

A

Using .Substring(startIndex, length).

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

How do you convert a string to uppercase?

A

.ToUpper() method.

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

What method replaces part of a string?

A

.Replace(old, new).

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

How do you split a string into an array?

A

.Split(separator) method.

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

What does .Trim() do?

A

Removes whitespace from the start and end.

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

How do you remove characters from a string?

A

.Remove(startIndex, length).

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

How do you insert a string within another string?

A

.Insert(position, string).

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

What method is used to check if a string starts with a value?

A

.StartsWith(string).

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

What method checks if a string ends with a value?

A

.EndsWith(string).

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