The ____ of Visual Studio 2010 contains buttons for commands that are frequently used, such as Open Project, Save, Cut, Copy, Paste, and Undo.
A. menu bar
B. Standard toolbar
C. Toolbox
D. Properties window
Answer: B
You might also like to view...
Answer the following statements true (T) or false (F)
1) A loop control variable is a variable whose value controls the data type of the repetition condition. 2) A counting loop is a data input loop that exits on entry of a predetermined value. 3) A sentinel loop is a repetition structure that executes a predetermined number of times and is controlled by a counter. 4)Assuming the following declarations, ``` int data; ifstream infile ("program.txt", ios::in); ``` as long as the extraction operation ``` infile >> data; ``` finds values in program.txt that are the expected data type for data, the value of ``` infile.fail() ``` will be false. 5) The body of a do-while loop is always executed at least one time.
Which of the following is NOT true regarding VBA?
A) Microsoft Office contains a powerful programming language called Visual Basic for Access or more commonly known as VBA. B) The tools for using VBA are installed by default in most instances. C) Many people incorrectly perceive that you need to be a "programmer" in order to use VBA. D) VBA can allow for a wide variety of enhancements to any Microsoft Office application.
The ____________________ function is used to return only a portion of a string.
Fill in the blank(s) with the appropriate word(s).
In C++, every object of a class maintains a hidden pointer to itself, and the name of this pointer is "hidden".
Answer the following statement true (T) or false (F)