• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/160

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

160 Cards in this Set

  • Front
  • Back
" VBS runs under the _____. "
Windows Script Host
In VB.NET we work with objects that have ______.
properties and methods
A VB.NET program compiles to ______.
MSIL
A VB.NET program's compiled code runs by the ____.
CLR
"The steps to developing a VB program are: "
"design form, properties, write code"
The primary programming file's extension is ____
.sln
The file extension for VB form files is _____
.vb
See what files are in the program with ____
Solution Explorer
Use ____ for an exit button.
Me.Close()
Use ____ for a comment in code.
'
A squiggly blue line under a code means a ____
syntax error
Use a ____ for entering a zip code.
MaskedTextBox
Use a ____ to enter formatted text.
RichTextBox
To restrict the user to a single choice use a ____.
Radio Button
To permit one or more choices use a ____.
Check Box
A ____ is a container for other controls.
Group Box
To concatenate text in Visual Basic use ____
&
To make the underscore character in text use ____
&
To map the ESC key to a button use the ____ property
CancelButton
To change multiple properties of a control use ____
with … end with
To continue a line of code use a ____
_
To declare a variable use ____
Dim
The default data type is:
object
To get 14 digits use ____ data type
double
If a value is either trye or false you should use which data type?
boolean
Which of the folling is NOT a valid variable name?
Money Total
"Use ____ for a variable that cannot be changed. const"
const
____ variables can be accessed by all procedures in the form.
Module
"To add 1 to variable J
use ____",J += 1
"To display an error message
use ____ ", Messagebox.Show
To make text upper-case use ____
Text.ToUpper()
Chose among options with ____
Select Case
Specify which event occurs for a subroutine with ____
Handles
To run a subroutine prog1() use ____
Call prog1()
Use the ____ to make a menu.
MenuStrip
To allow the user to change colors use a ____
ColorDialog
To get a pop-up menu with mouse right-click use a ____
Context Menu Strip
"The difference between a sub & a function is ____ "
Function must return a value
"Passing a copy of a variable is ""call by ____"" "
Value
"Make a toolbar with a ____. "
Toolstrip
"A ____ variable retains its value for the life of the project. "
Static
"Make a user respond to a form with ____ "
ShowDialog
"Do NOT make a user respond to a form with ____ "
Show
"Keep a form in memory but not on screen with ____ "
Hide
"The ____ event triggers when you switch to a form. "
Activate
"A group of objects with an index is a(n) ____ "
Collection
"Use ____ to get out of a For/Next loop "
Exit For
"Use ____ to skip an iteration in a for/next loop. "
Continue For
"Use ____ to iterate an unspecified number of times. "
Do...Loop
"Use ____ to design a print document. "
DrawString()
"Use ____ to initialize values in an array. "
{ }
"Use ____ to make a new data type. "
Structure
"Use ____ to go through an array without an index. "
for each
Use ____ to change the size of an array.
Redim
An ASP.NET web page has teh ____ file extension.
.aspx
With ASP.NET check user input with ____ controls.
validator
"Store values between web pages with ____ variables. "
session
"Refresh a web page faster with ____. "
AJAX
"Use SOAP to ____ "
Communicate between applications
"A WebService file has the ____ extension. "
.asmx
"Click ____ to link to a WebService. "
Add Service Reference
"The ____ describes a WebService. "
WSDL
"Automate a spreadsheet with ____. "
VBA
"The Excel Addin extension is ____. "
XLA
To resize an area of the form use a ____.
SplitContainer
To resize controls whiel resizing the form set the ____ property.
Anchor
"An advantae of ADO.NET is it uses ____. "
XML
"Display data in a table with a ____ component. "
DatagridView
"Use a ____ to retreive & update data. "
Table Adapter
"A ____ component establishes a link to a database. "
Binding Source
"A temp set of data in memory is a ____ "
Data set
"Change the ____ properties of a component to show a field. "
DataBindings
"Load a namespace with ____. "
Imports
"Use a ____ to read a text file. "
StreamReader
"Use a ____ to write a text file. "
StreamWriter
"Use ____ to read with FileOpen. "
Input()
"Use ____ when done with a text file. "
.Close()
To make an instance of an object use ____
new
"To make a property readable use ____ "
get
To make a property writeable use ____
set
" VBS runs under the _____. "
Windows Script Host
In VB.NET we work with objects that have ______.
properties and methods
A VB.NET program compiles to ______.
MSIL
A VB.NET program's compiled code runs by the ____.
CLR
"The steps to developing a VB program are: "
"design form, properties, write code"
The primary programming file's extension is ____
.sln
The file extension for VB form files is _____
.vb
See what files are in the program with ____
Solution Explorer
Use ____ for an exit button.
Me.Close()
Use ____ for a comment in code.
'
A squiggly blue line under a code means a ____
syntax error
Use a ____ for entering a zip code.
MaskedTextBox
Use a ____ to enter formatted text.
RichTextBox
To restrict the user to a single choice use a ____.
Radio Button
To permit one or more choices use a ____.
Check Box
A ____ is a container for other controls.
Group Box
To concatenate text in Visual Basic use ____
&
To make the underscore character in text use ____
&
To map the ESC key to a button use the ____ property
CancelButton
To change multiple properties of a control use ____
with … end with
To continue a line of code use a ____
_
To declare a variable use ____
Dim
The default data type is:
object
To get 14 digits use ____ data type
double
If a value is either trye or false you should use which data type?
boolean
Which of the folling is NOT a valid variable name?
Money Total
"Use ____ for a variable that cannot be changed. const"
const
____ variables can be accessed by all procedures in the form.
Module
"To add 1 to variable J
use ____",J += 1
"To display an error message
use ____ ", Messagebox.Show
To make text upper-case use ____
Text.ToUpper()
Chose among options with ____
Select Case
Specify which event occurs for a subroutine with ____
Handles
To run a subroutine prog1() use ____
Call prog1()
Use the ____ to make a menu.
MenuStrip
To allow the user to change colors use a ____
ColorDialog
To get a pop-up menu with mouse right-click use a ____
Context Menu Strip
"The difference between a sub & a function is ____ "
Function must return a value
"Passing a copy of a variable is ""call by ____"" "
Value
"Make a toolbar with a ____. "
Toolstrip
"A ____ variable retains its value for the life of the project. "
Static
"Make a user respond to a form with ____ "
ShowDialog
"Do NOT make a user respond to a form with ____ "
Show
"Keep a form in memory but not on screen with ____ "
Hide
"The ____ event triggers when you switch to a form. "
Activate
"A group of objects with an index is a(n) ____ "
Collection
"Use ____ to get out of a For/Next loop "
Exit For
"Use ____ to skip an iteration in a for/next loop. "
Continue For
"Use ____ to iterate an unspecified number of times. "
Do...Loop
"Use ____ to design a print document. "
DrawString()
"Use ____ to initialize values in an array. "
{ }
"Use ____ to make a new data type. "
Structure
"Use ____ to go through an array without an index. "
for each
Use ____ to change the size of an array.
Redim
An ASP.NET web page has teh ____ file extension.
.aspx
With ASP.NET check user input with ____ controls.
validator
"Store values between web pages with ____ variables. "
session
"Refresh a web page faster with ____. "
AJAX
"Use SOAP to ____ "
Communicate between applications
"A WebService file has the ____ extension. "
.asmx
"Click ____ to link to a WebService. "
Add Service Reference
"The ____ describes a WebService. "
WSDL
"Automate a spreadsheet with ____. "
VBA
"The Excel Addin extension is ____. "
XLA
To resize an area of the form use a ____.
SplitContainer
To resize controls whiel resizing the form set the ____ property.
Anchor
"An advantae of ADO.NET is it uses ____. "
XML
"Display data in a table with a ____ component. "
DatagridView
"Use a ____ to retreive & update data. "
Table Adapter
"A ____ component establishes a link to a database. "
Binding Source
"A temp set of data in memory is a ____ "
Data set
"Change the ____ properties of a component to show a field. "
DataBindings
"Load a namespace with ____. "
Imports
"Use a ____ to read a text file. "
StreamReader
"Use a ____ to write a text file. "
StreamWriter
"Use ____ to read with FileOpen. "
Input()
"Use ____ when done with a text file. "
.Close()
To make an instance of an object use ____
new
"To make a property readable use ____ "
get
To make a property writeable use ____
set