wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Pre-Test in Advanced Programming

Total questions: 50

Worksheet time: 25mins

Name
Class
Date
1.

is a third-generation event-driven programming language from Microsoft known for its Component Object Model (COM) programming model first released in 1991 and declared legacy during 2008.

a)

Java Programming

b)

Visual Studio

c)

Visual Basic

d)

JavaScript

2.

is a third-generation event-driven programming language from Microsoft known for its Component Object Model (COM) programming model first released in 1991 and declared legacy during 2008.

a)

Java Programming

b)

Visual Studio

c)

Visual Basic

d)

JavaScript

3.

What does "GUI" mean?

a)

Graphical User Interface

b)

Gradient Uninterrupted Interface

c)

Gradual Unified Interface

d)

Graphical Unified Interface

4.

It is the standard control for accepting input from the user as well as to display the output.

a)

Label

b)

Button

c)

Textbox

d)

Picture Box

5.

A control that lets you place descriptive text , where the text does not need to be changed by the user.

a)

Textbox

b)

Date Time Picker

c)

List Box

d)

Label

6.

is one of the most important controls as it is used to execute commands.

a)

Command Button

b)

CheckBox

c)

Label

d)

Textbox

7.

It is one of the controls that is used to handle graphics.

a)

Image Source

b)

Link Label

c)

Picture Box

d)

GUI

8.

Presents a list of items where the user can click and select the items from the list.

a)

CheckBox

b)

ListBox

c)

TextBox

d)

LinkBox

9.

It is used to display a drop-down list of various items.

a)

ListBox

b)

CheckBox

c)

TextBox

d)

ComboBox

10.

Lets the user selects or unselects an option.

a)

CheckBox

b)

RadioButton

c)

ListBox

d)

ComboBox

11.

When an option box is selected, its value is set to “______” and when it is unselected; its value is set to “_______”.

a)

True and False

b)

Yes and No

c)

I / O

d)

Check and X

12.

It is a type of graphical user interface element that allows the user to choose only one of a predefined set of options.

a)

Command Button

b)

Radio Button

c)

CheckBox

d)

ComboBox

13.

It refers to an extensive system used for declaring variables or functions of different types.

a)

Controls

b)

Object

c)

Data Types

d)

Variables

14.

It is useful to declare and allocate the storage space for one or more variables.

a)

Dim

b)

Var

c)

Int

d)

String

15.

A binary variable, having two possible values called “true” and “false.”.

a)

String

b)

Integer

c)

Float

d)

Boolean

16.

It is a primitive data type with the size of exactly one byte.

a)

String

b)

Char

c)

Double

d)

Short

17.

It is a datum of integral data type, a data type that represents some range of mathematical integers.

a)

Double

b)

Float

c)

Short

d)

Integer

18.

It is a data type in computer science whose range is greater (sometimes even double) than that of the standard data type integer.

a)

Long

b)

Short

c)

Integer

d)

Double

19.

It is traditionally a sequence of characters, either as a literal constant or as some kind of variable.

a)

Integer

b)

Float

c)

Dim

d)

String

20.

What is the proper syntax used in VB?

a)

Dim Integer x = 5

b)

Dim String as Name

c)

Dim age as Integer

d)

Dim String = name

21.

Check which syntax is correct in declaring a variable.

a)

Dim age = 5 as Integer

b)

Dim fname as String

c)

Dim platenum as Integer

d)

Dim lastname as Reyes

22.

Check which syntax is correct in declaring a variable.

a)

Dim grade as Integer = 85

b)

Dim math = 76

c)

Dim String = MiddleInitial

d)

Dim lastname as String = "REYES"

23.

It allows you to define the data type in the declaration statement.

a)

While

b)

Else

c)

As

d)

If

24.

These are the predefined set of reserved words that have special meaning for the compiler.

a)

Keyword

b)

Keyphrase

c)

Keycode

d)

Keypass

25.

These are the self-explanatory notes to provide detailed information about the code which we wrote in our applications.

a)

Comment

b)

Dictation

c)

Input

d)

Output

26.

It is a programming element that specifies what kind of operation needs to perform on operands or variables.

a)

Variables

b)

Declarations

c)

Operator

d)

Decision

27.

It consists of programs designed to perform a specific task or application.

a)

Utility Software

b)

Application Software

c)

OS

d)

System Utility

28.

This stage involves the process of gathering information in order to identify the specifications of a program.

a)

Analyzing the program requirements

b)

Designing the Solution

c)

Testing the Program

d)

Documenting the Program

29.

This stage involves the process of updating the program code in order for the program to become continually useful.

a)

Designing the interface

b)

Documenting the Program

c)

Maintaining the Program

d)

Designing the Solution

30.

This stage involves selecting and organizing the elements of the user interface.

a)

Designing the Interface

b)

Designing the Solution

c)

Coding the Program

d)

Documenting the Program

31.

This stage involves the process of designing the algorithm of the program

a)

Coding the Program

b)

Designing the Solution

c)

Designing the Interface

d)

Maintaining the Program

32.

This stage involves the process of detecting and eliminating errors in the program.

a)

Testing the Program

b)

Maintaining the Program

c)

Analyzing the Program

d)

Documenting the Program

33.

This stage involves the tasks of reviewing the program code to identify all the dead codes.

a)

Testing the Program

b)

Maintaining the Program

c)

Analyzing the Program

d)

Documenting the Program

34.

This stage involves the process of translating the algorithm into the program codes of the selected programming language.

a)

Designing the Solution

b)

Designing the Interface

c)

Coding the Solution

d)

Testing the Program

35.

It consists of programs that control or maintain the operation of the computer.

a)

OS

b)

Utility Software

c)

System Software

d)

Application Software

36.

It is a collection of programs.

a)

Data

b)

Program

c)

Instruction

d)

Software

37.

It is a collection of data.

a)

Program

b)

Software

c)

Data

d)

Instruction

38.

It is a collection of instruction

a)

Software

b)

Data

c)

Program

d)

Instruction

39.

These are raw figures entered into a computer.

a)

Data

b)

Instruction

c)

Software

d)

Program

40.

It directs the order by which the program instructions are executed.

a)

Programming Structure

b)

Flowchart

c)

Pseudocode

d)

Control Structure

41.

How many types of structures are there?

a)

2

b)

3

c)

4

d)

5

42.

It is a program logic that directs the computer to execute one instructions after the other.

a)

Selection

b)

Sequence

c)

Alteration

d)

Repetition

43.

It directs the computer to repeat one or more instructions.

a)

Sequence

b)

Selection

c)

Alteration

d)

Repetition

44.

Other term for repetition control.

a)

Endless

b)

Infinite

c)

Decision

d)

Iteration

45.

It allows the program to make decision or comparison and select one of the two paths based on the result of the condition.

a)

Alteration

b)

Selection

c)

Iteration

d)

Repetition

46.

Other term for selection structure.

a)

Decision

b)

Iteration

c)

Endless

d)

Endless

47.

The ______ statement checks in the module for usage of any

undeclared variables and reports an error to the user.

a)

looping

b)

iteration

c)

Dim

d)

External

48.

_____ use to store alphanumeric values. A variable length string can store approximately 4 billion characters.

a)

String

b)

Boolean

c)

variant

d)

date

49.

____ variables are not reinitialized each time visual basic invokes a procedure and thus retains or preserves value even when a procedure ends

a)

Static

b)

dynamic

c)

virtual

d)

private

50.

Which term used in Visual Basic pertaining to Application?

a)

Object

b)

Project

c)

Property

d)

Application