Control Structures in Visual Basic: Testing Conditions and Controlling Program Flow, Quizzes of Introduction to Business Management

An introduction to control structures in visual basic, focusing on testing conditions and controlling the flow of program execution. Topics covered include if...then, if...then...else, if..then...elseif, select case, and single line and block syntax for if statements.

Typology: Quizzes

2010/2011

Uploaded on 06/02/2011

drummerpolo15
drummerpolo15 🇺🇸

2.7

(3)

140 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
TERM 1
using control structures you can
DEFINITION 1
control the flow of your program's execution. If left
unchecked by control-flow statements, a program's logic will
flow through statements from left to right, and from top to
bottom
TERM 2
visual basic procedures can test
DEFINITION 2
conditions and tehn depending on the results of that test
perform different operations.
TERM 3
to test a single condition and run a single
statement or a block of statements use
DEFINITION 3
If....Then
TERM 4
to test a single condition and choose between
two statement blocks us
DEFINITION 4
If...Then....Else
TERM 5
to test More than oen condition and run one
fo several statement blocks use
DEFINITION 5
If..Then...ElseIf
pf2

Partial preview of the text

Download Control Structures in Visual Basic: Testing Conditions and Controlling Program Flow and more Quizzes Introduction to Business Management in PDF only on Docsity!

TERM 1

using control structures you can

DEFINITION 1

control the flow of your program's execution. If left

unchecked by control-flow statements, a program's logic will

flow through statements from left to right, and from top to

bottom

TERM 2

visual basic procedures can test

DEFINITION 2

conditions and tehn depending on the results of that test

perform different operations.

TERM 3

to test a single condition and run a single

statement or a block of statements use

DEFINITION 3

If....Then

TERM 4

to test a single condition and choose between

two statement blocks us

DEFINITION 4

If...Then....Else

TERM 5

to test More than oen condition and run one

fo several statement blocks use

DEFINITION 5

If..Then...ElseIf

TERM 6

to test a single condition and run one of

several statement blocks use

DEFINITION 6

select case

TERM 7

if then

DEFINITION 7

use statement to run one or more statements when the

specified condition is True. you can use either a single line

syntax or a mutiple line block syntax

TERM 8

single line syntax for if

then

DEFINITION 8

if thisVal<0 Then thisVal = 0

TERM 9

if then block

syntax

DEFINITION 9

If thisVal>5 Then thatVal = thisVal + 25 thisVal = 0End If