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
Real time
Graphical user interface
Character user interface
None of these
Explanation
Visual Basic is a GUI (Graphical User Interface) development tool, allowing programmers to create applications with visual elements like windows, buttons, and icons.
Q.2 Visual Basic is developed by:
Microsoft
Oracle
IBM
None of these
Explanation
Visual Basic was developed and released by Microsoft as a evolution of the BASIC programming language.
Q.3 Visual Basic was first introduced in
1980
1988
1991
None of these
Explanation
Visual Basic 1.0 was first introduced by Microsoft in 1991 at the Atlanta Comdex trade show.
Q.4 In visual basic ______ is the extension to represent project file.
.vbp
.frm
.vb
None of these
Explanation
The .vbp (Visual Basic Project) file extension is used to store information about the forms, modules, and controls that make up a project.
Q.5 Father of visual basic 6.0 ?
Alan Cooper
Robert
Sutherland
None of these
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.
Q.6 Which country developed visual basic 6.0 ?
India
USA
China
None of these
Explanation
Visual Basic was developed by Microsoft Corporation, which is an American multinational technology company headquartered in the USA.
Q.7 Visual basic is the —— event driven programming langauge ?
First Generation
Second Generation
Third Generation
None of these
Explanation
Visual Basic is considered a Third Generation Language (3GL) designed to be more user-friendly than previous generations of languages.
Q.8 Visual basic 2.0 launched in
1990
1991
1992
1993
Explanation
Visual Basic 2.0 was released in November 1992, offering increased speed and a more sophisticated programming environment.
Q.9 Visual basic 3.0 launched in
1993
1996
1995
2000
Explanation
Visual Basic 3.0 was released in 1993 and became highly popular as it included the Microsoft Jet Database Engine.
Q.10 Visual basic 4.0 launched in
1993
1996
1995
2000
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.
Q.11 Visual basic 5.0 launched in
1993
1996
1997
2002
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.
Q.12 Visual basic 6.0 launched in
1999
1998
1997
2002
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.
Q.13 Which of the following version of visual basic support 32 bit system
3.0
4.0
5.0
None of these
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).
Q.14 Features of visual basic 6.0
User interface design
Rapid application development
IDE
All of these
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.
Q.15 ______ is used for finding out about objects, properties and method
Form Layout Window
Code Editor Window
Object Browser
None of these
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.
Q.16 Which window displays a list of all forms and modules making up your application.
Project window
Properties window
Form layout window
None of these
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.
Q.17 The default property of a text for control is
Text
Enable
Multiline
None of these
Explanation
For a TextBox control, ‘Text’ is the default property, which holds the string content currently displayed in the box.
Q.18 ______ is a collection of files.
Class
object
Project
All of these
Explanation
A Project in Visual Basic is a collection of various files, including form files (.frm), module files (.bas), and project configuration files (.vbp).
Q.19 In ______ window we can write code.
Immediate window
Local window
Code editor window
None of these
Explanation
The Code Editor window is the primary workspace where developers write and edit the Visual Basic source code for their applications.
Q.20 Which window shows information that results from debugging statements in our code.
Immediate window
Local window
Code editor window
None of these
Explanation
The Immediate window is used during debugging to evaluate expressions, execute statements, and print variable values using ‘Debug.Print’.