Easeus the makers of free Easeus ToDo Backup for Windows have released a new freeware for Mac OS X. Called the MacCleaning, this free tool lets Mac users to...
Author - Nitin Agarwal
A blogger, tech evangelist, YouTube creator, books lover, traveler, thinker, and believer of minimalist lifestyle.
Java, like most other powerful programming languages, supports multi-dimensional arrays, like 2 dimensional and 3 dimensional arrays. Previously we have...
There aren’t many system tweakers for Ubuntu Linux operating sustem, but Ubuntu Tweak is a powerful tool to tweak Ubuntu. It can change settings, make easy for...
Now let’s study the structure of Arrays in Java. Array is the most widely used data structure in Java. It can contain multiple values of the same type...
Video Cards, commonly known as Graphic Cards or GPU (Graphic Processing Unit) are very common today with gaming becoming one of the primary activities for PC...
Recursion is the process of defining something in terms of itself. As it relates to Java programming, recursion is the attribute that allows a method to call...
Mac OS X Lion launched earlier this year was a great upgrade to the previous version of Mac OS X Snow Leopard. One of the many features offered in Mac OS X...
Web designing is one of the most widespread tasks, that can provoke the interest of a 10-year-old or a 75-year-old grandpa too! And for all those who...
Lately we learnt about the Static keyword in Java, which makes methods available for invoking even before creating objects. Very often a method needs to refer...
Normally a class member must be accessed in conjunction with an object of its class. There will be times when you will want to define the class member which...
The access to classes, constructors, methods, and fields are regulated using access modifiers, i.e. a class can control what information or data can be...
In our previous discussion on how to initialize instance variables in Java, we have came across constructor. Here we will discuss constructor in detail. First...
Introduction Since now you have learnt about creating objects of a Class in Java, we need to checkout how we can pass arguments while creating methods. In call...
Instance Variables In our previous discussion we have discussed what is instance variable or member variable. Instance variables are the variables which is...
Sometimes you may want to pass information into a program during runtime. This can be done by passing command line argument to main() method. Command line...