Answer the following statements true (T) or false (F)

1. Visual Basic views every file simply as a sequential stream of bytes.
2. The Using statement indicates that you’re using classes from a particular namespace.
3.. Namespace System must be imported into a program to use the classes in that namespace.
4. StreamReader property EndOfStream returns True if the end of the file has been reached.
5. The optional Finally block—if present—executes only when an exception occurs in the corresponding Try block.
6. Local variables in a Try block cannot be accessed in the corresponding Finally block.





1. True.
2. False. An Imports statement indicates that you’re using classes from a particular namespace
3. False. Namespace System is imported by default into every program.
4. True
5. False. The optional Finally block—if present—is guaranteed to execute regardless of whether the Try block executes successfully or an exception occurs.
6. True

Computer Science & Information Technology

You might also like to view...

List and define the areas for which DiD calls for maintenance.

What will be an ideal response?

Computer Science & Information Technology

The bulk transfer of data in batches to an off-site facility is called ____.

A. electronic vaulting B. server clustering C. bare metal recovery D. remote journaling

Computer Science & Information Technology

In Excel, a Marked as Final document will display ________ in the title bar

Fill in the blank(s) with correct word

Computer Science & Information Technology

What kind of traversal does the following algorithm describe?Algorithm traversal (root)   if (root is not null)      traversal (leftSubTree)      process (root)      traversal (rightSubTree)   end ifend traversal

A. breadth first B. preorder C. postorder D. inorder

Computer Science & Information Technology