From the category archives:

Java

Java Programming

Student Management – Java Mini Project using AWT, ODBC

November 10, 2009

I made the following mini project for my own amusement which uses AWT and Database connectivity using ODBC. I can use either Oracle or MySQL for the back-end. Just make sure to make the correct connection.
Its a simple application which queries the database and inserts values. Got not much use but for practicing concepts in [...]

0 comments

Choice of Web Application Servers

October 23, 2009

If you are just starting out in advance java and have no understanding of J2EE architecture then this article is for you. Before you start with any programming you need to install a nice IDE and an application server, with so many options available, its not an easy task. Lets get you started.
One of the [...]

0 comments

Why NIIT is even worse than a tuition center

October 22, 2009

NIIT is one of the biggest training institutes of IT related courses in India. It teaches C, C++, Java, .Net and the very famous GNIIT which is actually a 2 year diploma from NIIT itself with a BSc IT degree from distance learning.
It is worse than even 1 room tuition centers open all throughout Delhi [...]

4 comments
The Java Story

The Java Story

October 22, 2009

I did my Core Java in college and also enrolled myself with NIIT paying a hefty amount (Rs.22,000) for Core + Advance Java. Little did I know, that my money was going to waste. Students doing engineering and IT courses in India all have heard this fancy word JAVA in there existence as a collegiate.
Its [...]

0 comments
Java Programming

Method Overriding in Java

October 17, 2009

Method Overriding happens when the method (function) having the same signature as that of the base class overrides the original method. This makes it possible for the method of the derived class to be used and not the base class.

2 comments
Java Programming

Method Overloading in Java

October 17, 2009

Method Overloading happens when their exists methods (functions) having the same name but different signatures.

0 comments
Java Programming

Using CommandLine to Swap two integers in Java

October 17, 2009

Using functions SWAP two numbers taken as input from Command Line arguments in Java

0 comments

Java Programming Language Cheat Sheet

October 4, 2009

Java Language Cheat Sheet for learning shortcuts to common problems, list of useful syntax and other information to make coding easier.

0 comments
Java Programming

Accepting input from Command-Line in Java

September 18, 2009

Accepting input from Command-Line in Java and taking 10 numbers. Print the smallest and largest by sorting the list using Bubble Sort.

1 comment