C#L12 Flashcards

1
Q

What is a text file?

A

A human-readable file storing data as text.

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

What is a stream in C#?

A

An ordered sequence of bytes for reading/writing data.

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

What are the two main types of streams?

A

Input stream (reading) and output stream (writing).

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

Name some common stream operations.

A

Open, read, write, seek, close.

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

What namespace contains stream classes in C#?

A

System.IO

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

What is the base class for all streams in .NET?

A

Stream

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

Name two abstract classes used for text streams.

A

TextReader and TextWriter

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

What does ReadLine() do?

A

Reads one line from a text stream.

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

What does ReadToEnd() do?

A

Reads the entire stream as a string.

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

How do you create a StreamReader?

A

StreamReader reader = new StreamReader(“file.txt”);

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

How do you read a text file line by line?

A

Use a loop with ReadLine().

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

What class is used for writing text files?

A

StreamWriter

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

How do you create a StreamWriter?

A

StreamWriter writer = new StreamWriter(“file.txt”);

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

What method writes text with a newline?

A

WriteLine()

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

Why should you close a stream?

A

To release system resources.

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

What is the purpose of Peek() in StreamReader?

A

Checks the next character without moving the cursor.

17
Q

How do you ensure a writer closes automatically?

A

Use using(writer) { … }.

18
Q

Can StreamReader and StreamWriter work with binary files?

A

No, they are for text files only.

19
Q

What is the difference between Write() and WriteLine()?

A

Write() writes text without a newline; WriteLine() adds a newline.

20
Q

What happens if you try to read a closed stream?

A

An exception is thrown.