0% found this document useful (0 votes)
7 views14 pages

Visual Basic Programming MCQ PDF

The Visual Basic Programming MCQ PDF provides an overview of fundamental concepts and practical skills for developing applications using Visual Basic. It includes 12 chapters with a total of 1344 verified questions and flashcards covering topics such as language syntax, user interface design, event-driven programming, and database integration. The document serves as a resource for students preparing for entry-level roles in software development or further study.

Uploaded by

wxar6eqxbu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views14 pages

Visual Basic Programming MCQ PDF

The Visual Basic Programming MCQ PDF provides an overview of fundamental concepts and practical skills for developing applications using Visual Basic. It includes 12 chapters with a total of 1344 verified questions and flashcards covering topics such as language syntax, user interface design, event-driven programming, and database integration. The document serves as a resource for students preparing for entry-level roles in software development or further study.

Uploaded by

wxar6eqxbu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Visual Basic Programming MCQ

PDF

https://quizplus.com/study-set/940
12 Chapters
1344 Verified Questions
Visual Basic Programming
MCQ PDF
Cou
Visual Basic Programming introduces students to the fundamental concepts and

practical skills required to develop applications using the Visual Basic programming

language. This course covers language syntax, user interface design, event-driven

programming, and the integration of Visual Basic with databases and other

applications. Students will learn how to write and debug code, manipulate controls,

handle exceptions, and utilize object-oriented programming techniques. Through a

series of hands-on assignments and projects, participants will gain the ability to design,

implement, and test Windows-based applications, preparing them for further study or

entry-level roles in software development.

Recommended Textbook
Microsoft Visual Basic 2012 for Windows Web Office and Database Applications Comprehensive

Available Study Resources on Quizplus


12 Chapters
1344 Verified Questions
1344 Flashcards
Source URL: https://quizplus.com/study-set/940

Page 2
Chapter 1: Introduction to Visual Basic 2012 Programming
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18522

Sample Questions
Q1) Provides tools and processes developers can use to process and run programs
A)hardware
B)event-driven
C)class library
D)logical
E)RAM
F)ADO.NET 4.5
G)syntax
H)persistent
I).NET Framework 4.5
J)F#
Answer: I

Q2) A computer uses ____ operations to compare two values to see if they are equal to
each other.
A) arithmetic
B) logical
C) grouping
D) sorting
Answer: B

To view all questions and flashcards with answers, click on the resource link above.

Page 3
Chapter 2: Program and Graphical User Interface Design
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18523

Sample Questions
Q1) Program ____________________ consists of the instructions written using a
programming language that ultimately can be executed by a computer.
Answer: code

Q2) A(n)____________________ object is generally used on a form to cause an


event to occur when the program is executing.
Answer: Button

Q3) ____ are used to control the color,size,name,and position on the screen of an
object.
A) Attributes
B) Properties
C) Symbols
D) Indices
Answer: B

Q4) Visual Basic contains ____ tools that are used in the design process.
A) RAD
B) ERD
C) HTTP
D) EFT
Answer: A

To view all questions and flashcards with answers, click on the resource link above.
Page 4
Chapter 3: Program Design and Coding
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18524

Sample Questions
Q1) When using an assignment statement to set the value of an object's property,the
property will be set to the value which appears on the ____________________ side
of the equal sign.
Answer: left

Q2) The ____________________ property of the PictureBox object determines the


manner in which an image is displayed in a PictureBox object.
Answer: SizeMode

Q3) The forward slash (/)is used to identify a statement as a


comment._________________________
A)True
B)False
Answer: False

Q4) An event planning document details each object in the user interface that will
trigger an event and what actions will be taken when that event occurs.
A)True
B)False
Answer: True

To view all questions and flashcards with answers, click on the resource link above.

Page 5
Chapter 4: Variables and Arithmetic Operations
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18525

Sample Questions
Q1) Indicates how many digits to the right of a decimal place are to be returned
A)program
B)ToString
C)constant
D)precision specifier
E)function
F)method
G)class
H)procedure
I)local
J)literal

Q2) A ____ Exception occurs when code attempts to divide a number by zero.
A) Divide by Zero
B) Zero denominator
C) Zero error
D) Division Error

Q3) A variable that can be used in multiple regions of code is called a universal variable.
A)True
B)False

To view all questions and flashcards with answers, click on the resource link above.

Page 6
Chapter 5: Decision Structures
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18526

Sample Questions
Q1) In a Select Case structure,the ____ statement includes all conditions not specifically
tested for in the other Case statements.
A) Case Other
B) Else
C) Case Else
D) All Else

Q2) An expression using the logical operator ____ will evaluate to true only when both
of the conditions are true.
A) And
B) Or
C) Not
D) Nor

Q3) ____ is the default setting for the buttons that will be displayed in a message box
like the one in the accompanying figure.
A) MessageBoxButtons.OKOnly
B) MessageBoxButtons.OKCancel
C) MessageBoxButtons.YesNo
D) MessageBoxButtons.YesNoCancel

Q4) Discuss how to select which decision structure to use.

To view all questions and flashcards with answers, click on the resource link above.
Page 7
Chapter 6: Loop Structures
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18527

