Important Java IQ(Inverview Questions) with answers_Part 4

Q. What do you understand by downcasting?
A. The process of Downcasting refers to the casting from a general to a more specific type, i.e. casting down the hierarchy


Q. What are Java Access Specifiers?
Or
Q. What is the difference between public, private, protected and default Access Specifiers?
Or
Q. What are different types of access modifiers?
A. Access specifiers are keywords that determine the type of access to the member of a class. These keywords are for allowing
privileges to parts of a program such as functions and variables. These are:
• Public : accessible to all classes
• Protected : accessible to the classes within the same package and any subclasses.
• Private : accessible only to the class to which they belong
• Default : accessible to the class to which they belong and to subclasses within the same package


Q. Which class is the superclass of every class?

A. Object.


Q. Name primitive Java types.
A. The 8 primitive types are byte, char, short, int, long, float, double, and boolean.


Q. What is the difference between static and non-static variables?
Or
Q. What are class variables?
Or
Q. What is static in java?
Or
Q. What is a static method?
A. A static variable is associated with the class as a whole rather than with specific instances of a class. Each object will share a common copy of the static variables i.e. there is only one copy per class, no matter how many objects are created from it. Class variables or static variables are declared with the static keyword in a class. These are declared outside a class and stored in static memory. Class variables are mostly used for constants. Static variables are always called by the class name. This variable is created when the program starts and gets destroyed when the programs stops. The scope of the class variable is same an instance variable. Its initial value is same as instance variable and gets a default value when its not initialized corresponding to the data type. Similarly, a static method is a method that belongs to the class rather than any object of the class and doesn’t apply to an object or even require that any objects of the class have been instantiated.
Static methods are implicitly final, because overriding is done based on the type of the object, and static methods are attached to a class, not an object. A static method in a superclass can be shadowed by another static method in a subclass, as long as the original method was not declared final. However, you can’t override a static method with a non-static method. In other words, you can’t change a static method into an instance method in a subclass.
Non-static variables take on unique values with each object instance.


Q. What is the difference between the boolean & operator and the && operator?
A. If an expression involving the boolean & operator is evaluated, both operands are evaluated, whereas the && operator is a short cut operator. When an expression involving the && operator is evaluated, the first operand is evaluated. If the first operand returns a value of true then the second operand is evaluated. If the first operand evaluates to false, the evaluation of the second operand is skipped.

Comments

Popular Posts