Adolf Hitler Notes
As a child, Adolf clashed frequently with his father. Following the death of his younger brother, Edmund, in 1900, Adolf became detached and introverted.
Summary Writing Notes
Summary writing is an active, not passive, process. You must digest a reading and get it into your head in a coherent way to summarize it. This helps you master the material for your paper.
Functions In Java Notes
A function is named unit of program codes that can be called from anywhere in the class.
Recursive Function In Java Notes
A function which calls itself is known as a recursive function. A recursive function has two cases: recursive case and base case.
Fortune, Fate, And Free Will Notes
With an unpredictable swing up or down, one could equally easily crash to the base of the wheel. Fate, on the other hand, is fixed. In a fatalistic universe, the length and outcome of one's life (destiny) is predetermined by external forces.
Function Overloading In Java Notes
Function/Method Overloading is the Polymorphic behaviour of OOP ( Objected Oriented Programming). When several functions with same name but different function signature are defined, the process is said to be function overloading.
Single Dimension Array In Java Notes
An array is a continuous location in memory where elements of the same type (datatype) are stored. An array consists of several locations, as defined, and are referenced by a common name.
For Loop In Java Notes
The for loop in Java runs for a fixed number of times. In other words, loop which executes a set of statements a fixed number of times is known as a for loop.
While Loop In Java Notes
The while loop in Java runs as long as the given condition is true. while loop is an entry-controlled loop. That means decision whether the loop will run or not is taken at the beginning of the loop.
Double Dimension Array In Java Notes
A 2-D array or double dimension array is a continuous location in memory where elements of the same type (datatype) are stored. A 2-D array consists of rows and columns where an element is stored at the cross-section of row and column known as a location.