May 13, 2019

Srikaanth

Persistent Core Java Interview Questions Answers

What Is An Abstract Method?

An abstract method is a method whose implementation is deferred to a subclass.

What Value Does Read() Return When It Has Reached The End Of A File?

The read() method returns -1 when it has reached the end of a file.

Can A Byte Object Be Cast To A Double Value?

No, an object cannot be cast to a primitive value.

What Is The Difference Between A Static And A Non-static Inner Class?

A non-static inner class may have object instances that are associated with instances of the class's outer class. A static inner class does not have any object instances.

What Is An Object's Lock And Which Object's Have Locks?

An object's lock is a mechanism that is used by multiple threads to obtain synchronized access to the object. A thread may execute a synchronized method of an object only after it has acquired the object's lock. All objects and classes have locks. A class's lock is acquired on the class's Class object.

What Is The % Operator?

It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand.
Persistent Systems Most Frequently Asked Core Java Interview Questions Answers
Persistent Systems Most Frequently Asked Core Java Interview Questions Answers

When Can An Object Reference Be Cast To An Interface Reference?

An object reference be cast to an interface reference when the object implements the referenced interface.

Which Class Is Extended By All Other Classes?

The Object class is extended by all other classes.

Which Non-unicode Letter Characters May Be Used As The First Character Of An Identifier?

The non-Unicode letter characters $ and _ may appear as the first character of an identifier.

What Restrictions Are Placed On Method Overloading?

Two methods may not have the same name and argument list but different return types.

What Is Transient Variable?

Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable becomes null.

What Is Collection Api?

The Collection API is a set of classes and interfaces that support operation on collections of objects. These classes and interfaces are more flexible, more powerful, and more regular than the vectors, arrays, and hashtables if effectively replaces.

Example of classes: HashSet, HashMap, ArrayList, LinkedList, TreeSet and TreeMap.

Example of interfaces: Collection, Set, List and Map.

What Is Casting?

There are two types of casting, casting between primitive numeric types and casting between object references. Casting between numeric types is used to convert larger values, such as double values, to smaller values, such as byte values. Casting between object references is used to refer to an object by a compatible class, interface, or array type reference.

What Is The Return Type Of A Program's Main() Method?

void.

If A Variable Is Declared As Private, Where May The Variable Be Accessed?

A private variable may only be accessed within the class in which it is declared.

What Do You Understand By Private, Protected And Public?

These are accessibility modifiers. Private is the most restrictive, while public is the least restrictive. There is no real difference between protected and the default type (also known as package protected) within the context of the same package, however the protected keyword allows visibility to a derived class in a different package.

What Is Downcasting ?

Downcasting is the casting from a general to a more specific type, i.e. casting down the hierarchy.

What Modifiers May Be Used With An Inner Class That Is A Member Of An Outer Class?

A (non-local) inner class may be declared as public, protected, private, static, final, or abstract.

https://mytecbooks.blogspot.com/2019/05/persistent-core-java-interview.html
Subscribe to get more Posts :