Visual Programming Question and Answer


You are here:
Home> DCSA Question and Answer Visual Programming Quiz and Answer

For DCSA



Computer Programming Question and Answer 111

Computer Basic Question and Answer 101

Computer Basic Question and Answer 131

Computer Basic Question and Answer 101

Office Automation Question and Answer 131
Computer Skill Quiz and Answer

MS Word Quiz and Answer

MS Excel Quiz and Answer

MS PowerPoint Quiz and Answer

Adobe Photoshop Quiz and Answer

Adobe Illustrator Quiz and Answer

Logo Design Quiz and Answer
Question 1. Which of the following control is used to present a list or data in a hierarchical node?

a. ListBox Control
b. ComboBox Control
c. TreeView Control
d. CheckBox Control

Answer : c

Question 2. Which of the following is advantages of Visual Programming?

a. Visual development of graphical user interface which are easy to use and easy to learn
b. Visual Programming environment displays a list of available components. The programmer picks up the required component from the list to display it.
c. The programmer can create the user interface visually he can align, move or size of the component as required without having to resort to writing code.
d. All of the above

Answer : d

Question 3. What is the shortcut command to view ToolBox in Visual Studio 2008?

a. SHIFT+ ALT+X
b. CTRL+ALT+X
c. ALT+X
d. CTRL+X

Answer : b

Question 4. If you pause program execution, you are in: ?

a. Design Time Mode
b. Run Time Mode
c. Debug Time Mode
d. All of the above

Answer : c

Question 5. In Which user can interact with to enter or manipulate data?

a. Windows Form Control
b. ComboBox Control
c. Tab Control
d. None of the above

Answer : a

Question 6. To save all the project's file , select_______ ?

a. Save > Solution > Save Files
b. File > Save
c. File > Save All
d. File > Save As...

Answer : c

Question 7. The Form's property specifies the text that is displayed in the Form's title bar.

a. Title
b. Text
c. (Name)
d. Name

Answer : b

Question 8. Property specifies how text is aligned with a Label's boundaries.

a. Alignment
b. Align Text
c. Align
d. TextAlign

Answer : d

Question 9. In which mode, the application is executing?

a. Start
b. Run
c. Break
d. Design

Answer : b

Question 10. A Label control displays the text specified by prorerty

a. Caption
b. Data
c. Text
d. Name

Answer : a

Question 11. A button appears flat if its property is set to Flat.

a. BorderStyle
b. FlatStyle
c. Style
d. BackStyle

Answer : b

Question 12. Which operator returns true or false result ?

a. Comparison Operator
b. Logical Operator
c. Both
d. None

Answer : a

Question 13. Which property sets a CheckBox's label?

a. Text
b. Value
c. Label
d. Checked

Answer : a

Question 14. Which property specifies whether a CheckBox is selected?

a. Selected
b. Checked
c. Clicked
d. Check

Answer : b

Question 15. How many CheckBoxes in a GUI can be selected at once?

a. 0
b. 1
c. 4
d. any number

Answer : d

Question 16. The text that appears alongside a CheckBox is referred to as the_____?

a. CheckBox label
b. CheckBox name
c. CheckBox value
d. CheckBox data

Answer : a

Question 17. A CheckBox is selected when its Checked property is set to________

a. On
b. True
c. Selected
d. Checked

Answer : b

Question 18. The ComboBox at the top of the Properties Window is the

a. component object box
b. control box
c. control object box
d. component box

Answer : c

Question 19. User can enter a value or a message in the form of text in

a. A InputBox() function
b. MessageBox() function
c. Both
d. None

Answer : a

Question 20. The first argument pass to method MessageBox.Show is______?

a. the text displayed in the dialog's title bar
b. a constant representing the Button displayed in the dialog
c. the text displayed inside the dialog
d. a constant representing the icon that appears in the dialog

Answer : c

Question 21. You can specify the Button(s) and icon to be displayed in a message dialog by using the MessageBoxButtons and_______constant

a. MessageIcon
b. MessageBoxImages
c. MessageBoxPicture
d. MessageBoxIcon

Answer : d

Question 22. Which of the following function returns an integer value which is the length of a phrase or a sentence?

a. len function
b. trim function
c. rtrim function
d. mid function

Answer : a