K
Multiple choices 50/50
(Choose 1 answer)
What does the following code do?
File.WriteAllText(@"C:\DummyFile.txt", "This is dummy text");
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
43 44 45 46 47 48 49 50
A. Creates a new file and writes the text to the DummyFile.txt
B. Create a new file and writes the text to the DummyFile.txt. If the file already exists, then throw an exception.
C. Create a new file and writes the text to the DummyFile.txt. If the file already exists, then overwrite the text to the file.
D. Opens file for reading or writes operation.