• 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/40

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;

40 Cards in this Set

  • Front
  • Back

The third generation computer language is called procedure language.

True

A programming language is a set of words and symbols that can be interpreted by special computer software to create instructions that can be executed by a computer.

True

The set of instructions that directs a computer to perform tasks is called computer hardware.

false

Visual Basic is called an object oriented and event driven language that supports GUI.

True

The ____ of a programming language is the set of usage rules for that language.




logic


semantics


syntax


GUI

Syntax

Each VB control has ____.




indices


properties


IDEs


tools

properties

A computer program on a mobile device or Windows 8 computer is also called an app.

True

The .NET Framework 4.5 contains thousands of classes and many class libraries that can be used by Visual Basic developers.

true

A button or a text box are examples of objects, also called ____, that are part of the graphical user interface.




indices


classes


libraries


controls

controls

The characteristics of VB controls such as buttons and text boxes can be set using the ____ window in the Visual Studio IDE.




Characteristics


Attributes


Properties


Values

Properties

When the ____ property of a label object is set to False, the object can then be resized.




text


Auto size


name


font

Auto Size

Each VB control can have only one property.

False

You are designing a form that will be used to record the mileage driven by a sales representative. Which of the following is the best name for this form?




MilesForm


Form1


frmSalesRep


frmMilesDriven

frmMilesDriven

The ____ property of a Form object can be used to set the value that will appear on the form’s title bar.




Title


Text


Caption


Label

Text

A prefix of ____ should be used when naming a PictureBox object.




img


pbx


pcb


pic

pic

A prefix of ____ should be used when naming a button control.




pic


txt


btn


lbl

btn

You should ____ as the first phase of the program development life cycle.




design the user interface


gather and analyze the program requirements


code the program


document the program

gather and analyze the program requirements

You should ____ as the second phase in the program development life cycle, after the program requirements have been gathered and analyzed.




design the program processing objects


code the program


design the user interface


document the program

design the user interface

A ____ document identifies the purpose of the program being developed, the application title, the procedures to be followed when using the program, any equations and calculations required, any conditions within the program that must be tested, and any notes and restrictions that must be followed by the program.




notes


requirements


restrictions


matrix

requirements

The ____ property of a Label object can be used to change the contents of the Label object.




Caption


Label


Text


Title

text

When the ____ property of an object is set to False, the object will not appear on the form when the program starts.




Visible


Display


Show


View

visible

When the ____ property of a button object is set to False, the object will appear dimmed on the form.




Visible


Enabled


Text


Name

enabled

Which one of the followings takes care of the event that a user triggers by executing code that performs the required processing?




Event manager


Public Class


Event handler or procedure


GUI

Event handler or procedure

In a Visual Basic code statement, the ____ operator is used to separate an object name from the name of a property .




assignment


dot


property


arithmetic

dot

Which of the following is the correct general format for assigning a value to a property?




propertyvalue = propertyname.objectname


propertyvalue = objectname.property


propertyname.objectname = value


objectname.property = value

objectname.property = value

A(n) ____ statement is used to set the value of an object’s property with the desired value.




comparison


logical


assignment


remastered

assignment

The ____ feature displays all allowable entries you can make in a Visual Basic statement each time a dot, equal sign, or other special character required for the statement is typed.




AutoComplete


AutoSense


IntelliComplete


IntelliSense

IntelliSense

____ comments appear at the beginning of a class module, and typically contain the developer’s name, the date, and the purpose of the program.




Before a line


Introductory


Inline


Same line

Introductory

A(n) ____ is used for denoting a comment statement.




semi-colon (;)


period (.)


apostrophe (‘)


comma (,)

apostrophe (')

Comments are displayed (by default) with ____.


a green squiggly line


green text


blue text


a blue squiggly line

green text

The developer should not begin to write code until after the events and tasks within the events have been identified.

True

When build errors occur, Visual Studio will display the errors in the ____ window.




Command


Error List


Output


Task

Error list

In the code editor, ____ is used to indicate the location of an error.




blue text


a blue squiggly line


green tex


ta green squiggly line

a blue squiggly line

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.

True

When defining a variable, the keyword ____ appears at the beginning of the statement.




Assign


Declare


Define


Dim

Dim

A ____ beneath a variable name in a declaration statement indicates that the variable has not been used in the program.




blue squiggly underline


green squiggly underline


red squiggly underline


yellow squiggly underline

green squiggly underline

A(n) ____ data type must be used in arithmetic operations.




string


numeric


character


either A or B

Numeric

The memory allocation for the Char data type is ____ bytes.




2


4


8


16

2

A variable that will be used to hold only True or False values should be declared as a(n) ____ data type.




Boolean


Decimal


Integer


Single

Boolean

A prefix of ____ is used to denote a variable defined as an Integer data type.




num


dec


nbr


int

int