Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

VB.NET Competition

Total questions: 14

Worksheet time: 8mins

Name
Class
Date
1.

What property of timer indicates interlude?

a)

tick

b)

inBetween

c)

interval

d)

integral

2.

Allows to declare variables

a)

yum

b)

val

c)

var

d)

dim

3.

file extension of the whole vb.net file

a)

.proj

b)

.net

c)

.vb

d)

.slm

4.

This property is important because it is need primarily in calling the tool in coding.

a)

Text

b)

Name

c)

Enable

d)

Visible

5.
If the statement is incorrect when using the decision the step following true will be executed
a)
true
b)
false
6.

The VB.net language is used in producing Web applications only.

a)

True

b)

False

7.

Object Oriented programming language depends on:

a)

using Windows applications.

b)

Using Web applications

c)

Objects in computer memory.

8.

Which of the following control structure are needed to repeat a code?

a)

sequence

b)

loop

c)

selection

d)

if

9.

FOR loops are

a)

loops which run an unknown number of times

b)

loops which run for a specific number of times

c)

the same as if statements

d)

not part of programming

10.
To repeat until a particular condition is true use
a)
while loop
b)
for loop
c)
if loop
d)
indentation
11.
Private Sub disp ()
Dim num as Double = 10  
Do While num > 1
MsgBox(num)
 num = num - 3
Loop
End Sub. 
 What numbers will be displayed in the list box when the button is clicked? 
a)
(a) 10, 7, and 4 
b)
(b)  10, 7, 4, and 1 
c)
(c)10, 7, 4, 1, and -2 
d)
(d) no output
12.
 A FOR statement  is followed by a _______________ statement.
a)
Next Statement
b)
Repeat Statement
c)
While Statement
13.
The name of the user represents a string data type
a)
True
b)
False
14.
Variable names must begin with letter or underscore
a)
True
b)
False