Welcome To CSE Study247 , Today I am provide you VISUAL BASIC 6.0 MCQ-1. That is very useful for Computer Science Students.
Q.1 Visual basic is a tool that allow you to develop application in
A)
Real time
B)
Graphical user interface
C)
Character user interface
D)
None of these
Discuss it
Explanation
Visual Basic is a GUI (Graphical User Interface) development tool, allowing programmers to create applications with visual elements like windows, buttons, and icons.
View Solution
Q.2 Visual Basic is developed by:
A)
Microsoft
B)
Oracle
C)
IBM
D)
None of these
Discuss it
Explanation
Visual Basic was developed and released by Microsoft as a evolution of the BASIC programming language.
View Solution
Q.3 Visual Basic was first introduced in
A)
1980
B)
1988
C)
1991
D)
None of these
Discuss it
Explanation
Visual Basic 1.0 was first introduced by Microsoft in 1991 at the Atlanta Comdex trade show.
View Solution
Q.4 In visual basic ______ is the extension to represent project file.
A)
.vbp
B)
.frm
C)
.vb
D)
None of these
Discuss it
Explanation
The .vbp (Visual Basic Project) file extension is used to store information about the forms, modules, and controls that make up a project.
View Solution
Q.5 Father of visual basic 6.0 ?
A)
Alan Cooper
B)
Robert
C)
Sutherland
D)
None of these
Discuss it
Explanation
Alan Cooper is known as the 'Father of Visual Basic' because he developed the visual interface design concept (codenamed Ruby) which Microsoft combined with BASIC.
View Solution
Q.6 Which country developed visual basic 6.0 ?
A)
India
B)
USA
C)
China
D)
None of these
Discuss it
Explanation
Visual Basic was developed by Microsoft Corporation, which is an American multinational technology company headquartered in the USA.
View Solution
Q.7 Visual basic is the ------ event driven programming langauge ?
A)
First Generation
B)
Second Generation
C)
Third Generation
D)
None of these
Discuss it
Explanation
Visual Basic is considered a Third Generation Language (3GL) designed to be more user-friendly than previous generations of languages.
View Solution
Q.8 Visual basic 2.0 launched in
A)
1990
B)
1991
C)
1992
D)
1993
Discuss it
Explanation
Visual Basic 2.0 was released in November 1992, offering increased speed and a more sophisticated programming environment.
View Solution
Q.9 Visual basic 3.0 launched in
A)
1993
B)
1996
C)
1995
D)
2000
Discuss it
Explanation
Visual Basic 3.0 was released in 1993 and became highly popular as it included the Microsoft Jet Database Engine.
View Solution
Q.10 Visual basic 4.0 launched in
A)
1993
B)
1996
C)
1995
D)
2000
Discuss it
Explanation
Visual Basic 4.0 was released in August 1995 and was the first version capable of creating 16-bit as well as 32-bit Windows programs.
View Solution
Q.11 Visual basic 5.0 launched in
A)
1993
B)
1996
C)
1997
D)
2002
Discuss it
Explanation
Visual Basic 5.0 was released in February 1997, focusing exclusively on 32-bit versions of Windows and introducing the ability to create custom user controls.
View Solution
Q.12 Visual basic 6.0 launched in
A)
1999
B)
1998
C)
1997
D)
2002
Discuss it
Explanation
Visual Basic 6.0 was released in mid-1998 and became the most widely used version, included as part of Visual Studio 6.0.
View Solution
Q.13 Which of the following version of visual basic support 32 bit system
A)
3.0
B)
4.0
C)
5.0
D)
None of these
Discuss it
Explanation
While VB 4.0 introduced 32-bit support, VB 5.0 and 6.0 were specifically optimized for 32-bit systems (Windows 95/NT and later).
View Solution
Q.14 Features of visual basic 6.0
A)
User interface design
B)
Rapid application development
C)
IDE
D)
All of these
Discuss it
Explanation
VB 6.0 is known for its Integrated Development Environment (IDE), easy User Interface design through drag-and-drop, and Rapid Application Development (RAD) capabilities.
View Solution
Q.15 ______ is used for finding out about objects, properties and method
A)
Form Layout Window
B)
Code Editor Window
C)
Object Browser
D)
None of these
Discuss it
Explanation
The Object Browser is a tool in the IDE that allows you to see the objects available for use in your project, along with their properties, methods, and events.
View Solution
Q.16 Which window 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 these
Discuss it
Explanation
The Project Explorer window (or Project window) provides a hierarchical list of all the projects and the items contained in each project, such as forms and modules.
View Solution
Q.17 The default property of a text for control is
A)
Text
B)
Enable
C)
Multiline
D)
None of these
Discuss it
Explanation
For a TextBox control, 'Text' is the default property, which holds the string content currently displayed in the box.
View Solution
Q.18 ______ is a collection of files.
A)
Class
B)
object
C)
Project
D)
All of these
Discuss it
Explanation
A Project in Visual Basic is a collection of various files, including form files (.frm), module files (.bas), and project configuration files (.vbp).
View Solution
Q.19 In ______ window we can write code.
A)
Immediate window
B)
Local window
C)
Code editor window
D)
None of these
Discuss it
Explanation
The Code Editor window is the primary workspace where developers write and edit the Visual Basic source code for their applications.
View Solution
Q.20 Which window shows information that results from debugging statements in our code.
A)
Immediate window
B)
Local window
C)
Code editor window
D)
None of these
Discuss it
Explanation
The Immediate window is used during debugging to evaluate expressions, execute statements, and print variable values using 'Debug.Print'.
View Solution