1 | Q | Why threads block or enters to waiting state on I/O? | |
A | Threads enters to waiting state or block on I/O because other threads can execute while the I/O operations are performed. | ||
2 | Q | What are transient variables in java? | |
A | Transient variables are variable that cannot be serialized. | ||
3 | Q | How Observer and Observable are used? | |
A | Subclass of Observable class maintain a list of observers. Whenever an Observable object is updated, it invokes the update() method of each of its observers to notify the observers that it has a changed state. An observer is any object that implements the interface Observer. | ||
4 | Q | What is synchronization | |
A | Synchronization is the ability to control the access of multiple threads to shared resources. Synchronization stops multithreading. With synchronization , at a time only one thread will be able to access a shared resource. | ||
5 | Q | What is List interface ? | |
A | List is an ordered collection of objects. | ||
6 | Q | What is a Vector | |
A | Vector is a grow able array of objects. | ||
7 | Q | What is the difference between yield() and sleep()? | |
A | When a object invokes yield() it returns to ready state. But when an object invokes sleep() method enters to not ready state. | ||
8 | Q | What are Wrapper Classes ? | |
A | They are wrappers to primitive data types. They allow us to access primitives as objects. | ||
9 | Q | Can we call finalize() method ? | |
A | Yes. Nobody will stop us to call any method , if it is accessible in our class. But a garbage collector cannot call an object's finalize method if that object is reachable. | ||
10 | Q | What is the difference between time slicing and preemptive scheduling ? | |
A | In preemptive scheduling, highest priority task continues execution till it enters a not running state or a higher priority task comes into existence. In time slicing, the task continues its execution for a predefined period of time and reenters the pool of ready tasks. | ||
11 | Q | What is the initial state of a thread when it is created and started? | |
A | The thread is in ready state. | ||
12 | Q | Can we declare an anonymous class as both extending a class and implementing an interface? | |
A | No. An anonymous class can extend a class or implement an interface, but it cannot be declared to do both | ||
13 | Q | What are the differences between boolean && operator and & operator | |
A | When an expression containing the & operator is evaluated, both operands are evaluated. And the & operator is applied to the operand. When an expression containing && operator is evaluated, the first operand is evaluated. If the first operand returns a value of true then only the second operand is evaluated otherwise the second part will not get executed. && is also called short cut and. | ||
14 | Q | What is the use of the finally block? | |
A | Finally is the block of code that executes always. The code in finally block will execute even if an exception is occurred. finally will not execute when the user calls System.exit(). | ||
15 | Q | What is an abstract method ? | |
A | An abstract method is a method that don't have a body. It is declared with modifier abstract. | ||
16 | Q | what is a the difference between System.err and System.out | |
A | We can redirect System.out to another file but we cannot redirect System.err stream | ||
17 | Q | What are the differences between an abstract class and an interface? | |
A | An abstract class can have concrete method, which is not allowed in an interface. Abstract class can have private or protected methods and variables and only public methods and variables are allowed in interface. We can implement more than one interface , but we can extend only one abstract class. Interfaces provides loose coupling where as abstract class provides tight coupling. | ||
18 | Q | What is the difference between synchronized block and synchronized method ? | |
A | Synchronized blocks place locks for the specified block where as synchronized methods place locks for the entire method. | ||
19 | Q | How can you force garbage collection in java? | |
A | You cannot force Garbage Collection, but you can request for it by calling the method System.gc(). But it doesn't mean that Garbage Collection will start immediately. The garbage collection is a low priority thread of JVM. | ||
20 | Q | How can you call a constructor from another constructor ? | |
A | By using this() reference. | ||
21 | Q | How can you call the constructor of super class ? | |
A | By using super() syntax. | ||
22 | Q | What's the difference between normal methods and constructors? | |
A | Constructors must have the same name of the class and can not have a return type. They are called only once, while regular methods can be called whenever required. We cannot explicitly call a constructor. | ||
23 | Q | What is the use of packages in java ? | |
A | Packages are a way to organize files in java when a project consists of more than one module. It helps in resolving name conflicts when different modules have classes with the same names. | ||
24 | Q | What must be the order of catch blocks when catching more than one exception? | |
A | The sub classes must come first. Otherwise it will give a compile time error. | ||
25 | Q | How can we call a method or variable of the super class from child class ? | |
A | We can use super.method() or super.variable syntax for this purpose. | ||
26 | Q | If you are overriding equals() method of a class, what other methods you might need to override ? | |
A | hashCode | ||
27 | Q | How can you create your own exception ? | |
A | Our class must extend either Exception or its sub class | ||
28 | Q | What is serialization ? | |
A | Serialization is the process of saving the state of an object. | ||
29 | Q | What is de-serialization? | |
A | De-serialization is the process of restoring the state of an object. | ||
30 | Q | What is externalizable ? | |
A | It is an interface that extends Serializable. It is having two different methods writeExternal() and readExternal. This interface allows us to customize the output. | ||
31 | Q | Does garbage collection guarantee that a program will not run out of memory? | |
Garbage collection does not guarantee that a program will not run out of memory. It is also possible for programs to create objects that are not subject to garbage collection. And there is no guarantee that Garbage Collection thread will be executed. | |||
A | |||
32 | Q | What is a native method? | |
A | A native method is a method that is implemented in a language other than Java. | ||
33 | Q | What are different type of exceptions in Java? | |
A | There are two types of exceptions in java. Checked exceptions and Unchecked exceptions. Any exception that is is derived from Throwable and Exception is called checked exception except RuntimeException and its sub classes. The compiler will check whether the exception is caught or not at compile time. We need to catch the checked exception or declare in the throws clause. Any exception that is derived from Error and RuntimeException is called unchecked exception. We don't need to explicitly catch a unchecked exception. | ||
34 | Q | Can we catch an error in our java program ? | |
A | Yes. We can . We can catch anything that is derived from Throwable. Since Error is a sub class of Throwable we can catch an error also. | ||
35 | Q | What is thread priority? | |
A | Thread Priority is an integer value that identifies the relative order in which it should be executed with respect to others. The thread priority values ranging from 1- 10 and the default value is 5. But if a thread have higher priority doesn't means that it will execute first. The thread scheduling depends on the OS. | ||
36 | Q | How many times may an object's finalize() method be invoked by the garbage collector? | |
A | Only once. | ||
37 | Q | What is the difference between a continue statement and a break statement? | |
A | Break statement results in the immediate 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 control to the loop statement. | ||
38 | Q | What must a class do to implement an interface? | |
A | It must identify the interface in its implements clause. Also it must provide definition for all the methods in the interface otherwise it must be declared abstract. | ||
39 | Q | What is an abstract class? | |
A | An abstract class is an incomplete class. It is declared with the modifier abstract. We cannot create objects of the abstract class. It is used to specify a common behavioral protocol for all its child classes. | ||
40 | Q | What is the difference between notify and notifyAll method ? | |
A | notify wakes up a single thread that is waiting for object's monitor. If any threads are waiting on this object, one of them is chosen to be awakened. The choice is arbitrary and occurs at the discretion of the implementation. notifyAll Wakes up all threads that are waiting on this object's monitor. A thread waits on an object's monitor by calling one of the wait methods. | ||
Sunday 25 August 2013
Top Most Core Java Popular Interview Questions - 1
Labels:
Core Java,
Core Java Faq's
Labels
Core Java
programming
core java interview question
Core Java Faq's
Servlets
coding
database
jsp-servlet
spring
Java
linux
unix
interview questions
java investment bank
Web Services
Interview
investment bank
mysql
Senior java developer interviews
best practices
java collection tutorial
RMI
SQL
Eclipse
FIX protocol tutorial
tibco
J2EE
groovy
java questions
SCJP
grails
java 5 tutorial
jdbc
beginner
error and exception
Design Patterns
Java Programming Tutorials
fundamentals
general
object oriented programming
xml
Java Programs
Hibernate
Examples
Flex
JAMon
Java xml tutorial
logging
Jsp
Struts 2.0
Sybase and SQL Server
debugging
java interviews
performance
FIX Protocol interview questions
JUnit testing
WebSphere
date and time tutorial
experienced
java IO tutorial
java concurrency
thread
Ejb
Freshers Papers
IT Management
Java Exapmle
Java Script
SQL and database tutorial examples
Scwcd
ant tutorials
concurrency example and tutorial
future state
homework
java changes
java threading
tricky
Agile
Business of IT
Development
JSTL
Java JSON tutorial
Java multithreading Tutorials
PM
Scrum
data structure and algorithm
java puzzles
java tips
testing
tips
windows 8
5 way to create Singleton Object
Architect Interview Questions and Answers
Architecture
Architecure
Bluetooth server as swing application that searches bluetooth device in 10 meter circle and show all devices. You can send file to any bluetooth device.
C Programming
CIO
Callable Statement in Java
Circular dependency of Objects in Java
Comparable Example in Collection
Custom annotation in Java
Developer Interview
Divide and rule example in java
Drupal
Example of Singleton Pattern
FIX protocol
ForkJoin Example in Java 7
Get data from dynamic table with Java Script
Git
HTML and JavaScript
Health
Hello World TCP Client Server Networking Program
Hibernate Basics
Hibernate Interview Question Answer
J2EE Interview Question And Answers
J2ME GUI Program
JEE Interview QA
JMS interview question
Java J2EE Hibernate Spring Struts Interview Question
Java System Property
Java Threads
Manager
Portlets
Provident Fund
Read data from any file in same location and give the required result.
Reading Properties File in Java
Redpoint
Rest WebService Client
Rest Webservice Test
SAL join with ven diagram
SCP UNIX COMMAND
SSL
Singleton Pattern in Java
Spring Bean Initialization methods and their order
Spring Interview Questions
Struts
Struts 2.0 Basics
Struts 2.0 Design Pattern
Submit Html Form With Java Script On The Fly
Unix executable For Java Program
XOM DOM SAX
XP
books
computers
core java;
core java; object oriented programming
data structure; java investment bank;
design pattern
dtd
duplicate rows in table
get browser name with jquery
grails podcast
inner class
java beginners tutorial
java cache
java networking tutorial
java spring
java util; java collections; java questions
java.java1.5
linked list
mailto function with all browser
oracle database
oracle duplicate rows
orm
schema
social
spring mvc questions
struts
transaction
tricks
tweet
windows
xslt