Java Questions and Answers ( III )
- Mahesh Bhat M
- Jun 26, 2017
- 3 min read
1) What do you know about Java?
Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
2) What are the supported platforms by Java Programming Language?
Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX/Linux like HP-Unix, Sun Solaris, Redhat Linux, Ubuntu, CentOS, etc.
3) List any five features of Java?
Some features include Object Oriented, Platform Independent, Robust, Interpreted, Multi-threaded
4) Why is Java Architectural Neutral?
It’s compiler generates an architecture-neutral object file format, which makes the compiled code to be executable on many processors, with the presence of Java runtime system.
5) How Java enabled High Performance?
Java uses Just-In-Time compiler to enable high performance. Just-In-Time compiler is a program that turns Java bytecode, which is a program that contains instructions that must be interpreted into instructions that can be sent directly to the processor.
6) Why Java is considered dynamic?
It is designed to adapt to an evolving environment. Java programs can carry extensive amount of run-time information that can be used to verify and resolve accesses to objects on run-time.
What is Java Virtual Machine and how it is considered in context of
7) Java’s platform independent feature?
When Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by virtual Machine (JVM) on whichever platform it is being run.
8) List two Java IDE’s?
Netbeans, Eclipse, etc.
9) List some Java keywords(unlike C, C++ keywords)?
Some Java keywords are import, super, finally, etc.
10) What do you mean by Object?
Object is a runtime entity and it’s state is stored in fields and behavior is shown via methods. Methods operate on an object's internal state and serve as the primary mechanism for object-to-object communication.
11)Define class?
A class is a blue print from which individual objects are created. A class can contain fields and methods to describe the behavior of an object.
12)What kind of variables a class can consist of?
A class consist of Local variable, instance variables and class variables.
13)What is a Local Variable?
Variables defined inside methods, constructors or blocks are called local variables. The variable will be declared and initialized within the method and it will be destroyed when the method has completed.
14) What is a Instance Variable?
Instance variables are variables within a class but outside any method. These variables are instantiated when the class is loaded.
15) What is a Class Variable?
These are variables declared with in a class, outside any method, with the static keyword.
16) What is Singleton class?
Singleton class control object creation, limiting the number to one but allowing the flexibility to create more objects if the situation changes.
17) What do you mean by Constructor?
Constructor gets invoked when a new object is created. Every class has a constructor. If we do not explicitly write a constructor for a class the java compiler builds a default constructor for that class.
18) List the three steps for creating an Object for a class?
An Object is first declared, then instantiated and then it is initialized.
19) What is the default value of byte datatype in Java?
Default value of byte datatype is 0.
20) What is the default value of float and double datatype in Java?
Default value of float and double datatype in different as compared to C/C++. For float its 0.0f and for double it’s 0.0d
21) When a byte datatype is used?
This data type is used to save space in large arrays, mainly in place of integers, since a byte is four times smaller than an int.
22) How does multi-threading take place on a computer with a single CPU?
The operating system's task scheduler allocates execution time to multiple tasks. By quickly switching between executing tasks, it creates the impression that tasks execute sequentially.
23) What invokes a thread's run() method?
After a thread is started, via its start() method of the Thread class, the JVM invokes the thread's run() method when the thread is initially executed.
24) Does it matter in what order catch statements for FileNotFoundException and IOException are written?
Yes, it does. The FileNoFoundException is inherited from the IOException. Exception's sub-classes have to be caught first.
25) Why Vector class is used?
The Vector class provides the capability to implement a grow able array of objects. Vector proves to be very useful if you don't know the size of the array in advance, or you just need one that can change sizes over the lifetime of a program.
Comments