Liked Us?

What is class and object in Java ?What is class and object in Java ?

What is class and object?   A class is a template from which objects are created. That is objects are instance of a class.  When you create a class, you are creating a new data-type. You can use this…

Read more »
10 May 2013

Garbage Collection in Java

Garbage Collection   Objects are dynamically allocated by using the new operator.  In some languages, such as C++, dynamically allocated objects must be manually released by use of a delete operator.…

Read more »
10 May 2013

What is JVM ?

Each of the preceding buzzwords is explained in The Java Language Environment , a white paper written by James Gosling and Henry McGilton. In the Java programming language, all source code is first w…

Read more »
09 May 2013

What is Java ? and Features of JAVAWhat is Java ? and Features of JAVA

Java features What is Java? u Java is a programming language that: n  Is exclusively object oriented n  Has full GUI support n  Has full network support n  Is platform independent n  Executes stand-a…

Read more »
09 May 2013

Concept of Redirection and Piping in Unix

 Most UNIX commands expect input to come from a file(s), and produce output to anther file(s).  “One of these files is the standard input, and is the place from which a program expects to read its in…

Read more »
09 May 2013

Useful Commands in UbuntuUseful Commands in Ubuntu

A comprehensive list of commands needed when using Ubuntu: Command privileges.     sudo command - run command as root     sudo su – root shellopen     sudo su user – open shell as a user     sudo -k …

Read more »
08 May 2013
 
Top