Download VB Chapter 3 Quiz

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Dynamic-link library wikipedia , lookup

Transcript
VB Chapter 3 Quiz
True/False - Indicate whether the statement is true or false.
____
1. The first three steps in the problem-solving process are to analyze the problem, plan the algorithm, and then
desk-check the algorithm.
____
2. Included in Visual Studio 2010 are the Visual Basic, Visual C++, and Visual C# programming languages.
____
3. Using languages to code your algorithms into programs is the fourth step in the problem-solving process.
____
4. A Windows application has a Windows user interface and runs on a desktop computer.
____
5. Most solutions in Visual Basic contain several projects.
____
6. A file is a container, but it stores only the projects associated with that particular file.
____
7. In most cases, you will find it easier to work in an IDE if you either close or auto-hide the windows you are
not currently using.
____
8. The Auto Hide button is a toggle button: clicking it twice activates it, and clicking it again deactivates it.
____
9. You create a user interface by adding objects (such as buttons, check boxes, and list boxes) to the form.
____ 10. The objects added to a form are called events.
____ 11. In a form, the blue lines are called margin lines, because their size is determined by the contents of the
control’s Margin property.
____ 12. It is a good practice to save the current solution every 10 or 15 minutes so that you will not lose a lot of your
work if the computer loses power.
____ 13. In a form, the easiest and best way to change the font is to change the Font property for each control
individually.
____ 14. For applications created for the Windows 7 or Windows Vista environment, Microsoft recommends that you
use the Segoe UI font, because it offers improved readability.
____ 15. A label control’s Display property specifies the text displayed inside the control.
____ 16. A label control’s Location property controls the location of the upper-right corner of the control on the form.
____ 17. To include an image file within a project itself, the Project resource file radio button must be selected in the
Select Resource dialog box.
____ 18. The easiest way to make two picture boxes the same size is to use the Size menu, which provides several
options for manipulating the controls in the interface.
____ 19. The last control you select should always be the one whose size and/or location you want to match.
____ 20. The Format menu has a Center in Form option that centers one or more controls either horizontally or
vertically on the form.
____ 21. Locking the controls on a form prevents them from being moved inadvertently as you work in the IDE.
____ 22. The Lock Controls option on both the context menu and the Format menu is a toggle option.
____ 23. You can start an application by pressing the F12 key on your keyboard.
____ 24. When you close a solution, only the files contained in that solution are closed.
____ 25. If a solution is already open in the IDE, it is closed before another solution is opened.