Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

151.

When throws keyword is used?

Answer»

If a method does not handle a checked exception, the method must declare it using the throwskeyword. The throws keyword appears at the end of a method's signature.

152.

Which are the two subclasses under Exception class?

Answer»

The Exception class has two main subclasses : IOException class and RuntimeException Class.

153.

Explain Runtime Exceptions?

Answer»

It is an exception that occurs that probably could have been avoided by the programmer. As opposed to checked exceptions, runtime exceptions are ignored at the time of compliation.

154.

What do you mean by Checked Exceptions?

Answer»

It is an exception that is typically a user error or a problem that cannot be foreseen by the programmer. For example, if a file is to be opened, but the file cannot be found, an exception occurs. These exceptions cannot simply be ignored at the time of compilation.

155.

What is finalize() method?

Answer»

It is possible to define a method that will be called just before an object's final destruction by the garbage collector. This method is called finalize( ), and it can be used to ensure that an object terminates cleanly.

156.

java.util.regex consists of which classes?

Answer»

java.util.regex consists of three classes − Pattern class, Matcher class and PatternSyntaxException class.

157.

Which package is used for pattern matching with regular expressions?

Answer»

java.util.regex package is used for this purpose.

158.

What is the difference between StringBuffer and StringBuilder class?

Answer»

Use StringBuilder whenever possible because it is faster than StringBuffer. But, if thread safety is necessary then use StringBuffer objects.

159.

Why is StringBuffer called mutable?

Answer»

The String class is considered as immutable, so that once it is created a String object cannot be changed. If there is a necessity to make alot of modifications to Strings of characters then StringBuffer should be used.

160.

Why is String class considered immutable?

Answer»

The String class is immutable, so that once it is created a String object cannot be changed. Since String is immutable it can safely be shared between many threads ,which is considered very important for multithreaded programming.

161.

When parseInt() method can be used?

Answer»

This method is used to get the primitive data type of a certain String.

162.

Variables used in a switch statement can be used with which datatypes?

Answer»

Variables used in a switch statement can only be a string, enum, byte, short, int, or char.

163.

According to Java Operator precedence, which operator is considered to be with highest precedence?

Answer»

Postfix operators i.e () [] . is at the highest precedence.

164.

What do you mean by synchronized Non Access Modifier?

Answer»

Java provides these modifiers for providing functionalities other than Access Modifiers, synchronized used to indicate that a method can be accessed by only one thread at a time.

165.

What is protected access modifier?

Answer»

Variables, methods and constructors which are declared protected in a superclass can be accessed only by the subclasses in other package or any class within the package of the protected members' class.

166.

What do you mean by Access Modifier?

Answer»

Java provides access modifiers to set access levels for classes, variables, methods and constructors. A member has package or default accessibility when no accessibility modifier is specified.

167.

When a byte datatype is used?

Answer»

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.

168.

What is the default value of float and double datatype in Java?

Answer»

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

169.

What is the default value of byte datatype in Java?

Answer»

Default value of byte datatype is 0.

170.

List the three steps for creating an Object for a class?

Answer»

An Object is first declared, then instantiated and then it is initialized.

171.

What do you mean by Constructor?

Answer»

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.

172.

What is a Class Variable?

Answer»

These are variables declared with in a class, outside any method, with the static keyword.

173.

What is a Instance Variable?

Answer»

Instance variables are variables within a class but outside any method. These variables are instantiated when the class is loaded.

174.

What is a Local Variable?

Answer»

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.

175.

What kind of variables a class can consist of?

Answer»

A class consist of Local variable, instance variables and class variables.

176.

Define class?

Answer»

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.

177.

What do you mean by Object?

Answer»

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.

178.

List some Java keywords(unlike C, C++ keywords)?

Answer»

Some Java keywords are import, super, finally, etc.

179.

List two Java IDE’s?

Answer»

Netbeans, Eclipse, etc.

180.

What is Java Virtual Machine and how it is considered in context of Java’s platform independent feature?

Answer»

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.

181.

Why Java is considered dynamic?

Answer»

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.

182.

How Java enabled High Performance?

Answer»

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.

183.

Why is Java Architectural Neutral?

Answer»

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.

184.

List any five features of Java?

Answer»

Some features include Object Oriented, Platform Independent, Robust, Interpreted, Multi-threaded

185.

What are the supported platforms by Java Programming Language?

Answer»

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.

186.

What do you know about Java?

Answer»

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.