Site MapHelpFeedbackTrue or False
True or False
(See related pages)

1
The data files that are presented in Chapter 11, Saving Data in Files, are commonly used to store large amounts of data.
A)True
B)False
2
VbCrLf is a VB intrinsic constant for a carriage return and a line feed.
A)True
B)False
3
A delimited file is a data file that has all of the data stored on one line
A)True
B)False
4
Using a text editor such as Notepad, you can view the contents of a data file with a .txt file extension
A)True
B)False
5
The StreamReader is used to create a data file.
A)True
B)False
6
In order to append data to an existing data file, set the Boolean Append argument of the StreamWriter constructor to True
A)True
B)False
7
If you use the following line of code: Dim TestStreamWriter as New StreamWriter("Test.txt") and the file, Test.txt, already exists, a new file will be created and the existing file will be overwritten.
A)True
B)False
8
A new data file will be created if the filename does not exist when declaring a new StreamWriter object.
A)True
B)False
9
New data will be appended to the existing data file if you are using a StreamWriter that specifies the name of a data file that already exists and the code does not include a value for the Boolean Append argument
A)True
B)False
10
A StreamWriter object can be declared in the Declarations section of a program or in a procedure
A)True
B)False







Bradley:Programming in VB 2008Online Learning Center

Home > Chapter 11 > True or False