NEW
Font size
WorksheetsProgramming Concepts-Grade XC
Total questions: 10
Worksheet time: 5mins
_______________ translated high level language into machine code.
Interepretor
Assembler
Compiler
A&C
All of the above
________________language allows use of special hardware
Assembly
Vb.net
C#
None
Program needs to be converted into _________________ before running it
Assembly code
Vb.net code
Low level code
Machine code
Compiler produces ________________ file
dynamic
executable
static
non executable
DIM var1 AS is a _________________ error
Logical
Syntax
Run time
a & b
product=0
product=number*product
console.writeline(product)
is a _____________________ error
Logical
Synatx
Runtime
a & b
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?
will not be printed
4 times
6 times
5 times
DIM count=0
WHILE count > 0
console.writeline ("Hello World")
count= count +1
END WHILE
How many times 'Hello World' will be printed?
1
2
0
none of above
Run time error comes at _____________ time and its is division by ____________
Run time & 0
Compile time & 0
Development time & 0
none of above
VB.net is an example of ____________________
Integrated development environment
Interactive development environment
Innovative development environment
a & b
