Question stringlengths 1 113 | Answer stringlengths 22 6.98k |
|---|---|
What is Java static block? | -Is used to initialize the static data member.
-It is executed before the main method at the time of classloading. |
What is static keyword in Java? | The static keyword in Java is used for memory management mainly. We can apply static keyword with variables, methods, blocks and nested classes. The static keyword belongs to the class than an instance of the class.
The static can be:
-Variable (also known as a class variable)
-Method (also known as a class method)
... |
Can you provide an Example of static block in Java? | class A2{
static{System.out.println("static block is invoked");}
public static void main(String args[]){
System.out.println("Hello main");
}
}
Output:static block is invoked
Hello main |
what are the Usage of Java this keyword? | Here is given the 6 usage of java this keyword.
1.this can be used to refer current class instance variable.
2.this can be used to invoke current class method (implicitly)
3.this() can be used to invoke current class constructor.
4.this can be passed as an argument in the method call.
5.this can be passed as arg... |
What is this keywoard in Java? | The this keyword can be used to refer current class instance variable. If there is ambiguity between the instance variables and parameters, this keyword resolves the problem of ambiguity.
|
How to use "this" to invoke current class method in Java? | You may invoke the method of the current class by using the this keyword. If you don't use the this keyword, compiler automatically adds this keyword while invoking the method. Let's see the example
class A{
void m(){System.out.println("hello m");}
void n(){
System.out.println("hello n");
//m();//same as th... |
How to use this() : to invoke current class constructor? | The this() constructor call can be used to invoke the current class constructor. It is used to reuse the constructor. In other words, it is used for constructor chaining.
Calling default constructor from parameterized constructor:
class A{
A(){System.out.println("hello a");}
A(int x){
this();
System.out.printl... |
What is the Real usage of this() constructor call? | The this() constructor call should be used to reuse the constructor from the constructor. It maintains the chain between the constructors i.e. it is used for constructor chaining. Let's see the example given below that displays the actual use of this keyword.
class Student{
int rollno;
String name,course;
float ... |
how to use this: to pass as an argument in the method in Java? | The this keyword can also be passed as an argument in the method. It is mainly used in the event handling. Let's see the example:
class S2{
void m(S2 obj){
System.out.println("method is invoked");
}
void p(){
m(this);
}
public static void main(String args[]){
S2 s1 = new S2();... |
how to use this: to pass as argument in the constructor call in Java? | We can pass the this keyword in the constructor also. It is useful if we have to use one object in multiple classes. Let's see the example:
class B{
A4 obj;
B(A4 obj){
this.obj=obj;
}
void display(){
System.out.println(obj.data);//using data member of A4 class
}
}
cla... |
Can you provide an Example of this keyword that you return as a statement from the method in Java? | class A{
A getA(){
return this;
}
void msg(){System.out.println("Hello java");}
}
class Test1{
public static void main(String args[]){
new A().getA().msg();
}
}
Output:
Hello java |
how to provee this keyword in java? | Let's prove that this keyword refers to the current class instance variable. In this program, we are printing the reference variable and this, output of both variables are same.
class A5{
void m(){
System.out.println(this);//prints same reference ID
}
public static void main(String args[]){
A5 obj=new A5(); ... |
What is Inheritance in Java? | Inheritance in Java is a mechanism in which one object acquires all the properties and behaviors of a parent object. It is an important part of OOPs (Object Oriented programming system).
The idea behind inheritance in Java is that you can create new classes that are built upon existing classes. When you inherit from... |
Why use inheritance in java? | -For Method Overriding (so runtime polymorphism can be achieved).
-For Code Reusability.
|
What are the Terms used in Inheritance? | -Class: A class is a group of objects which have common properties. It is a template or blueprint from which objects are created.
-Sub Class/Child Class: Subclass is a class which inherits the other class. It is also called a derived class, extended class, or child class.
-Super Class/Parent Class: Superclass is ... |
What are The syntax of Java Inheritance? | class Subclass-name extends Superclass-name
{
//methods and fields
}
The extends keyword indicates that you are making a new class that derives from an existing class. The meaning of "extends" is to increase the functionality.
In the terminology of Java, a class which is inherited is called a parent o... |
Whaht are the Types of inheritance in java? | On the basis of class, there can be three types of inheritance in java: single, multilevel and hierarchical.
In java programming, multiple and hybrid inheritance is supported through interface only.
When one class inherits multiple classes, it is known as multiple inheritance.
|
Can you provide an Single Inheritance Example in Java? | When a class inherits another class, it is known as a single inheritance. In the example given below, Dog class inherits the Animal class, so there is the single inheritance.
class Animal{
void eat(){System.out.println("eating...");}
}
class Dog extends Animal{
void bark(){System.out.println("barking..... |
Can you provide an Multilevel Inheritance Example in Java? | When there is a chain of inheritance, it is known as multilevel inheritance. As you can see in the example given below, BabyDog class inherits the Dog class which again inherits the Animal class, so there is a multilevel inheritance.
class Animal{
void eat(){System.out.println("eating...");}
}
class Dog ext... |
Can you provide an Hierarchical Inheritance Example in Java? | When two or more classes inherits a single class, it is known as hierarchical inheritance. In the example given below, Dog and Cat classes inherits the Animal class, so there is hierarchical inheritance.
class Animal{
void eat(){System.out.println("eating...");}
}
class Dog extends Animal{
void bark(){Sy... |
Why multiple inheritance is not supported in java? | As we have explained in the inheritance chapter, multiple inheritance is not supported in the case of class because of ambiguity. However, it is supported in case of an interface because there is no ambiguity. It is because its implementation is provided by the implementation class. For example:
interface Printable{... |
Can you provide an Simple Example of Aggregation? | In this example, we have created the reference of Operation class in the Circle class.
class Operation{
int square(int n){
return n*n;
}
}
class Circle{
Operation op;//aggregation
double pi=3.14;
double area(int radius){
op=new Operation();
int rsquare=op.square(r... |
When use Aggregation? | -Code reuse is also best achieved by aggregation when there is no is-a relationship.
-Inheritance should be used only if the relationship is-a is maintained throughout the lifetime of the objects involved; otherwise, aggregation is the best choice.
|
What is Method Overloading in Java? | If a class has multiple methods having same name but different in parameters, it is known as Method Overloading.
If we have to perform only one operation, having same name of the methods increases the readability of the program.
Suppose you have to perform addition of the given numbers but there can be any number... |
What is the Advantage of method overloading? | Method overloading increases the readability of the program.
Different ways to overload the method
There are two ways to overload the method in java
1.By changing number of arguments
2.By changing the data type |
Why Method Overloading is not possible by changing the return type of method only? | In java, method overloading is not possible by changing the return type of the method only because of ambiguity. Let's see how ambiguity may occur:
class Adder{
static int add(int a,int b){return a+b;}
static double add(int a,int b){return a+b;}
}
class TestOverloading3{
public static void main(String... |
Can we overload java main() method? | Yes, by method overloading. You can have any number of main methods in a class by method overloading. But JVM calls main() method which receives string array as arguments only. Let's see the simple example:
class TestOverloading4{
public static void main(String[] args){System.out.println("main with String[]");} ... |
What is Method Overloading and Type Promotion? | One type is promoted to another implicitly if no matching datatype is found.
To understand the concept, byte can be promoted to short, int, long, float or double. The short datatype can be promoted to int, long, float or double. The char datatype can be promoted to int,long,float or double and so on.
|
Can you provide an Example of Method Overloading with TypePromotion in Java? | class OverloadingCalculation1{
void sum(int a,long b){System.out.println(a+b);}
void sum(int a,int b,int c){System.out.println(a+b+c);}
public static void main(String args[]){
OverloadingCalculation1 obj=new OverloadingCalculation1();
obj.sum(20,20);//now second int literal will be promoted... |
Can you provide an Example of Method Overloading with Type Promotion if matching found in Java? | If there are matching type arguments in the method, type promotion is not performed.
class OverloadingCalculation2{
void sum(int a,int b){System.out.println("int arg method invoked");}
void sum(long a,long b){System.out.println("long arg method invoked");}
public static void main(String args[]){ ... |
Can you provide an Example of Method Overloading with Type Promotion in case of ambiguity in Java? | If there are no matching type arguments in the method, and each method promotes similar number of arguments, there will be ambiguity.
class OverloadingCalculation3{
void sum(int a,long b){System.out.println("a method invoked");}
void sum(long a,int b){System.out.println("b method invoked");}
public... |
What is Method Overriding in Java? | If subclass (child class) has the same method as declared in the parent class, it is known as method overriding in Java.
In other words, If a subclass provides the specific implementation of the method that has been declared by one of its parent class, it is known as method overriding. |
What are the Usage of Java Method Overriding? | -Method overriding is used to provide the specific implementation of a method which is already provided by its superclass.
-Method overriding is used for runtime polymorphism |
What are the Rules for Java Method Overriding? | 1.The method must have the same name as in the parent class
2.The method must have the same parameter as in the parent class.
3.There must be an IS-A relationship (inheritance).
|
Can you provide an Example of method overriding in Java? | In this example, we have defined the run method in the subclass as defined in the parent class but it has some specific implementation. The name and parameter of the method are the same, and there is IS-A relationship between the classes, so there is method overriding.
//Java Program to illustrate the use of Java Meth... |
Can you provide a real example of Java Method Overriding in Java? | Consider a scenario where Bank is a class that provides functionality to get the rate of interest. However, the rate of interest varies according to banks. For example, SBI, ICICI and AXIS banks could provide 8%, 7%, and 9% rate of interest.
//Java Program to demonstrate the real scenario of Java Method Overriding ... |
Can we override static method? | No, a static method cannot be overridden. It can be proved by runtime polymorphism, so we will learn it later. |
Why can we not override static method?
| It is because the static method is bound with class whereas instance method is bound with an object. Static belongs to the class area, and an instance belongs to the heap area.
|
Can we override java main method? | No, because the main is a static method. |
What is the Difference between method Overloading and Method Overriding in java? | There are many differences between method overloading and method overriding in java. A list of differences between method overloading and method overriding are given below:
1) Method overloading is used to increase the readability of the program while Method overriding is used to provide the specific implementati... |
What is Covariant Return Type in Java? | The covariant return type specifies that the return type may vary in the same direction as the subclass.
Before Java5, it was not possible to override any method by changing the return type. But now, since Java5, it is possible to override method by changing the return type if subclass overrides any method whose ret... |
Can you provide an Simple example of Covariant Return Type in Java? | Let's take a simple example:
FileName: B1.java
class A{
A get(){return this;}
}
class B1 extends A{
@Override
B1 get(){return this;}
void message(){System.out.println("welcome to covariant return type");}
public static void main(String args[]){
new B1().get().messag... |
What is the Advantages of Covariant Return Type in Java? | Following are the advantages of the covariant return type.
1) Covariant return type assists to stay away from the confusing type casts in the class hierarchy and makes the code more usable, readable, and maintainable.
2) In the method overriding, the covariant return type provides the liberty to have more to the ... |
How is Covariant return types implemented? | Java doesn't allow the return type-based overloading, but JVM always allows return type-based overloading. JVM uses the full signature of a method for lookup/resolution. Full signature means it includes return type in addition to argument types. i.e., a class can have two or more methods differing only by return type. ... |
What is Super Keyword in Java? | The super keyword in Java is a reference variable which is used to refer immediate parent class object.
Whenever you create the instance of subclass, an instance of parent class is created implicitly which is referred by super reference variable. |
What are the Usage of Java super Keyword? | 1.super can be used to refer immediate parent class instance variable.
2.super can be used to invoke immediate parent class method.
3.super() can be used to invoke immediate parent class constructor.
|
Can you provide an example of super can be used to invoke parent class method in Java? | The super keyword can also be used to invoke parent class method. It should be used if subclass contains the same method as parent class. In other words, it is used if method is overridden.
class Animal{
void eat(){System.out.println("eating...");}
}
class Dog extends Animal{
void eat(){System.out.printl... |
Can you provide an example of super is used to invoke parent class constructor in Java? | The super keyword can also be used to invoke the parent class constructor. Let's see a simple example:
class Animal{
Animal(){System.out.println("animal is created");}
}
class Dog extends Animal{
Dog(){
super();
System.out.println("dog is created");
}
}
class TestSuper3{
public static voi... |
Can you provide a super example: real use in Java? | Let's see the real use of super keyword. Here, Emp class inherits Person class so all the properties of Person will be inherited to Emp by default. To initialize all the property, we are using parent class constructor from child class. In such way, we are reusing the parent class constructor.
class Person{
int id... |
What is Instance initializer block in Java? | Instance Initializer block is used to initialize the instance data member. It run each time when object of the class is created.
The initialization of the instance variable can be done directly but there can be performed extra operations while initializing the instance variable in the instance initializer block. |
Why use instance initializer block? | Suppose I have to perform some operations while assigning value to instance data member e.g. a for loop to fill a complex array or error handling etc.
|
Can you provide an Example of instance initializer block in Java? | Let's see the simple example of instance initializer block that performs initialization.
class Bike7{
int speed;
Bike7(){System.out.println("speed is "+speed);}
{speed=100;}
public static void main(String args[]){
Bike7 b1=new Bike7();
Bike7 b2=new Bike7(... |
What is invoked first, instance initializer block or constructor? | class Bike8{
int speed;
Bike8(){System.out.println("constructor is invoked");}
{System.out.println("instance initializer block invoked");}
public static void main(String args[]){
Bike8 b1=new Bike8();
Bike8 b2=new Bike8();
}
}
Output:instance initiali... |
What are the Rules for instance initializer block in Java? | There are mainly three rules for the instance initializer block. They are as follows:
The instance initializer block is created when instance of the class is created.
The instance initializer block is invoked after the parent class constructor is invoked (i.e. after super() constructor call).
The instance initialize... |
Can you provide an example Program of instance initializer block that is invoked after super()? | class A{
A(){
System.out.println("parent class constructor invoked");
}
}
class B2 extends A{
B2(){
super();
System.out.println("child class constructor invoked");
}
{System.out.println("instance initializer block is invoked");}
public static void main(String args[]){
B2 b=new B2();
}
... |
Can you provid an example of instance block in java? | class A{
A(){
System.out.println("parent class constructor invoked");
}
}
class B3 extends A{
B3(){
super();
System.out.println("child class constructor invoked");
}
B3(int a){
super();
System.out.println("child class constructor invoked "+a);
}
{System.out.println(... |
What is Final Keyword In Java? | The final keyword in java is used to restrict the user. The java final keyword can be used in many context. Final can be:
1.variable
2.method
3.class
The final keyword can be applied with the variables, a final variable that have no value it is called blank final variable or uninitialized final variable. It can be ini... |
What is Java final variable? | If you make any variable as final, you cannot change the value of final variable(It will be constant). |
Can you provide an Example of final variable in Java? | There is a final variable speedlimit, we are going to change the value of this variable, but It can't be changed because final variable once assigned a value can never be changed.
class Bike9{
final int speedlimit=90;//final variable
void run(){
speedlimit=400;
}
public static void main(String args... |
What is Java final method? | If you make any method as final, you cannot override it. |
Can you provide an Example of final method in Java? | class Bike{
final void run(){System.out.println("running");}
}
class Honda extends Bike{
void run(){System.out.println("running safely with 100kmph");}
public static void main(String args[]){
Honda honda= new Honda();
honda.run();
}
}
Output:Compile Time Error |
What is Java final class? | If you make any class as final, you cannot extend it. |
Can you provide an Example of final class in Java? | final class Bike{}
class Honda1 extends Bike{
void run(){System.out.println("running safely with 100kmph");}
public static void main(String args[]){
Honda1 honda= new Honda1();
honda.run();
}
}
Output:Compile Time Error |
Is final method inherited? | Yes, final method is inherited but you cannot override it. For Example:
class Bike{
final void run(){System.out.println("running...");}
}
class Honda2 extends Bike{
public static void main(String args[]){
new Honda2().run();
}
}
Output:running... |
What is blank or uninitialized final variable? | A final variable that is not initialized at the time of declaration is known as blank final variable.
If you want to create a variable that is initialized at the time of creating object and once initialized may not be changed, it is useful. For example PAN CARD number of an employee.
It can be initialized only in... |
Can you provide an Example of blank final variable in Java? | class Student{
int id;
String name;
final String PAN_CARD_NUMBER;
...
} |
What is static blank final variable? | A static final variable that is not initialized at the time of declaration is known as static blank final variable. It can be initialized only in static block. |
Can you provide an Example of static blank final variable in Java? | class A{
static final int data;//static blank final variable
static{ data=50;}
public static void main(String args[]){
System.out.println(A.data);
}
} |
Can we declare a constructor final? | No, because constructor is never inherited. |
What is Polymorphism in Java? | Polymorphism in Java is a concept by which we can perform a single action in different ways. Polymorphism is derived from 2 Greek words: poly and morphs. The word "poly" means many and "morphs" means forms. So polymorphism means many forms.
There are two types of polymorphism in Java: compile-time polymorphism and r... |
What is Runtime Polymorphism in Java? | Runtime polymorphism or Dynamic Method Dispatch is a process in which a call to an overridden method is resolved at runtime rather than compile-time.
In this process, an overridden method is called through the reference variable of a superclass. The determination of the method to be called is based on the object being... |
Can you provide an Example of Java Runtime Polymorphism? | In this example, we are creating two classes Bike and Splendor. Splendor class extends Bike class and overrides its run() method. We are calling the run method by the reference variable of Parent class. Since it refers to the subclass object and subclass method overrides the Parent class method, the subclass method is ... |
Can you provide a Java Runtime Polymorphism Example: Bank? | Consider a scenario where Bank is a class that provides a method to get the rate of interest. However, the rate of interest may differ according to banks. For example, SBI, ICICI, and AXIS banks are providing 8.4%, 7.3%, and 9.7% rate of interest.
class Bank{
float getRateOfInterest(){return 0;}
}
class SBI... |
Can you provide an Java Runtime Polymorphism Example: Shape? | class Shape{
void draw(){System.out.println("drawing...");}
}
class Rectangle extends Shape{
void draw(){System.out.println("drawing rectangle...");}
}
class Circle extends Shape{
void draw(){System.out.println("drawing circle...");}
}
class Triangle extends Shape{
void draw(){System.out.p... |
Can you provide a Java Runtime Polymorphism Example: Animal? | class Animal{
void eat(){System.out.println("eating...");}
}
class Dog extends Animal{
void eat(){System.out.println("eating bread...");}
}
class Cat extends Animal{
void eat(){System.out.println("eating rat...");}
}
class Lion extends Animal{
void eat(){System.out.println("eating meat..."... |
What is Java Runtime Polymorphism with Data Member? | A method is overridden, not the data members, so runtime polymorphism can't be achieved by data members.
In the example given below, both the classes have a data member speedlimit. We are accessing the data member by the reference variable of Parent class which refers to the subclass object. Since we are accessing t... |
What is Java Runtime Polymorphism with Multilevel Inheritance? | Let's see the simple example of Runtime Polymorphism with multilevel inheritance.
class Animal{
void eat(){System.out.println("eating");}
}
class Dog extends Animal{
void eat(){System.out.println("eating fruits");}
}
class BabyDog extends Dog{
void eat(){System.out.println("drinking milk");}
... |
What is Static Binding and Dynamic Binding? | Connecting a method call to the method body is known as binding.
There are two types of binding
1.Static Binding (also known as Early Binding).
2.Dynamic Binding (also known as Late Binding). |
Does variables have a type in Java? | Each variable has a type, it may be primitive and non-primitive.
int data=30; |
Does References have a type in Java?
| class Dog{
public static void main(String args[]){
Dog d1;//Here d1 is a type of Dog
}
} |
Doese Objects have a type in java? | An object is an instance of particular java class,but it is also an instance of its superclass.
class Animal{}
class Dog extends Animal{
public static void main(String args[]){
Dog d1=new Dog();
}
} |
What is static binding? | When type of the object is determined at compiled time(by the compiler), it is known as static binding.
If there is any private, final or static method in a class, there is static binding. |
Can you provide an Example of static binding in Java? | class Dog{
private void eat(){System.out.println("dog is eating...");}
public static void main(String args[]){
Dog d1=new Dog();
d1.eat();
}
} |
What is Dynamic binding ? | When type of the object is determined at run-time, it is known as dynamic binding. |
Can you provide an Example of dynamic binding in Java? | class Animal{
void eat(){System.out.println("animal is eating...");}
}
class Dog extends Animal{
void eat(){System.out.println("dog is eating...");}
public static void main(String args[]){
Animal a=new Dog();
a.eat();
}
}
Output:dog is eating... |
What is Java instanceof? | The java instanceof operator is used to test whether the object is an instance of the specified type (class or subclass or interface).
The instanceof in java is also known as type comparison operator because it compares the instance with type. It returns either true or false. If we apply the instanceof operator with... |
Can you provide a Simple example of java instanceof? | Let's see the simple example of instance operator where it tests the current class.
class Simple1{
public static void main(String args[]){
Simple1 s=new Simple1();
System.out.println(s instanceof Simple1);//true
}
}
Output:true |
Can you provide Another example of java instanceof operator? | class Animal{}
class Dog1 extends Animal{//Dog inherits Animal
public static void main(String args[]){
Dog1 d=new Dog1();
System.out.println(d instanceof Animal);//true
}
}
|
Can you provide a example instanceof in java with a variable that have null value? | If we apply instanceof operator with a variable that have null value, it returns false. Let's see the example given below where we apply instanceof operator with the variable that have null value.
class Dog2{
public static void main(String args[]){
Dog2 d=null;
System.out.println(d instanceof Dog2);//f... |
What is Downcasting with java instanceof operator? | When Subclass type refers to the object of Parent class, it is known as downcasting. If we perform it directly, compiler gives Compilation error. If you perform it by typecasting, ClassCastException is thrown at runtime. But if we use instanceof operator, downcasting is possible.
Dog d=new Animal();//Compilation err... |
What is Possibility of downcasting with instanceof? | Let's see the example, where downcasting is possible by instanceof operator.
class Animal { }
class Dog3 extends Animal {
static void method(Animal a) {
if(a instanceof Dog3){
Dog3 d=(Dog3)a;//downcasting
System.out.println("ok downcasting performed");
}
}
public stat... |
How to downcast without the use of java instanceof | Downcasting can also be performed without the use of instanceof operator as displayed in the following example:
class Animal { }
class Dog4 extends Animal {
static void method(Animal a) {
Dog4 d=(Dog4)a;//downcasting
System.out.println("ok downcasting performed");
}
public stat... |
How to understand Real use of instanceof in java? | Let's see the real use of instanceof keyword by the example given below.
interface Printable{}
class A implements Printable{
public void a(){System.out.println("a method");}
}
class B implements Printable{
public void b(){System.out.println("b method");}
}
class Call{
void invoke(Printabl... |
What is Abstract class in Java? | A class which is declared with the abstract keyword is known as an abstract class in Java. It can have abstract and non-abstract methods (method with the body).
Before learning the Java abstract class, let's understand the abstraction in Java first. |
What is Abstraction in Java? | Abstraction is a process of hiding the implementation details and showing only functionality to the user.
Another way, it shows only essential things to the user and hides the internal details, for example, sending SMS where you type the text and send the message. You don't know the internal processing about the mes... |
What is Abstract Method in Java? | A method which is declared as abstract and does not have implementation is known as an abstract method.
Example of abstract method
abstract void printStatus();//no method body and abstract |
Can you provide an Example of Abstract class that has an abstract method? | In this example, Bike is an abstract class that contains only one abstract method run. Its implementation is provided by the Honda class.
abstract class Bike{
abstract void run();
}
class Honda4 extends Bike{
void run(){System.out.println("running safely");}
public static void main(String args[]){ ... |
How to understand the real scenario of Abstract class in Java? | In this example, Shape is the abstract class, and its implementation is provided by the Rectangle and Circle classes.
Mostly, we don't know about the implementation class (which is hidden to the end user), and an object of the implementation class is provided by the factory method.
A factory method is a method that r... |
Can you provide Another example of Abstract class in java? | abstract class Bank{
abstract int getRateOfInterest();
}
class SBI extends Bank{
int getRateOfInterest(){return 7;}
}
class PNB extends Bank{
int getRateOfInterest(){return 8;}
}
class TestBank{
public static void main(String args[]){
Bank b;
b=new SBI();
System.out.... |
Can you provide an example of Abstract class having constructor, data member and methods?
| An abstract class can have a data member, abstract method, method body (non-abstract method), constructor, and even main() method.
File: TestAbstraction2.java
//Example of an abstract class that has abstract and non-abstract methods
abstract class Bike{
Bike(){System.out.println("bike is created");}
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.