Use the Print choice on the ____ menu to print the Visual Basic code.

A. File
B. Edit
C. View
D. Tools

Answer: A

Computer Science & Information Technology

You might also like to view...

A(n) ____ is a group of related fields that contain all of the necessary data about a specific person, place, or thing.

A. file B. entity C. record D. field

Computer Science & Information Technology

Identify the compiler errors and state what is wrong with the code.

``` #include using namespace std; class Photo { private: string subject; double amount; //of light in lumens public: Photo(); Void SetLight(double x){amount = x;} } int main() { Photo OneOfMe; OneOfMe.subject = “Meg the cute girl.”; OneOfMe.SetLight(100.0); ```

Computer Science & Information Technology