wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Programming Concepts-Grade XC

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

_______________ translated high level language into machine code.

a)

Interepretor

b)

Assembler

c)

Compiler

d)

A&C

e)

All of the above

2.

________________language allows use of special hardware

a)

Assembly

b)

Vb.net

c)

C#

d)

None

3.

Program needs to be converted into _________________ before running it

a)

Assembly code

b)

Vb.net code

c)

Low level code

d)

Machine code

4.

Compiler produces ________________ file

a)

dynamic

b)

executable

c)

static

d)

non executable

5.

DIM var1 AS is a _________________ error

a)

Logical

b)

Syntax

c)

Run time

d)

a & b

6.

product=0

product=number*product

console.writeline(product)


is a _____________________ error

a)

Logical

b)

Synatx

c)

Runtime

d)

a & b

7.

DIM num1 AS INTEGER

DIM COUNT AS INTEGER

COUNT=2

WHILE COUNT<=6

Console.writeline("*")

count=count+1

END WHILE


In the above code * will be printed how many times?

a)

will not be printed

b)

4 times

c)

6 times

d)

5 times

8.

DIM count=0

WHILE count > 0


console.writeline ("Hello World")

count= count +1


END WHILE


How many times 'Hello World' will be printed?

a)

1

b)

2

c)

0

d)

none of above

9.

Run time error comes at _____________ time and its is division by ____________

a)

Run time & 0

b)

Compile time & 0

c)

Development time & 0

d)

none of above

10.

VB.net is an example of ____________________

a)

Integrated development environment

b)

Interactive development environment

c)

Innovative development environment

d)

a & b