Java Programming Interview Questions and answers pdf | Sample Papers

Samplepaperz.blogspot.com

Samplepaperz.blogspot.com
Home » » Java Programming Interview Questions and answers pdf

Java Programming Interview Questions and answers pdf

Written By Blogger on 27 January 2013 | 00:26




 
Java Programming Interview Questions and answers

                

             You can download latest  Java Programming  Interview Questions & answers pdf 2015 from here.




  • What is a transient variable?

A transient variable is a variable that may not be serialized.
Which containers use a border layout as their default layout?
The window, Frame and Dialog classes use a border layout as their default layout in Java Programming.
How are Observer and Observable used in Java Programming?
Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects.

  • What is synchronization and why is it important in Java Programming?

With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that object’s value. This often causes dirty data and leads to significant errors.
  • What are synchronized methods and synchronized statements in Java Programming?
Synchronized methods are methods that are used to control access to an object. A thread only executes a synchronized method after it has acquired the lock for the method’s object or class. Synchronized statements are similar to synchronized methods. A synchronized statement can only be executed after a thread has acquired the lock for the object or class referenced in the synchronized statement.
  • What are three ways in which a thread can enter the waiting state in Java Programming?
A thread can enter the waiting state by invoking its sleep() method, by blocking on I/O, by unsuccessfully attempting to acquire an object’s lock, or by invoking an object’s wait() method. It can also enter the waiting state by invoking its (deprecated) suspend() method.
  • Can a lock be acquired on a class in Java Programming?
Yes, a lock can be acquired on a class. This lock is acquired on the class’s Class object.
  • What’s new with the stop(), suspend() and resume() methods in JDK 1.2?
The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.
  • What is the preferred size of a component in Java Programming?
The preferred size of a component is the minimum component size that will allow the component to display normally.
  • What method is used to specify a container’s layout in Java Programming?
The setLayout() method is used to specify a container’s layout in Java Programming.
  • Which containers use a FlowLayout as their default layout in Java Programming?
The Panel and Applet classes use the FlowLayout as their default layout.
  • What state does a thread enter when it terminates its processing in Java Programming?
When a thread terminates its processing, it enters the dead state.
What is the Collections API in Java Programming?
The Collections API is a set of classes and interfaces that support operations on collections of objects.

  • What is the List interface in Java Programming?

The List interface provides support for ordered collections of objects.
  • How does Java handle integer overflows and underflows?
It uses those low order bytes of the result that can fit into the size of the type allowed by the operation.
  • What is the Vector class in Java Programming?

The Vector class in Java Programming provides the capability to implement a growable array of objects
  • What modifiers may be used with an inner class that is a member of an outer class in Java Programming?
A (non-local) inner class may be declared as public, protected, private, static, final, or abstract.
  • If a method is declared as protected, where may the method be accessed in Java Programming?
A protected method may only be accessed by classes or interfaces of the same package or by subclasses of the class in which it is declared.
  • What is an Iterator interface in Java Programming?

The Iterator interface is used to step through the elements of a Collection.
  • How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters in Java Programming?
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 18 bit patterns. UTF-16 uses 16-bit and larger bit patterns.
  • What is the difference between yielding and sleeping in Java Programming?
When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it returns to the waiting state.
  • Is sizeof a keyword in Java Programming?
The sizeof operator is not a keyword in Java Programming.
  • What are wrapped classes in Java Programming?

Wrapped classes are classes that allow primitive types to be accessed as objects.
  • Does garbage collection guarantee that a program will not run out of memory?
No, it doesn’t. 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
  • What is the difference between preemptive scheduling and time slicing in Java Programming?
Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under time slicing, a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based on priority and other factors.
  • Name Component subclasses that support painting in Java Programming?
The Canvas, Frame, Panel, and Applet classes support painting.

Computer science engineering jobs for Freshers

 

Other Important Downloads













27 Jan 2013 Albert Augustine

6 comments:

  1. Results for:
    java interview questions and answers pdf
    java interview questions and answers
    java interview questions
    java interview questions and answers for freshers
    java programming interview questions and answers
    java programming interview questions

    ReplyDelete
  2. A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
    website: geeksforgeeks.org

    ReplyDelete
  3. A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
    website: geeksforgeeks.org

    ReplyDelete
  4. A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
    website: geeksforgeeks.org

    ReplyDelete
  5. A Computer Science portal for geeks. It contains well written, well thought and well
    explained computer science and programming articles, quizzes and practice/competitive
    programming/company interview Questions.
    website: geeksforgeeks.org

    ReplyDelete
  6. A Computer Science portal for geeks. It contains well written, well thought and well
    explained computer science and programming articles, quizzes and practice/competitive
    programming/company interview Questions.
    website: geeksforgeeks.org

    ReplyDelete

Search