KnowledgeBoat Logo
OPEN IN APP

Chapter 2

Introduction to Java

Class 9 - Logix Kips ICSE Computer Applications with BlueJ



Multiple Choice Questions

Question 1

Java applications ...........

  1. Are platform dependent
  2. Don't need a platform to run
  3. Are platform independent ✓
  4. Can't run on Windows

Question 2

JVM stands for ...........

  1. Java Visual Monitor
  2. Java Video Monitor
  3. Java Virtual Monitor
  4. Java Virtual Machine ✓

Question 3

JRE stands for ...........

  1. Java Runtime Editor
  2. Java Runtime Environment ✓
  3. Java Runtime Expression
  4. Java Runtime Enabler

Question 4

Stand-alone Java applications ........... for execution.

  1. Need Java-compatible web browser
  2. Need an assembler
  3. Don't need Java-compatible web browser ✓
  4. Need a linker

Question 5

Java uses ........... for execution.

  1. Compiler and interpreter ✓
  2. Interpreter only
  3. Compiler only
  4. None of these

Question 6

A program that translates code written in a high-level language into machine code is called ...........

  1. Assembler
  2. Linker
  3. Compiler ✓
  4. None of these

Question 7

A program that translates an assembly language program into machine code is called a/an ...........

  1. Assembler ✓
  2. Linker
  3. Compiler
  4. None of these

Question 8

Java is ...........

  1. Robust
  2. Object oriented
  3. Secure
  4. All of these ✓

Question 9

Java can be used to write ...........

  1. Stand-alone applications only
  2. Both stand-alone and internet applications ✓
  3. Internet applications only
  4. None of these

Question 10

Java applications can run on ...........

  1. Windows platform
  2. Macintosh platform
  3. UNIX platform
  4. All of these ✓

State whether given statements are True or False

Question 1

Stand-alone Java applications cannot run independently on a computer.
False

Question 2

A console based Java application is designed to be used via a text-only interface.
True

Question 3

Java Applets are Java applications that run within a web browser.
True

Question 4

The machine language version of the source code generated by the compilation process is specific to the processor you are compiling on.
True

Question 5

The Bytecode files are generated with the ".java" extension.
False

Question 6

Java uses a combination of compilation and interpretation.
True

Question 7

Just-In-Time (JIT) compiler compiles selected portions of Bytecode into executable code.
True

Question 8

An interpreter translates the source code instructions into machine code all at once.
False

Question 9

JVM stands for Java Virtual Monitor.
False

Question 10

Machine language for JVM is called Bytecode.
True

Assignment Questions

Question 1

Write a short note on types of Java programs.

Answer

There are two types of Java programs — Java Stand-Alone Applications and Java Applets.

Java Stand-Alone Applications
A stand-alone Java application refers to a Java program that can run independently on a computer. Acrobat Reader is an excellent example of this type of application. In Java, every stand-alone application begins its execution with the main() method. Java stand-alone applications can be classified into two types:
a. Console based applications
b. Graphical User Interface based applications

Java Applets
Java applets are Java applications that run within a web browser. They are mainly used for internet programming. The applet is capable of performing many tasks on a web page, such as displaying graphics, playing sounds, and accepting user input.

Question 2

How is Java platform independent?

Answer

Java applications are platform independent, which means that Java applications can be run on any platform. After Java source code is compiled, it is converted into bytecode. The bytecode is then interpreted by the JVM. JVM can be installed on several different operating systems such as Windows, UNIX, Macintosh, etc. JVM allows Java programs to run on almost any computer regardless of its hardware configuration. Due to this factor, Java is considered as a platform independent language.

Question 3

Describe the traditional compilation process with a suitable diagram.

Answer

In traditional compilation process, the machine language code generated by the compiler is specific to the platform for which the source code is compiled. Every high-level language has a separate platform specific compiler to generate the machine code that can run on the specific platform. For example, the executable file generated by compiling a C++ program on Windows platform will not run on Macintosh. It needs to be compiled with C++ Macintosh compiler. The below diagram illustrates this:

