Thursday 24 January 2019

Java Interview Questions and Answers-2

Frequently Asked Java Interview Questions and Answers

Below, we are discussing top Java Interview Questions and Answers:
Q.1 Can a class be defined within an interface?
Yes, it’s attainable.
Q.2 Can an interface be defined within a class?
Yes, it’s attainable.
Q.3 What’s A Marker Interface?
A Marker Interface is an interface which does not have any declaration within however still enforces a mechanism.
Q.4 What restrictions are placed on the location of a package statement inside a source code file?
The restriction that is placed is that the package statement must appear as the first line in a source code file (excluding blank lines and comments).
Q.5 If I only change the return type, will the method become overloaded?
No, it does not. There should be a change in method arguments for a method to be overloaded.
Q.6 Why will Java Not Support Operator Overloading?
To keep up code simplicity, Java does not support operator overloadingas operator overloading makes the code terribly difficult to read and maintain.
Q.7 What’s Externalizable?
Externalizable is an Interface that extends serializable Interface. And sends data into Streams in Compressed Format. readExternal(ObjectInput in) and writeExternal(ObjectOuput out) are the two methods.
Q.8 What modifiers are allowed for methods in an interface?
Interfaces allow only two methods that are, public and abstract.
Q.9 What’s a local, member and a class variable?
Variables declared inside a method are “local” variables. Variables declared inside the class i.e. not inside any methods are “member” variables (global variables). A variable declared inside the class i.e. not inside any methods and are defined as “static” are class variables.
Q.10 What’s an abstract method?
In an abstract class implementation of the class is deferred to a subclass.

3. Latest Java Interview Questions and Answers

Here, we collect the latest or advanced java interview questions and answers.
Q.11 What value does read() return when it has reached the end of a file?
The read() method returns -1 when it’s reached the end of a file.
Q.12 Will a byte object be cast to a double value?
No, an object cannot cast a double value.
Q.13 Difference between a static and a non-static inner class?
A non-static inner category could have object instances that are related to instances of the category’s outer class. A static inner category doesn’t have any object instances.
Q.14 What is an object’s lock and which objects have locks?
An object’s lock is a mechanism that is used by multiple threads to get synchronized access to the object. A thread may execute a synchronized method of an object only after it’s acquired the object’s lock. All objects and classes have locks. A class’s lock is acquired on the class’s class object.
Q.15 What’s the youngster’s Operator?
It is referred to as the modulo or remainder operator. It returns the rest of dividing the first operand by the second operand.
Q.16 Will an object reference be cast to an interface reference?
Yes, it can be but only when an object reference is cast to an interfacereference when the object implements the referenced interface.
Q.17 Which non-Unicode letter characters is also used as the 1st character of an identifier?
The non-Unicode letter characters $ and I may appear as the 1st character of an identifier.
Q.18 What restrictions are placed on method Overloading?
Two methods may not have the same name and argument list however different return types.
Q.19 What is Transient variable?
A transient variable cannot be serialized. If a variable is asserted as transient in a Serializable class and therefore the class is written to an ObjectStream, the value of the variable cannot be written to the stream instead once the class is retrieved from the ObjectStream the value of the variable becomes null.
Q.20 What’s collection API?
The Collection API is a set of interfaces and many classes that support operation on collections of objects. These classes and interfaces happen to be much more flexible, more powerful, and more regular than the vectors, arrays, and hash tables if effectively replaces.

4. Tricky Java Interview Questions and Answer

These are the trickiest Java interview questions and answers:
Q.21 What’s Casting?
There are 2 forms of casting, casting between primitive numeric types and casting between object references. It can be done 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.
Q.22 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.
Q.23 What do you understand by private, protected and public?
These are accessibility modifiers. Private is that the most restrictive, while public is that the least restrictive. There is no real distinction between protected and therefore the default type (also referred to as package protected) within the context of the same package, but the protected keyword allows visibility to a derived class during a different package.
Q.24 What modifiers may be used with an inner class that’s a member of an outer class?
The mpdifiers that can be used are such as the (non-local) inner class is also declared as public, protected, private, static, final, or abstract.
Q.25 What number Bits are used to Represent Unicode, ASCII, Utf-16, and Utf-8 Characters?
Unicode needs sixteen bits and ASCII need seven bits. Though the ASCII character set uses solely seven bits, it’s typically represented as eight bits. UTF-8 represents characters using 8, 16, and 18-bit patterns. UTF-16 uses 16-bit and bigger bit patterns.

No comments:

Post a Comment

40 Latest Interview Questions and Answers on Spring, Spring MVC, and Spring Boot

  40 Latest Interview Questions and Answers on Spring, Spring MVC, and Spring Boot 1. What is Tight Coupling? When a class (ClassA) is depen...