Sample Questions
Q1) When the user clicks the Cancel button in an input box and the InputBox function
returns a null character,the program can test for the null character to determine further
processing.
A)True
B)False

Q2) A loop that is always executed at least once


A)ListBox
B)wizard
C)bottom-controlled
D)infinite
E)accumulator
F)For...Next
G)breakpoint
H)looping
I)InputBox
J)Do Until

Q3) The keyword ____________________ is the last line of a For loop.

Q4) Only one breakpoint can be set in a program.


A)True
B)False

To view all questions and flashcards with Page 8 click on the resource link above.
answers,
Chapter 7: Using Procedures and Exception Handling
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18528

Sample Questions
Q1) Tap or click the list arrow on the left side of a ComboBox object to view the
contents._________________________
A)True
B)False

Q2) The ____________________ is a generic exception that occurs whenever an


error occurs that does not have an exception defined for it.

Q3) If a Sub procedure has more than one argument,the variables are passed in the
same order in which they appear in the procedure call statement.
A)True
B)False

Q4) When an argument is passed ____,it means the Sub procedure has access to the
value of the passed argument,but does not actually reference the variable declared in
the calling procedure.
A) ByRef
B) ByHand
C) ByVal
D) ByVar

Q5) How is a Function procedure similar to or different from a Sub procedure?

To view all questions and flashcards with answers, click on the resource link above.

Page 9
Chapter 8: Using Arrays and File Handling
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18529

Sample Questions
Q1) A ____ search of an array starts at the beginning of the array and inspects each
element until a match is found.
A) sequential
B) decimal
C) matching
D) hexadecimal

Q2) The ____________________ object is used to write lines of text to a file.

Q3) An instance is a special type of form that can be loaded with another form still
showing.
A)True
B)False

Q4) When declaring an implicitly sized array,declaring a(n)upper-bound index will


cause an error to occur._________________________
A)True
B)False

Q5) The Length property returns the highest index element in the array.
A)True
B)False

Q6) An array with two indexes for each element is a(n)____________________


array. Page 10

To view all questions and flashcards with answers, click on the resource link above.
Chapter 9: Creating Web Applications
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18530

Sample Questions
Q1) You need Expression Web to work with its Web pages in Visual Basic 2012.
A)True
B)False

Q2) If you prefer to design a Web page without using starter templates,select ____
before you name the project when you create a new Web Site project.
A) No template
B) ASP.NET Empty Web Site
C) Without Master Page
D) Blank slate

Q3) Use the ____ property of the Calendar object to reference the current date.
A) Today
B) Current
C) TodaysDate
D) ThisDate

Q4) The ____ object displays the days in each month as appropriate for the year.
A) Planner
B) Calendar
C) DayRunner
D) Month

To view all questions and flashcards with answers, click on the resource link above.
Page 11
Chapter 10: Incorporating Databases with ADONET
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18531

Sample Questions
Q1) Data from a database is available for dragging onto a Windows form from the Data
____________________ window.

Q2) The ToolStrip control used for navigating through database records is called the
BindingToolStrip._________________________
A)True
B)False

Q3) To connect to the database using the Data Source Configuration Wizard,with Visual
Studio 2012 open,click the Connect Project button on the Connection toolbar.
A)True
B)False

Q4) A navigation toolbar control called the ____ appears on the Windows form after a
database field is placed on the form.
A) ToolStrip
B) BindingNavigator
C) Connector
D) DataNavigator

Q5) In a database,a(n)____________________ is referred to as a record.

Q6) Explain OleDbDataAdapter and what it consists of,and provide its general form.

To view all questions and flashcards with answers, click on the resource link above.
Page 12
Chapter 11: Multiple Classes and Inheritance
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18532

Sample Questions
Q1) ____ is the concept of separating processing and hiding data within specific
classes.
A) Encapsulation
B) Inheritance
C) Object-oriented programming
D) Persistence

Q2) What is a constructor? What is its function? What happens if a developer writes no
code for a class constructor?

Q3) The ____ property should be tested to ensure that a masked textbox contains
characters for the entire mask area.
A) MaskRange
B) MaskFull
C) MaskComplete
D) CompleteMask

Q4) What is the relationship into which a subclass must fit whenever inheritance is used?
Provide at least three examples that illustrate this relationship.

Q5) Data cannot be passed into an object when it is being instantiated.


A)True
B)False

To view all questions and flashcards withPage


answers,
13 click on the resource link above.
Chapter 12: Windows Store Apps
Available Study Resources on Quizplus for this Chatper
112 Verified Questions
112 Flashcards
Source URL: https://quizplus.com/quiz/18533

Sample Questions
Q1) ____ means the window displays no controls such as ribbons or toolbars.
A) Independent
B) Touch-first
C) Chromeless
D) Static

Q2) The ____________________ is an online store when you shop for Windows 8
apps.

Q3) The limit on copyright and trademark information is ____ characters or fewer.
A) 25
B) 30
C) 100
D) 200

Q4) Windows Store apps can only be written and executed using the Windows 7
operating system or newer versions.
A)True
B)False

Q5) The image displayed on a splash screen must be ____ pixels.


A) 50 x 50
B) 50 x 320
C) 620 x 300
D) 300 x 620 Page 14

To view all questions and flashcards with answers, click on the resource link above.

You might also like