2 Mark Questions and Answer: IT2301-Java Programming
2 Mark Questions and Answer: IT2301-Java Programming
UNIT-I
1. How could Java classes direct program messages to the system console, but error
messages, say to a file?
The class System has a variable out that represents the standard output, and the
variable err that represents the standard error device. By default, they both point at the
system console. This how the standard output could be re-directed:
Stream st = new Stream(new FileOutputStream("output.txt")); System.setErr(st);
System.setOut(st);
8. Can you write a Java class that could be used both as an applet as well as an
application?
Yes. Add a main() method to the applet.
13. What's the difference between J2SDK 1.5 and J2SDK 5.0?
There's no difference, Sun Microsystems just re-branded this version.
14. What would you use to compare two String variables - the operator == or the
method equals()?
A. I'd use the method equals() to compare the values of the Strings and the == to
check if two variables point at the same instance of a String object.
15. Does it matter in what order catch statements for FileNotFoundException and
IOExceptipon are written?
Yes, it does. The FileNoFoundException is inherited from the IOException.
Exception's subclasses have to be caught first.
16. Can an inner class declared inside of a method access local variables of this
method?
A. It's possible if these variables are final.
17. What can go wrong if you replace && with & in the following code:
String a=null; if (a!=null && a.length()>10) {...}
A. A single ampersand here would lead to a NullPointerException.
2. You can create an abstract class that contains only abstract methods. On the
other hand, you can create an interface that declares the same methods. So can you
use abstract classes instead of interfaces?
Sometimes. But your class may be a descendent of another class and in this case the
interface is your only option.
3. What comes to mind when you hear about a young generation in Java?
Garbage collection.
5. If you're overriding the method equals() of an object, which other method you
might also consider?
hashCode()
6. You are planning to do an indexed search in a list of objects. Which of the two
Java collections should you use: ArrayList or LinkedList?
ArrayList
7. How would you make a copy of an entire Java object with its state?
Have this class implement Cloneable interface and call its method clone().
8. How can you minimize the need of garbage collection and make the memory use
more effective?
Use object pooling and weak object references.
9. There are two classes: A and B. The class B need to inform a class A when some
important event has happened. What Java technique would you use to implement
it?
If these classes are threads I'd consider notify() or notifyAll(). For regular classes you can
use the Observer interface.
10. What access level do you need to specify in the class declaration to ensure that
only classes from the same directory can access it?
You do not need to specify any access level, and Java will use a default package access
level.
11. What is garbage collection? What is the process that is responsible for doing that
in java? -
Reclaiming the unused memory by the invalid objects. Garbage collector is responsible
for this process
12. What kind of thread is the Garbage collector thread? - It is a daemon thread.
13.What is a daemon thread? - These are the threads which can run without user
intervention. The JVM can exit when there are daemon thread by killing them abruptly.
14. How will you invoke any external process in Java? -
Runtime.getRuntime().exec(.)
15. What is the finalize method do? - Before the invalid objects get garbage collected,
the JVM give the user a chance to clean up some resources before it got garbage
collected.
16. What is mutable object and immutable object? - If a object value is changeable
then we can call it as Mutable object. (Ex., StringBuffer, ) If you are not allowed to
change the value of an object, it is immutable object. (Ex., String, Integer, Float, )
17. What is the basic difference between string and stringbuffer object? - String is an
immutable object. StringBuffer is a mutable object.
18. What is the purpose of Void class? - The Void class is an uninstantiable placeholder
class to hold a reference to the Class object representing the primitive Java type void.
UNIT-III
1.What is the byte range? & What is the implementation of destroy method in java..
is it native or java code? -
128 to 127 .This method is not implemented.
2.What is a package? -
To group set of classes into a single unit is known as packaging. Packages provides wide
namespace ability.
3.What are the approaches that you will follow for making a program very
efficient? - By avoiding too much of static methods avoiding the excessive and
unnecessary use of synchronized methods Selection of related classes based on the
application (meaning synchronized classes for multiuser and non-synchronized classes
for single user) Usage of appropriate design patterns Using cache methodologies for
remote invocations Avoiding creation of variables within a loop and lot more.
6. What is JIT and its use? - Really, just a very fast compiler In this incarnation,
pretty much a one-pass compiler — no offline computations. So you can't look at the
whole method, rank the expressions according to which ones are re-used the most, and
then generate code. In theory terms, it's an on-line problem.
10. How will you get the platform dependent values like line separator, path
separator, etc., ?
Using Sytem.getProperty() (line.separator, path.separator, )
12. What is the final keyword denotes? - final keyword denotes that it is the final
implementation for that method or variable or class. You can't override that
method/variable/class any more.
13. What is the significance of ListIterator? - You can iterate back and forth.
UNIT-IV
1. How could Java classes direct program messages to the system console, but error
messages, say to a file?
The class System has a variable out that represents the standard output, and the variable
err that represents the standard error device. By default, they both point at the system
console. This how the standard output could be re-directed:
Stream st =
new Stream (new
FileOutputStream ("techinterviews_com.txt"));
System.setErr(st);
System.setOut(st);
2. What's the difference between an interface and an abstract class?
An abstract class may contain code in method bodies, which is not allowed in an
interface. With abstract classes, you have to inherit your class from it and Java does not
allow multiple inheritance. On the other hand, you can implement multiple interfaces in
your class.
10. Can you call one constructor from another if a class has multiple constructors
Yes. Use this() syntax.
13. What's the difference between J2SDK 1.5 and J2SDK 5.0?
There's no difference, Sun Microsystems just re-branded this version.
14. What would you use to compare two String variables - the operator == or the
method equals()?
I'd use the method equals() to compare the values of the Strings and the = = to check if
two variables point at the same instance of a String object.
15. Does it matter in what order catch statements for FileNotFoundException and
IOExceptipon are written?
A. Yes, it does. The FileNoFoundException is inherited from the IOException.
Exception's subclasses have to be caught first.
16. Can an inner class declared inside of a method access local variables of this
method?
It's possible if these variables are final.
17. What can go wrong if you replace && with & in the following code:
String a=null;
if (a!=null && a.length()>10)
{...}
A single ampersand here would lead to a NullPointerException.
UNIT-V
1. Do I need to use synchronized on setValue(int)? - It depends whether the method
affects method local variables, class static or instance variables. If only method local
variables are changed, the value is said to be confined by the method and is not prone
to threading issues.
4. What is the volatile modifier for? - The volatile modifier is used to identify
variables whose values should not be optimized by the Java Virtual Machine, by
caching the value for example. The volatile modifier is typically used for variables
that may be accessed or modified by numerous independent threads and signifies that
the value may change without synchronization.
5. Which class is the wait() method defined in? - The wait() method is defined in the
Object class, which is the ultimate superclass of all others. So the Thread class and
any Runnable implementation inherit this method from Object. The wait() method is
normally called on an object in a multi-threaded program to allow other threads to
run. The method should should only be called by a thread that has ownership of the
object’s monitor, which usually means it is in a synchronized method or
statement block.
7. What is a green thread? - A green thread refers to a mode of operation for the Java
Virtual Machine (JVM) in which all code is executed in a single operating system
thread. If the Java program has any concurrent threads, the JVM manages multi-
threading internally rather than using other operating system threads. There is a
significant processing overhead for the JVM to keep track of thread states and swap
between them, so green thread mode has been deprecated and removed from more
recent Java implementations. Current JVM implementations make more efficient use
of native operating system threads.
8. What are native operating system threads? - Native operating system threads are
those provided by the computer operating system that plays host to a Java application,
be it Windows, Mac or GNU/Linux. Operating system threads enable computers to
run many programs simultaneously on the same central processing unit (CPU)
without clashing over the use of system resources or spending lots of time running
one program at the expense of another. Operating system thread management is
usually optimised to specific microprocessor architecture and features so that it
operates much faster than Java green thread
13. You can create an abstract class that contains only abstract methods. On the
other hand, you can create an interface that declares the same methods. So can
you use abstract classes instead of interfaces?
Sometimes. But your class may be a descendent of another class and in this case the
interface is your only option.
14. What comes to mind when you hear about a young generation in Java?
Garbage collection.
15. What comes to mind when someone mentions a shallow copy in Java?
Object cloning.
16. If you're overriding the method equals() of an object, which other method you
might also consider?
hashCode()
17. You are planning to do an indexed search in a list of objects. Which of the two
Java collections should you use: ArrayList or LinkedList?
ArrayList
18. How would you make a copy of an entire Java object with its state?
Have this class implement Cloneable interface and call its method clone().
19. How can you minimize the need of garbage collection and make the memory use
more effective?
Use object pooling and weak object references.
20. There are two classes: A and B. The class B need to inform a class A when some
important event has happened. What Java technique would you use to
implement it?
If these classes are threads I'd consider notify() or notifyAll(). For regular classes you can
use the Observer interface.
21. What access level do you need to specify in the class declaration to ensure that
only classes from the same directory can access it?
You do not need to specify any access level, and Java will use a default package access
level.
Department of Information Technology IT2301-Java Programming