Tag Archives: Java

C# – What is a derived class?

As the name implies, a derived class originates from another class, which in C# is called a base class. A derived class is a specialization of the base class. A derived class is created from an existing base class. It inherits the member variables and methods of the base class from which it is derived. […]

What technical documents does a JAVA banking project need?

I was recently asked how to start documentating for a Banking solution which is been developed in Java on Open-Source platform. What kind to documents should i write for this project? Now, there isn’t much to go on here, so… It depends on what the client actually wants. Here’s what I’d do: 1. Ask the […]