Visual-Basic MCQ3
Visual-Basic MCQ3
3. Which windows displays a list of all forms and modules making up your application
a) Project Window b) Properties Window
c) Form Layout Window d) None of the above
5. Which of the following windows is the central to the development of visual basic
applications
a) Project Window b) Form Window c) Properties Window d) None of the above
6. Which of the following provides quick access to commonly used commands in the
programming environment
a) Tool box
b) Object browser
c) Tool bar
d) None of the above
10. A text box can hold as many as characters for a single line text.
a) 2052
b) 2048
c) 2058
d) 2047
11. A text box can hold as many as characters for a multi-line text.
a) 42000
b) 48000
c) 23000
d) 32000
13. property is used to set the maximum length of a text, a text box can hold
a) Max length
b) Length
c) Multiline
d) None of these
14. Control is used to display text, but user cannot change it directly.
a) Text box
b) Label box
c) List box
d) Command button
17. We can preserve the value of a local variable by making the variable
a) Private
b) Public
c) Static
d) Implicit
22. All the following statements are true about variables scope except
a) Module b) Global c) Static d) Local
23. The variables that does not change the value during execution of program is
a) Numeric
b) Constant
c) Sring
d) All of the above
24. What is the output of the following code: mystring = “Hello Chittu” Leftstring
=left(mystring,3)
a) Hel
b) Hello Chittu
c) Chittu
d) Chi
25. is a control related event.
a) Key down b) Load c) Terminate d) Gotfocus
26. When the form is first referenced in any manner by program, the triggered event is
a) Load
b) Initialize
c) Activate
d) None of the above
28. combines the features of the text box and list box.
a) Picture box
b) Check box
c) Option button
d) Combo box
29. property is an integer value corresponding to the position of the scroll box in the
scroll bar.
a) Value
b) Change
c) Visible
d) None of the above
32. A displays a list of items from which user can select one or more items.
a) Combo box
b) List box
c) Check box
d) Scroll bar
33. is a method which moves the focus to the specified control or form
a) Setfocus
b) Gotfocus
c) Lostfocus
d) None of the above
35. Variables are named stored locations in memory, the value of which does not change
during program
a) Debug
b) Design
c) Execution
d) None of the above
40. is a group of controls that share the same name and type.
a) Fixed array
b) Control array
c) Dynamic array
d) Multidimensional array
41. To declare a variable, use the statement followed by the variable's name, the As
keyword, and its type,
a) Dim
b) Dim as
c) integer
d) String
a) Cat
b) Str
c) ^
d) &
45. In Select Case Case is used to define codes that executes, if the expression
does not evaluate to any of the Case statement
a) Default
b) Otherwise
c) Else
d) False
47. Which function returns the system’s current date and time
a) DateTime.Now
b) DateTime.Today
c) DateTime.System
d) DateTime.Current
48. What statement is used to close a loop started with For statement?
a) Close
b) End For
c) Loop
d) Next
a) Add
b) Insert ()
c) Remove At
d) Remove
54. The----------function in String Class will insert a String in a specified index in the String
instance.
a) Length ()
b) Insert ()
c) Length ()
d) Format ()
55. Which of the following when turned on do not allow to use any variable without
proper declaration?
a) Option Restrict
b) Option Explicit
c) Option Implicit
d) Option All
56. Which of the following methods cane be used to add items to an ArrayList class?
a) Insert method
b) Collection method
c) Top method
d) Add method
58. Which of the following does not denote a arithmetic operator allowed in VB.Net?
a) Mod
b) /
c) *
d) ~
59. Which of the following denote the method used for compatible type conversions?
a) Type Cov ()
b) Type ()
c) CTyp ()
d) CType ()
60. Which of the following does not denote a data type in VB.Net?
a) Boolean
b) Float
c) Decimal
d) Byte
64. Do Loop While Statement executes a set of statements and checks the condition, this is
repeated until the condition is true. .It is also known as
a) Exit control
b) Entry control
c) Control
d) Loopback
68.The statement first executex the statemetn and then test the condition after each
execution
a) Do….while
b) While….do
c) Select….case
d) While
69. structure executes the statements until the condition is satisfied
a) Do…loop
b) Do..loop until
c) Do while…loop
d) If….else
81. What property of controls tells the order they receive the focus when the tab key is
pressed during run time?
a) Focus order
b) Focus number
c) Tab index
d) Control order
82. Which of the properties in a control’s list of properties is used to give the control
a meaningful name?
a) Text
b) Context Menu
c) Control Name
d) Name
a) Object
b) Class
c) Forms
d) None of the above
95. Combines the features of the text box and list box
a) Picture box
b) Check box
c) Option button
d) Combo box
96. is a control related event
a) key down
b) load
c) Terminate
d) Got focus
97. A displays a list of items from which user can select one or more items
a) combo box
b) list box
c) check box
d) scroll box
98. is a method which moves the focus to the specified control or form
a) Set focus
b) Got focus
c) Lost focus
d) None of these
1. Portray Client.
Denoting a computer system in which a central server provides data to a number of
networked workstations.
2. Explain the term server.
A server is a network – connected computer system that provides services to network users.
3. Describe the term Downsizing.
Downsizing initiatives focus on the replacement of mainframe systems with most flexible and cost
effective technical platform
4. Explain Upsizing.
Many smaller to midsize firms that have their mission-critical database applications residing on file
server are upsizing to client/server.
5. Discuss the term Tier.
Tiers are the physical platforms on which client and server application layer reside. A first
generation of client/server application utilizes two collaborating computing platforms.
6. Summarize Event Driven programming.
The application developers must decide how the application must react to the each of the user
actions. This is called Event driven programming.
7. Expand IDE.
Integrated Development Environment
8. Describe properties window.
9. Explain the term form layout window.
The term layout window helps to position the forms of an application using a small graphical
representation of the screen. This window is very useful in the application that uses multiple forms.
10. Illustrate immediate window.
The immediate window is debugging aid. While an application is running it can be paused and
immediate window can be used to change the value of the application variable.
11. Depict the term data type.
By default Visual Basic variables are of variant data types. The variant data typecan
store numeric, date/time or string data. ... The fundamental data types in Visual
Basic including variant are integer, long, single, double, string, currency, byte and
boolean.
12. Explain the term function.
A function is similar to a subroutine, but a function returns a result. Functions commonly carry out
calculations and report the result.
13. Explain message box function.
Message box is used to display a message in a dialog box, waits for the user to click a button and
returns a integer indicating which button user clicked.
14. Interpret Controls.
An object placed on the form by using the button in the toolbox.
15. Describe menu bar.
The menu bar contains the commands needed to work with the visual basic 6.0
16. Explain the term Module.
Code that is attached to a form is accessible from anywhere on that form but the program may
have more than one form. It will sometimes necessary to have the program code that can be
reached from any form and in this case the code would be on the module.
17. Discuss about ADO Data Control.
The ADO (Active X Data object) data control is the primary interface between a visual basic
application and a database. It can be used without writing any code at all or it can be a central
part of a complex database management system.
18. Illustrate Report.
A report is an effective way to present data in a printed form.
19. What is the purpose of using Command button?
The purpose of using command button is to carry out a command or action when a user chooses it.
20. Explain toolbar.
Tool bar provide the quick access to commonly used commands in the programming environment.
By default the standard toolbar is displayed when visual basic starts. Additional toolbars for editing,
form design, and debussing can be toggled on or off from the toolbars Command on the view
menu.
21. Describe class module.
Class modules (.cls) are similar to form except they are not visible to the user. The user can use
the class modules to create their own objects that include code for methods and properties that
are associated with the object that they define.
22. Explain List Box.
The List Box represents a Windows control to display a list of items to a user. A user can
select an item from the list. It allows the programmer to add items at design time by using
the properties window or at the runtime.
23. Discuss the types of record set.
There are three types of record set they are table record set, dynaset and snapshots.
24. List the types of Dialog Box.
There are three types of dialog boxes: modeless, modal and system modal.
25. Illustrate MDI form.
The Multiple Document Interface (MDI) was designed to simplify the exchange of
information among documents, all under the same roof. With the main application, you
can maintain multiple open windows, but not multiple copies of the application.
26. Explain single Document Interface.
This is a term which is known as Single Document Interface and is a Graphic User
Interface which is able to show one document at a time on the screen. Any type of
program which does not have the ability to show more than one document is considered
to be and SDI type of user interface.
27. Explain OLTP.
Online OLTP (online transaction processing) is a class of software programs capable of
supporting transaction-oriented applications on the Internet.
28. Illustrate Constants.
Constants are data items whose value cannot be changed. A constant is of numeric or
non-numeric type.
29. Interpret Array.
An array is a set of values, which are termed elements, that are logically related to each
other
30. Illustrate variable.
A variable is a named storage location that can contain a value which can be modified during the
program execution. A variable is a special container used to store numbers and names.
45. Give the main difference between picture and image box control
. picture box:-
Image Box
1) it is not act as container control
2) It is not use of memory to store the picture
3) Editing of picture is not possible in picture box
46. What is the use of check box?
The Check Box control allows the user to set true/false or yes/no type options.
The user can select or deselect it. When a check box is selected it has the value True,
and when it is cleared, it holds the value False.
47. Expand ADODC.
Activex Data Objects Data Control
48. Explain the term operator.
An operator is a symbol that tells the compiler to perform specific mathematical
or logical manipulations. VB.Net is rich in built-in operators and provides following
types of commonly used operators − Arithmetic Operators. Comparison Operators .
Logical/Bitwise Operators.
49. Describe report designer.
Use the report designer to create and modify reports. When the report designer window is
active, visual basic 6.0 displays report control toolbar.
50. Give the uses of option explicit.
Option Explicit statement ensures whether the compiler requires all variables to
be explicitly declared or not before it use in the program. The Option Explicit has two
modes. On and Off mode. If Option Explicit mode in ON, you have to declare all the
variable before you use it in the program .
K3 QUESTIONS