What is Garbage Collection and how to call it explicitly?

When an object is no longer referred to by any variable, java automatically reclaims memory used by that object. This is known as garbage collection. System. gc() method may be used to call it explicitly. In Java, garbage collection is a process by which the Java Virtual Machine (JVM) automatically manages memory by reclaiming the … Read more

What is UNICODE?-

Unicode is used for internal representation of characters and strings and it uses 16 bits to represent each other. Unicode is a standardized encoding system that assigns unique characters (including letters, numbers, symbols, and control characters) to every character in most of the world’s writing systems. It is designed to be a universal character set, … Read more

What is final, finalize() and finally?-

final : final keyword can be used for class, method and variables. A final class cannot be subclassed and it prevents other programmers from subclassing a secure class to invoke insecure methods. A final method can’t be overridden. A final variable can’t change from its initialized value. finalize() : finalize() method is used just before … Read more

What are different types of access modifiers?

public: Any thing declared as public can be accessed from anywhere. private: Any thing declared as private can’t be seen outside of its class. protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages. default modifier : Can be accessed only to classes in … Read more

What is the difference between an argument and a parameter?

While defining method, variables passed in the method are called parameters. While using those methods, values passed to those variables are called arguments. In Java, the terms “argument” and “parameter” are often used interchangeably, but they have distinct meanings: Parameter: A parameter is a variable that is listed in the method declaration. It is a … Read more