NEW
Font size
WorksheetsTopic 1-2: Introduction to Computer & Programming Language
Total questions: 13
Worksheet time: 13mins
Which of these is NOT an example of high-level language?
C
C++
Java
Assembly
Which one of the following statement is TRUE for Assembly language?
This language need not be translated into machine language
It is the easiest language to write programs
It uses mnemonic codes
All of these
__________ translate from assembly language into specific machine language
Compiler
Assembler
JVM
Interpreter
____________ translates from high level language into specific machine language
Compiler
Assembler
JVM
Interpreter
What is the extension name given to a bytecode file in a Java program compilation?
.java
.class
.bytecode
.txt
What is the interpreter software used to execute bytecode known as?
JVM
Java
Assembler
Compiler
Which of these statements is TRUE about Java language compilation?
To get a Java source code to run, you need to run both Java compiler and interpreter on it
Java bytecode is the Javascript code produced from compilation
Java bytecode is not machine dependent, it can run on any processor
A Java interpreter is machine dependent
Which statement BEST describes logic errors?
System.out.print(5/0);
is an example of _________ error.
syntax
logic
runtime
