Posts Tagged ‘JAVA’

  • Description on JAVA Training and Certification

    May 9, 14 • 5221 Views • Resources10 Comments

    What is JAVA Training? JAVA is the most popular and mostly used programming language. Java is first released by Sun Microsystems in 1995. Under Java/J2EE Operating System Training course is a pre-requisite to the applications servers’ courses to get an idea

  • Applet

    Dec 12, 13 • 1840 Views • NotesNo Comments

    An applet is a Java program that runs on a Web browser. It is actually a small application program that performs a specific task assigned to it. It can be a fully functional Java application because it has the entire Java Application programming interface.

  • Object and Classes in Java

    Nov 25, 13 • 1932 Views • NotesNo Comments

    We all know that Java is based on Object Oriented Programming (OOP) concept. The full form of OOP itself defines that the language Java is fully based on objects. These objects link Java to the real world models as one object represents one whole entity. Let

  • Inheritence and its types in Java

    Nov 23, 13 • 1439 Views • NotesComments Off on Inheritence and its types in Java

    Java is a programming language which is mainly based on OOPs concept. Now what is OOPs? Well, OOPs stands for Object Oriented Programming. It is concept which links our programs to real world models. This OOP concept has four main features –  1.    

  • Solved Interview Questions of JAVA…..

    Mar 11, 13 • 1893 Views • Engineering Sample PapersNo Comments

    Solved Interview Questions of JAVA… 1. What are the different ways to handle exceptions? ans.There are two ways to handle exceptions, 1. By wrapping the desired code in a try block followed by a catch block to catch the exceptions. and 2. List the