• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/51

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

51 Cards in this Set

  • Front
  • Back

How many types of memory areas are allocated by JVM?

Class(Method) Area


Heap


Stack


Program Counter Register


Native Method Stack

What is JIT compiler?

Just-In-Time(JIT) compiler:It is used to improve the performance. JIT compiles parts of the byte code that have similar functionality at the same time, and hence reduces the amount of time needed for compilation.Here the term “compiler” refers to a translator from the instruction set of a Java virtual machine (JVM) to the instruction set of a specific CPU.

What is platform?

A platform is basically the hardware or software environment in which a program runs. There are two types of platforms software-based and hardware-based. Java provides software-based platform.

What is the main difference between Java platform and other platforms?

The Java platform differs from most other platforms in the sense that it's a software-based platform that runs on top of other hardware-based platforms.It has two components:




Runtime Environment


API(Application Programming Interface)

What gives Java its 'write once and run anywhere' nature?

The bytecode. Java is compiled to be a byte code which is the intermediate language between source code and machine code. This byte code is not platform specific and hence can be fed to any platform.

What is classloader?

The class-loader is a subsystem of JVM that is used to load classes and interfaces.There are many types of class-loaders e.g. Bootstrap class-loader, Extension class-loader, System class-loader, Plugin class-loader etc.

Is Empty .java file name a valid source file name?

Yes, save your java file by .java only, compile it by javac .java and run by java yourclassname Let's take a simple example:

Is delete,next,main,exit or null keyword in java?

No.

If I don't provide any arguments on the command line, then the String array of Main method will be empty or null?

It is empty. But not null.

What if I write static public void instead of public static void?

Program compiles and runs properly.

What is the default value of the local variables?

The local variables are not initialized to any default value, neither primitives nor object references.

What is difference between object oriented programming language and object based programming language?

Object based programming languages follow all the features of OOPs except Inheritance. Examples of object based programming languages are JavaScript, VBScript etc.

What will be the initial value of an object reference which is defined as an instance variable?

The object references are all initialized to null in Java.

What is constructor?

Constructor is just like a method that is used to initialize the state of an object. It is invoked at the time of object creation.

What is the purpose of default constructor?

The default constructor provides the default values to the objects. The java compiler creates a default constructor only if there is no constructor in the class.

Does constructor return any value?

yes, that is current instance (You cannot use return type yet it returns a value)

Is constructor inherited?

No, constructor is not inherited.

Can you make a constructor final?

No, constructor can't be final.

What is static variable?

static variable is used to refer the common property of all objects (that is not unique for each object) e.g. company name of employees,college name of students etc.




static variable gets memory only once in class area at the time of class loading.

What is static method?

A static method belongs to the class rather than object of a class.




A static method can be invoked without the need for creating an instance of a class.




static method can access static data member and can change the value of it.

Why main method is static?

because object is not required to call static method if It were non-static method,jvm creates object first then call main() method that will lead to the problem of extra memory allocation.

What is static block?

Is used to initialize the static data member.




It is executed before main method at the time of class-loading.

Can we execute a program without main() method?
Yes, one of the way is static block.
What if the static modifier is removed from the signature of the main method?
Program compiles. But at runtime throws an error "NoSuchMethodError".
What is difference between static (class) method and instance method?

static or class method




1)A method i.e. declared as static is known as static method.




2)Object is not required to call static method.




3)Non-static (instance) members cannot be accessed in static context (static method, static block and static nested class) directly.




4)For example: public static int cube(int n){ return n*n*n;}




instance method




A method i.e. not declared as static is known as instance method.




Object is required to call instance methods.




static and non-static variables both can be accessed in instance methods.




For example: public void msg(){...}.

What is this in java?

It is a keyword that that refers to the current object.

What is Inheritance?

Inheritance is a mechanism in which one object acquires all the properties and behaviour of another object of another class. It represents IS-A relationship. It is used for Code Resusability and Method Overriding.

Which class is the superclass for every class.

Object class.

Why multiple inheritance is not supported in java?

To reduce the complexity and simplify the language, multiple inheritance is not supported in java in case of class

What is composition?

Holding the reference of the other class within some other class is known as composition.

What is difference between aggregation and composition?

Aggregation represents weak relationship whereas composition represents strong relationship. For example: bike has an indicator (aggregation) but bike has an engine (compostion).

Why Java does not support pointers?

Pointer is a variable that refers to the memory address. They are not used in java because they are unsafe(unsecured) and complex to understand.

What is super in java?

It is a keyword that refers to the immediate parent class object.

Can you use this() and super() both in a constructor?

No. Because super() or this() must be the first statement.

What is object cloning?

The object cloning is used to create the exact copy of an object.

What is method overloading?

If a class have multiple methods by same name but different parameters, it is known as Method Overloading. It increases the readability of the program.

Why method overloading is not possible by changing the return type in java?

Becauseof ambiguity

Can we overload main() method?

Yes, You can have many main() methods in a class by overloading the main method.

What is method overriding:

If a subclass provides a specific implementation of a method that is already provided by its parent class, it is known as Method Overriding. It is used for runtime polymorphism and to provide the specific implementation of the method.

Can we override static method?

No, you can't override the static method because they are the part of class not object.

Why we cannot override static method?

It is because the static method is the part of class and it is bound with class whereas instance method is bound with object and static gets memory in class area and instance gets memory in heap.

Can we override the overloaded method?

Yes.

Difference between method Overloading and Overriding.

Method Overloading




Method overloading increases the readability of the program.




method overlaoding is occurs within the class.




In this case, parameter must be different.




Method Overriding




Method overriding provides the specific implementation of the method that is already provided by its super class.




Method overriding occurs in two classes that have IS-A relationship.




In this case, parameter must be same.

Can you have virtual functions in Java?

Yes, all functions in Java are virtual by default.

What is covariant return type?

Now, since java5, it is possible to override any method by changing the return type if the return type of the subclass overriding method is subclass type. It is known as covariant return type.

What is final variable?

If you make any variable as final, you cannot change the value of final variable(It will be constant)

What is final method?

Final methods can't be overriden

What is final class?

Final class can't be inherited.

What is blank final variable?

A final variable, not initalized at the time of declaration, is known as blank final variable.

Can we intialize blank final variable?

Yes, only in constructor if it is non-static. If it is static blank final variable, it can be initialized only in the static block.

Can you declare the main method as final?

Yes, such as, public static final void main(String[] args){}.