In Visual Basic, you use a(n) ____ to read data from a sequential access file.
A. StreamWriter object
B. OpenText method
C. ReadLine method
D. StreamReader object
Answer: D
You might also like to view...
The following is an example of a(n) ______________: CN=Tim Brown,OU=Inventory,DC=Que,DC=com
a. Absolute path b. Distinguished name c. Relative distinguished name d. Computer name
How many radio buttons can be selected at the same time as the result of the following code?
``` hours = new JRadioButton("Hours"); minutes = new JRadioButton("Minutes"); seconds = new JRadioButton("Seconds"); days = new JRadioButton("Days"); months = new JRadioButton("Months"); years = new JRadioButton("Years"); timeOfDayButtonGroup = new ButtonGroup(); dateButtonGroup = new ButtonGroup(); timeOfDayButtonGroup.add(hours); timeOfDayButtonGroup.add(minutes); timeOfDayButtonGroup.add(seconds); dateButtonGroup.add(days); dateButtonGroup.add(months); dateButtonGroup.add(years); ``` A) 1 B) 2 C) 3 D) 4