200 LATEST JAVA 2 Marks Questions and Answers p2222222
200 LATEST JAVA 2 Marks Questions and Answers p2222222
200 LATEST JAVA 2 Marks Questions and Answers p2222222
search keywords
Ads by Google
and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and
A: 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.
Study in Holland?
3: List any five features of Java?
Request Info Now!
A: Some features include Object Oriented, Platform Independent, Robust, Interpreted,
Multi-threaded
A: 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.
program that turns Java bytecode, which is a program that contains instructions that must
Like Page Share
be interpreted into instructions that can be sent directly to the processor.
Be the first of your friends to like this
6: Why Java is considered dynamic?
amount of run-time information that can be used to verify and resolve accesses to objects on
run-time.
A: 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
A: 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
A: A class is a blue print from which individual objects are created. A class can contain fields
A: 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
A: Instance variables are variables within a class but outside any method. These variables
A: These are variables declared with in a class, outside any method, with the static keyword.
A: Singleton class control object creation, limiting the number to one but allowing the
A: 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
18: List the three steps for creating an Object for a class?
20: What is the default value of float and double datatype in Java?
A: Default value of float and double datatype in different as compared to C/C++. For float
A: This data type is used to save space in large arrays, mainly in place of integers, since a
A: Class variables also known as static variables are declared with the static keyword in a
A: Java provides access modifiers to set access levels for classes, variables, methods and
is specified.
A: 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
A: 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.
27: Variables used in a switch statement can be used with which datatypes?
A: Variables used in a switch statement can only be a byte, short, int, or char.
A: This method is used to get the primitive data type of a certain String.
A: 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
A: The String class is considered as immutable, so that once it is created a String object
A: Use StringBuilder whenever possible because it is faster than StringBuffer. But, if thread
32: Which package is used for pattern matching with regular expressions?
PatternSyntaxException class.
A: 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
A: An exception is a problem that arises during the execution of a program. Exceptions are
A: 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.
A: It is an exception that occurs that probably could have been avoided by the programmer.
compliation.
A: The Exception class has two main subclasses : IOException class and RuntimeException
Class.
A: If a method does not handle a checked exception, the method must declare it using the
A: An exception can be thrown, either a newly instantiated one or an exception that you just
A: The finally keyword is used to create a block of code that follows a try block. A finally
42: What things should be kept in mind while creating your own exceptions in
Java?
If you want to write a checked exception that is automatically enforced by the Handle or
You want to write a runtime exception, you need to extend the RuntimeException class.
A: It is the process where one object acquires the properties of another. With the use of
A: If the method overrides one of its superclass’s methods, overridden method can be
invoked through the use of the keyword super. It can be also used to refer to a hidden field
A: Polymorphism is the ability of an object to take on many forms. The most common use of
polymorphism in OOP occurs when a parent class reference is used to refer to a child class
object.
A: It refers to the ability to make a class abstract in OOP. It helps to reduce the complexity
A: These classes cannot be instantiated and are either partially implemented or not at all
implemented. This class contains one or more abstract methods which are simply method
A: If you want a class to contain a particular method but you want the actual
implementation of that method to be determined by child classes, you can declare the
A: It is the technique of making the fields in a class private and providing access to the fields
via public methods. If a field is declared private, it cannot be accessed by anyone outside the
class, thereby hiding the fields within the class. Therefore encapsulation is also referred to
as data hiding.
A: The main benefit of encapsulation is the ability to modify our implemented code without
breaking the code of others who use our code. With this Encapsulation gives
Q: What is an Interface?
A: It includes:
A: Packages are used in Java in-order to prevent naming conflicts, to control access, to
etc., easier.
A: A multithreaded program contains two or more parts that can run concurrently. Each
part of such a program is called a thread, and each thread defines a separate path of
execution.
A: Thread can be created by: implementing Runnable interface, extending the Thread class.
Q: What is an applet?
A: An applet is a Java program that runs in a Web browser. An applet can be a fully
functional Java application because it has the entire Java API at its disposal.
A: It uses garbage collection to free the memory. By cleaning those objects that is no longer
A: It is used with variables or methods and used to call constructer of same class.
A: It is a collection of element which cannot contain duplicate elements. The Set interface
contains only methods inherited from Collection and adds the restriction that duplicate
Q: Explain TreeSet?
A: It is used to sort collections and arrays of objects using the collections.sort() and
java.utils. The objects of the class implementing the Comparable interface can be ordered.
A: It includes:
Without throws, Checked exception cannot be handled where as checked exception can be
executes Java programs. It provides the minimum requirements for executing a Java
application;
A: JAR files is Java Archive fles and it aggregates many files into one. It holds Java classes
in a library. JAR files are built on ZIP file format and have .jar file extension.
A: This is Web Archive File and used to store XML, java classes, and JavaServer pages.
which is used to distribute a collection of JavaServer Pages, Java Servlets, Java classes,
A: Object based programming languages follow all the features of OOPs except Inheritance.
A: The java compiler creates a default constructor only if there is no constructor in the class.
A: It is used to initialize the static data member, It is excuted before main method at the
time of classloading.
Q: Define composition?
A: Holding the reference of the other class within some other class is known as composition.
A: If a class has multiple functions by same name but different parameters, it is known as
Method Overloading.
provides the specific implementation of the method that is already provided by its super
class parameter must be different in case of overloading, parameter must be same in case of
overriding.
A: Final classes are created so the methods implemented by that class cannot be overridden.
It can’t be inherited.
Q: What is NullPointerException?
Q: What are the ways in which a thread can enter the waiting state?
A: A thread can enter the waiting state by invoking its sleep() method, by blocking on IO, by
method. It can also enter the waiting state by invoking its (deprecated) suspend() method.
A: 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.
A: After a thread is started, via its start() method of the Thread class, the JVM invokes the
A: When a task invokes its yield() method, it returns to the ready state. When a task invokes
A: The Vector class provides the capability to implement a growable 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
Q: How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8
characters?
A: Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII character set uses
only 7 bits, it is usually represented as 8 bits. UTF-8 represents characters using 8, 16, and
A: These are classes that allow primitive types to be accessed as objects. Example: Integer,
A: The Frame class extends Window to define a main application window that can have a
menu bar.
A: javax.Swing package. All components in Swing, except JApplet, JDialog, JFrame and
A: The paint() method supports painting via a Graphics object. The repaint() method is used
A: It is used to create objects that provide access to the files and directories of a local file
system.
Q: What is the difference between the Reader/Writer class hierarchy and the
Q: Which class should you use to obtain design information about an object?
A: The Class class is used to obtain information about an object’s design and java.lang.Class
A: A static variable is associated with the class as a whole rather than with specific instances
of a class. Non-static variables take on unique values with each object instance.
A: It is part of the analysis of a program and describes a situation that a program might
encounter and what behavior the program should exhibit in that circumstance.
A: Sub class inherits all the public and protected methods and the implementation. It also
A: If there is a button instance called b1, you may add menu short cut by calling
b1.setMnemonic(‘F’), so the user may be able to use Alt+F to click the button.
Q: Can you write a Java class that could be used both as an applet as well as an
application?
A: AWT components are heavy-weight, whereas Swing components are lightweight. Heavy
weight components depend on the local windowing toolkit. For example, java.awt.Button is
a heavy weight component, when it is running on the Java platform for Unix platform, it
A: Constructors must have the same name as the class and can not return a value. They are
only called once while regular methods could be called many times.
A: Yes, since inheritance inherits everything from the super class and interface, it may make
the subclass too clustering and sometimes error-prone when dynamic overriding or
A: When copying elements between different arrays, if the source or destination arguments
are not arrays or their types are not compatible, an ArrayStoreException will be thrown.
Q: Can you call one constructor from another if a class has multiple
constructors?
A: The code sleep(2000); puts thread aside for exactly two seconds. The code wait(2000),
causes a wait of up to two second. A thread could stop waiting earlier if it receives the
notify() or notifyAll() call. The method wait() is defined in the class Object and the method
A: A transient variable is a variable that may not be serialized during Serialization and
Q: What is synchronization?
resources. synchronized keyword in java provides locking which ensures mutual exclusive
A: The Collections API is a set of classes and interfaces that support operations on
collections of objects.
Q: Does garbage collection guarantee that a program will not run out of
memory?
A: Garbage collection does not guarantee that a program will not run out of memory. It is
possible for programs to use up memory resources faster than they are garbage collected. It
is also possible for programs to create objects that are not subject to garbage collection.
A: Panel is the immediate superclass. A panel provides space in which an application can
A: A break statement results in the termination of the statement to which it applies (switch,
for, do, or while). A continue statement is used to end the current loop iteration and return
A: A private variable may only be accessed within the class in which it is declared.
A: The eight primitive types are byte, char, short, int, long, float, double, and boolean.
A: When a window is repainted by the AWT painting thread, it sets the clipping regions to
garbage collector?
A: The garbage collector invokes an object’s finalize() method when it detects that the object
ArithmeticException?
A: Yes
A: A class loader is an object that is responsible for loading classes. The class ClassLoader is
an abstract class.
A: An abstract class can have instance methods that implement a default behavior. An
Interface can only declare constants and instance methods, but cannot implement default
behavior and all methods are implicitly abstract. An interface has all public members and
A: Null, unless it is defined explicitly.Q: Can a top level class be private or protected?
A: No, a top level class can not be private or protected. It can have either “public” or no
A: We can pass them around as method parameters where a method expects an object. It
Exceptions are conditions that occur because of bad input etc. e.g. FileNotFoundException
will be thrown if the specified file does not exist.Q: Is it necessary that each try block
A: It is not necessary that each try block must be followed by a catch block. It should be
followed by either a catch block or a finally block.Q: When a thread is created and
A: A thread is in the ready state as initial state after it has been created and started.Q:
A: The Locale class is used to tailor program output to the conventions of a particular
synchronized statements?
A: Synchronized methods are methods that are used to control access to an object. A
synchronized statement can only be executed after a thread has acquired the lock for the
A: Binding refers to the linking of a procedure call to the code to be executed in response to
the call. Dynamic binding means that the code associated with a given procedure call is not
known until the time of the call at run-time.Q: Can constructor be inherited?
A: No, constructor cannot be inherited.Q: What are the advantages of ArrayList over
arrays?
A: ArrayList can grow dynamically and provides more powerful insertion and search
A: Deletion in linked list is fast because it involves only updating the next pointer in the
node before the deleted node and updating the previous pointer in the node after the
deleted node.Q: How do you decide when to use ArrayList and LinkedList?
A: If you need to frequently add and remove elements from the middle of the list and only
access the list elements sequentially, then LinkedList should be used. If you need to support
random access, without inserting or removing elements from any place other than the end,
A: It is a collection returned by the values() method of the Map Interface, It contains all the
A: The dot operator(.) is used to access the instance variables and methods of class
A: Private constructor is used if you do not want other classes to instantiate the object and
A: Type casting means treating a variable of one type as though it is another type.Q:
Newborn state
Runnable state
Running state
Blocked state
Dead state
A: The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have
Q: Which method of the Component class is used to set the position and size of
a component?
A: MenuItem class
A: Import statement is allowed at the beginning of the program file after package statement.
Q: What is currentThread()?
A: The main thread is created automatically and it begins to execute immediately when a
program starts. It ia thread from which all other child threads originate.
Initialization
Starting
Stopping
Destroying
Painting
Q: Define canvas?
A: It is a simple drawing surface which are used for painting images or to perform other
graphical operations.
A: It refers to writing programs that execute across multiple devices (computers), in which
Q: What is a Socket?
A: Sockets provide the communication mechanism between two computers using TCP. A
client program creates a socket on its end of the communication and attempts to connect
A: Sockets are flexible and sufficient. Efficient socket based programming can be easily
A: Socket based communications allows only to send packets of raw data between
applications. Both the client-side and server-side have to provide mechanisms to make the
Q: Which class is used by server applications to obtain a port and listen for
client requests?
A: java.net.ServerSocket class is used by server applications to obtain a port and listen for
client requests
Q: Which class represents the socket that both the client and server use to
A: java.net.Socket class represents the socket that both the client and server use to
A: Generics provide compile-time type safety that allows programmers to catch invalid types
at compile time. Java Generic methods and generic classes enable programmers to specify,
with a single method declaration, a set of related methods or, with a single class declaration,
A: No, there is no need to import this package. It is by default loaded internally by the JVM.
A: If a class is declared within a class and specify the static modifier, the compiler treats the
class just like any other top-level class. Nested top-level class is an Inner class.
writeExternal. These methods give you a control over the serialization mechanism.
Q: If System.exit (0); is written at the end of the try block, will the finally block
still execute?
A: No in this case the finally block will not execute because when you say System.exit (0);
the control immediately goes out of the program, and thus finally never executes.
A: Daemon thread is a low priority thread, which runs intermittently in the back ground
doing the garbage collection operation for the java runtime system.
A: The size is the number of elements actually stored in the vector, while capacity is the
A: Yes a Vector can contain heterogenous objects. Because a Vector stores everything in
terms of Object.
Q: What is an enumeration?
structure from which the enumeration is obtained. It allows sequential access to all the
A: Path and Classpath are operating system level environment variales. Path is defines
where the system can find the executables(.exe) files and classpath is used to specify the
code?
A: A static method should not refer to instance variables without creating an instance and
A: Yes an Interface can inherit another Interface, for that matter an Interface can extend
overriding?
A: Polymorphism
access to the object. A thread may execute a synchronized method of an object only after it
Q: What is Downcasting?
A: It is the casting from a general to a more specific type, i.e. casting down the hierarchy.
Q: What are order of precedence and associativity and how are they used?
right-to-left.
A: A protected method may only be accessed by classes or interfaces of the same package or
A: When a class is defined within a scope of another class, then it becomes inner class. If the
access modifier of the inner class is static, then it becomes nested class.
A: Overridden methods must have the same name, argument list, and return type. The
overriding method may not limit the access of the method it overrides.
A: A child object constructor always first needs to construct its parent. In Java it is done via
Q: How does a try statement determine which catch clause should be used to
handle an exception?
A: When an exception is thrown within the body of a try statement, the catch clauses of the
try statement are examined in the order in which they appear. The first catch clause that is
capable of handling the exception is executed. The remaining catch clauses are ignored.
Q: What will be the default values of all the elements of an array defined as an
instance variable?
A: If the array is an array of primitive types, then all the elements of the array will be
Interview Questions and Answers pdf free download for freshers experienced MCQs Real time certification basic