Sunday, 29 June 2014

First Java Program By Vandna Sharma: Another name of Java

When we consider a Java program it can be defined as a collection of objects that communicate via invoking each other's methods. Let us now briefly look into what do class, object, methods and instance variables mean.
First Java Program by Vandna Sharma: another name of JAVA
  • Object - Objects have states and behaviors. Example: A dog has states - color, name, breed as well as behaviors -wagging, barking, eating. An object is an instance of a class.
  • Class - A class can be defined as a template/ blue print that describes the behaviors/ states that object of its type support.
  • Methods - A method is basically a behavior. A class can contain many methods. It is in methods where the logics are written, data is manipulated and all the actions are executed.

Thursday, 26 June 2014

Interview Question on Java By Vandna Sharma: Another name of Java

Q: What do you know about Java?
Interview Question on JAVA
Vandna Sharma: Another name of JAVA
A: Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.

Q: What are the supported platforms by Java Programming Language?
A: Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX/ Linux like HP-Unix, Sun Solaris, Redhat Linux, Ubuntu, CentOS, etc.


Wednesday, 25 June 2014

Compile/Execute Java Programs | Vandna Sharma: Another name of Java

Prerequisites

Prerequisites JAVA |
Vandna Sharma: Another Name of Java
Before you start doing practice with various types of examples given in this tutorial by Vandna Sharma, I'm making an assumption that you are already aware about JAVA PREREQUISITES

Java has evolved to be the most predominant and popular general purpose programming language of the current age. Java is a simple, portable, distributed, robust, secure, dynamic, architecture neutral, object oriented programming language. It was developed by Sun Microsystems

This technology allows the software designed and developed once for an idealized ‘virtual machine’ and run on various computing platforms. For More Information please go with this link [Click Here For More Details on Perrequisites]

Sunday, 22 June 2014

JAVA Virtual Machine | Vandna Sharma: Another name of JAVA


JVM | Vandna Sharma: Another name of JAVA
The Java virtual machine (JVM) is a software implementation of a computer that executes programs like a real machine. 

 The Java virtual machine is written specifically for a specific operating system, e.g., for Linux a special implementation is required as well as for WindowsJava programs are compiled by the Java compiler into bytecode

The Java virtual machine interprets this bytecode and executes the Java programThe target of Java is to write a program once and then run this program on multiple operating systems.

History of JAVA | Vandna Sharma: Another name of JAVA

JAVA | Vandna Sharma: Another of JAVA
Java is a programming language created by James Gosling from Sun Microsystems (Sun) in 1991. The first publicly available version of Java (Java 1.0) was released in 1995. Sun Microsystems was acquired by the Oracle Corporation in 2010. Oracle has now the steermanship for Java. Over time new enhanced versions of Java have been released.

The current version of Java is Java 1.7 which is also known as Java 7. From the Java programming language the Java platform evolved. The Java platform allows software developers to write program code in other languages than the Java programming language which still runs on the Java virtual machine.

Monday, 19 May 2014

Know Something about JAVA | Vandna Sharma: Another name of JAVA

JAVA | Vandna Sharma: Another name of JAVA
Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. 

Java runs on a variety of platforms, such as WindowsMac OS, and the various versions of UNIXThis tutorial gives a complete understanding of Javahigh-level programming language developed by Sun Microsystems

Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide WebJava is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files (files with a .java extension) are compiled into a format called bytecode (files with a .class extension), which can then be executed by a Java interpreter.