ICSE Logix class 10 solutions illustrating Traditional Compilation Process

Question 4

Describe the Java compilation process with a suitable diagram.

Answer

In Java compilation process, the source code of a Java program is compiled to an intermediate binary code called the Bytecode. This Bytecode cannot be directly executed by the machine. It is understood by a virtual machine known as Java Virtual Machine or JVM. JVM contains a Java interpreter which converts the Bytecode into machine code of the target computer. JVM is platform specific i.e. each platform has its own JVM. But once the proper JVM is installed on the machine, it can run any Java Bytecode program. The below diagram illustrates this:

ICSE Logix class 10 solutions illustrating Java Compilation Process

Question 5

How is traditional compilation process different from Java compilation process?

Answer

In traditional compilation process, the machine language code generated by the compiler is specific to the platform for which the source code is compiled. The executable file generated for one platform like Windows will not work on other platforms like Macintosh. In Java compilation process, the source code of a Java program is compiled to an intermediate binary code called the Bytecode. This Bytecode is interpreted and executed by JVM on the target platform. Bytecode is platform independent so the same Bytecode which is generated for one platform like Windows will work on other platforms like Macintosh without any modifications.

Question 6

What are JVM and JIT?

Answer

JVM
JVM stands for the Java Virtual Machine. It is a virtual machine that runs Java programs and can be installed on several different operating systems such as Windows, UNIX, Macintosh etc. JVMs allow Java programs to run on almost any computer. A JVM processes instructions similar to a physical processor. However, the Java code (with "java" extension) must first be converted into Bytecode that the JVM understands.

JIT
JIT is the Just-In-Time compiler included in the JVM that compiles selected portions of the Bytecode into executable codes to improve the execution performance.

Question 7

Distinguish between the following:

a. Source code and Object code

Answer

Source CodeObject Code
It is a set of instructions written in a high-level programming language.It is the compiler generated machine language version of the source code.
It can be read and understood by humans.It is not human readable but is understood by machines.

b. Compiler and Interpreter

Answer

CompilerInterpreter
It converts the whole source program into the object program at once.It converts the source program into the object program, one line at a time.
It displays the errors for the whole program together, after the compilation.It displays the error one line at a time and only after fixing that error the control goes to the next line.

c. ".java" file and ".class" file

Answer

".java" file".class" file
It contains the Java source code of the program.It contains the Bytecode of the program.
It is written by human (programmer)It is generated by Java compiler.

Question 8

What is Java Bytecode?

Answer

The programs written in Java are compiled into a machine language for a virtual computer called Java Virtual Machine (JVM). The machine language for this special Java Virtual Machine is called Java Bytecode. The Bytecode files are generated with the ".class" extension.

Question 9

Describe the slogan, "Write once, run anywhere" in relation to Java.

Answer

Bytecode and JVM makes Java programs platform independent. This is one of the most important and powerful features of Java. The Bytecode of a Java program can be run on any platform that has a corresponding JVM installed on it. No modifications to this Bytecode are required. Hence, it is said that Java provides "Write once, run anywhere" capabilities.

Question 10

Describe four features of Java.

Answer

Four features of Java are:

  1. Object Oriented — Java is an object-oriented programming language because it treats everything as an object. The entire program code and data resides within objects and classes. This enables us to easily use and extend the object model.
  2. Robust — Java is a robust and reliable programming language. It has strict compile time and runtime checking of data types. Memory allocation and de-allocation is automatic in Java, so there is less for the programmer to worry about.
  3. Platform Independent — The concept of "Write once, run anywhere", is one of the most important and powerful features of Java. Java applications can run on any platform that has a corresponding JVM installed on it.
  4. Simple — Java is simple and easy to learn programming language. The removal of many unreliable features of C and C++ (its predecessors) has simplified its understanding and implementation.

Video Explanations

PrevNext