Think and Grow Rich.

Think and Grow Rich-Javaform
Think and Grow Rich

Think & Grow Rich.
The main knowledge we achieve from this book is "Whatever your mind can conceive and believe it can achieve" it was practically proved.After Reading this book put a strong goal believe it and one day you can achieve them. Anything you conceive, they can be achieved, by strongly believing them.Make a habit of reading such inspiring books and develop the changes in your personality from them.

Garbage Collection.

In this article, Garbage Collection is explained in detail with examples.
1.It is an intelligent piece of an algorithm, provided by "JVM", which performs cleaning operations in the memory of java program dynamically when a java program is running for a long period of time.
2.This algorithm checks for unused memory in JVM RAM,and destroys them automatically.
3.In doing so,memory is saved by JVM and RAM becomes free, hence performance of the program increases.
4.This algorithm runs in the background of a program by JVM in memory.
5.This concept is same as that of destructors in C++.
Note
1.This automatic process can also be done by the user by calling the following method.
public void gc();

The Richest Man In Babylon.

The Richest Man In Babylon-Javaform
The Richest Man In Babylon

The Richest Man In Babylon.
The Richest Man in Babylon is a book by George Samuel Clason which provides financial advice through a collection of parables set in ancient Babylon. This book gives the complete information on financial advice, how to start a business and how to make it successful. Read the book thrive the skills.

Deriving a class and Polymorphism in java.

In this article,Deriving a class  and Polymorphism in java are explained in detail with examples.
This concept is related to inheritance.Hence we inherit properties and methods of existing class into a new class.
Deriving a class in Java-Javaform

Method overloading.

In this article,Method overloading is explained in detail with examples.
Two or more methods in a single class with same name and atleast one difference in the signature is known as method loading.
Signature means a number of arguments, the order of arguments and data type of arguments.
Ex
class A
{
---Data members---;
---Constructors----;
void m1(int,int){---}
void m1(float,float){---}
void m1(int,float){---}
void m1(float,int){---}

Connect with Us by Subscribing here for more Updates..!

* indicates required