Quiznetik

Visual Programming | Set 3

1. Date and Time are internally stores as _______ in Visual Basic.

Correct : B. numbers

2. The ____________ function in VB retrieves the date and time.

Correct : B. now

3. The individual elements of an array are identified using an _______.

Correct : C. index

4. _________ is named storage locations in memory, the value of which does not change during program execution.

Correct : A. Constant

5. Variables of different data types when combined as a single variable to hold several relation informations are called a __________.

Correct : A. user-defined data type

6. When we want to change the size of the array without losing the previous data we have to use _______keyword with the ReDim statement.

Correct : A. preserve

7. A __________ variable is one that is declared inside a procedure.

Correct : D. local

8. A _________ variable is available to all the procedures in the module.

Correct : B. module-level.

9. The _______ displays a list of items from which a user can select one.

Correct : A. listbox

10. _________ is a control used to display message and enter text.

Correct : D. TextBox

11. _______ control executes the timer events at specified intervals of time.

Correct : A. Timer

12. _______ control serves as a visual and functional container for controls.

Correct : B. Frame

13. _______ displays a text that the user cannot modify or interact with.

Correct : B. Combo

14. ComboBox contains a ________ and __________.

Correct : A. textbox, listbox

15. MDI stands for _________.

Correct : A. multiple document interface.

16. A __________ control is used to create applications that present information in rows and columns.

Correct : D. flexgrid

17. _______ method sets the colour of an individual pixel.

Correct : A. PSet

18. ____________ method paints graphics at arbitrary locations.

Correct : B. PaintPicture

19. A __________ array is a group of controls that share the same name and type.

Correct : A. control

20. The ____________ is a commonly used control, which enables the user to select a value by positioning it at the desired location.

Correct : C. scrollbar

21. Tooltips can be added to a button by setting a text to the __________ property of the command button.

Correct : A. tooltip

22. The text color of a command button can be set using the ____________ property.

Correct : B. forecolor

23. A ___________ is a set of menu items on a menu that share the same name and event procedure.

Correct : A. menu control array

24. A ________menu is a floating menu that is displayed over a form independent of the menu bar.

Correct : C. pop-up

25. _________ boxes are used to display information to the user and to prompt the user for the data needed to continue an application.

Correct : D. Dialog

26. A shape control is a visual element that contains several _________shapes.

Correct : B. predefined

27. Child forms are displayed within the _________area of a MDI Form at run time.

Correct : A. internal

28. The _________property of controls collection returns the number of controls on the form.

Correct : B. count

29. A _______control in visual basic is used to create applications that present information in rows and columns.

Correct : A. MSFlexGrid

30. _________ method is used to draw and fill boxes.

Correct : C. Line

31. The ________ and _______ properties specify the current cell in a MSFlexGrid.

Correct : A. row, col

32. A _________ method is used to draw a variety of circular and elliptical shapes.

Correct : C. circle

33. A _________dialog box does not allow the user to continue with other applications unless it is closed or unloaded.

Correct : B. modal

34. The _________ dialog box allows shifting of focus between the dialog box and another form without closing the dialog box.

Correct : C. modeless

35. ________ occurs when the user releases any mouse button.

Correct : B. MouseUp

36. MSDN Stands for ________

Correct : B. microsoft developer network

37. The various properties in property window are arranged in _____ order.

Correct : A. Alphabetical

38. In date data type the _______ byte is require for storing data.

Correct : C. 8

39. The ______ number of characters are allowed for naming the variables.

Correct : B. 255

40. Normally declared in the general section of the codes' windows using the ____statement.

Correct : A. dim

41. _______allows a procedure to be repeated as many times as long as the processor could support

Correct : A. looping

42. ________indicates that the function is applicable to the whole program

Correct : B. public

43. ______ are the operations that an object can perform.

Correct : A. methods

44. Event-driven languages are ____

Correct : D. Designed to make programming GUI easier

45. Which of the following is not part of the IDE _____

Correct : B. General window

46. The application name always appears in the _____

Correct : C. Title bar

47. In visual basic controls are also called as ______

Correct : A. Objects

48. The location of the form on the desktop during execution is determined by the ____

Correct : D. Form Layout window

49. Visual Basic forms are identified by a _____

Correct : A. .frm suffix

50. The _____ control is used for checking the multiple option in given list

Correct : B. check box