MCQ On
MCQ On
6. _________ are interactive objects that you place in dialog boxes or other
windows to carry out user actions.
A. Controls
B. Objects
C. Classes
D. Forms
7. The _______________ class provides static methods to start, stop, or
filter Windows messages in an application.
A. Forms
B. Windows
C. Application
D. Control
8. The ___________is a systematic class framework used for the
development of system tools and utilities.
A. .Net Framework Class Library (FCL)
B. .Net tools
C. Visual Basic 2005
D. Visual Basic 6
9. The ______________ method converts the value of this instance to a
double representing the OLE automation date.
A. From OA Date
B.TO OA Date
C. Today
D. Now
10. The _________________ enable us to pass data between a program
and a class.
A. Functions
B. Properties
C. Procedures
D. Variables
Sr. no
Que1Which language is not a true object-oriented programming language?
(a.) VB.NET
(b.) VB 6
(c.) C++
(d.) JAVA
2A GUI
(a.) uses buttons, menus, and icons.
(b.) should be easy for a user to manipulate.
(c.) stands for Graphic Use Interaction.
(d.) Both a and b.
3Visual Studio .NET provides which feature:
(a.) debugging
(b.) application deployment
(c.) syntax checking
(d.) All of the above
4What does IDE stand for?
(a.) Integrated Development Environment
(b.) Integrated Design Environment
(c.) Interior Development Environment
(d.) Interior Design Environment
5Which type of project can a developer choose in the New Project dialog box?
(a.) Visual Basic Projects
(b.) Visual C# Projects
(c.) Visual C++ Projects
(d.) All of the above.
6Which is not a main component of the Visual Studio IDE?
(a.) Solution Explorer
(b.) Tool box
(c.) start menu
(d.) designer window
7Which does the solution explorer not display?
(c.) TextBox
(d.) Label
28The Rnd statement will generate a(n):
(a.) decimal value between 0.01 and 1.00.
(b.) integer value between 0.01 and 1.00.
(c.) decimal value between 0.0 and 1.0.
(d.) decimal value between 0.0 and up to 1.0, but not including 1.0.
29The analysis phase of software development involves:
(a.) collecting the requirements about what the program will accomplish.
(b.) creating a detailed plan on how the program will accomplish the requirements.
(c.) writing the software with a program such as VB.NET.
(d.) Both a and b.
30Which phase of project development typically costs the most?
(a.) Analysis
(b.) Design
(c.) Implementation
(d.) Maintenance
34The Date data type does not hold which type of information.
(a.) Seconds
(b.) Hours
(c.) Days
(d.) Quarters
35The Boolean data type:
(a.) is unsigned.
(b.) has two states.
(c.) is displayed by the program as yes or no.
(d.) Both a and b.
36Which is a valid statement for declaring a variable?
(a.) Const Form As Integer
(b.) Const myForm As Integer
(c.) Dim Form As Integer
(d.) Dim myForm As Integer
37VB.Net identifiers:
(a.) are case sensitive.
(b.) can begin with an underscore.
(c.) can begin with a number.
(d.) All of the above.
38The name of a constant:
(a.) does not have to begin with a letter but must be all upper case.
(b.) can begin with an underscore.
(c.) must begin with a letter but can be upper or lower case.
(d.) does not have to begin with a letter and be either upper or lower case.
39The proper operator precedence, from first to last, is:
(a.) logical, comparison, and arithmetic.
(b.) arithmetic, comparison, and logical.
(c.) arithmetic, logical, and comparison.
(d.) comparison, arithmetic, and logical.
40With A = False and B = True, which statement evaluates as True?
(a.) A AND A
(b.) A AND B
(c.) B AND A
(d.) B AND B
41With A = False and B = True, which statement evaluates as False?
(a.) A OR A
(b.) A OR B
(c.) B OR A
(d.) B OR B
42Which operator is evaluated first?
(a.) NOT
(b.) AND
(c.) XOR
(d.) OR