PHP Unit Testing with SimpleTest

What is Unit Testing Most developers agree that testing is important but few test their code. Even fever do it methodically. Many developers do not realize that there is a…

Java Constructors

Constructors are special kinds of methods which have the following properties: Constructors don’t have a return type Constructors have the same name as the class Constructors are used to initialize…

Java Inheritance Example

Inheritance is a fantastic feature which simplifies development and facilitates reuse of classes. A class can inherit properties and methods from another class. The inheriting class is called the subclass…

Java Arrays

Java arrays allow use to store multiple values of the same type. Array elements are accessible by their indices. 0 is the first index. arrayname.length gives the length of the…