0% found this document useful (0 votes)
35 views7 pages

Java Session 2

The document outlines a Java programming course for BCA students at Vijayanagara Sri Krishnadevaraya University, detailing various JDK versions from 1995 to 2014. It highlights the applications of Java in desktop, web, enterprise, mobile, embedded systems, smart cards, robotics, and gaming. Additionally, it includes a simple Java program example demonstrating basic conditional statements.

Uploaded by

halkar Rachappa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views7 pages

Java Session 2

The document outlines a Java programming course for BCA students at Vijayanagara Sri Krishnadevaraya University, detailing various JDK versions from 1995 to 2014. It highlights the applications of Java in desktop, web, enterprise, mobile, embedded systems, smart cards, robotics, and gaming. Additionally, it includes a simple Java program example demonstrating basic conditional statements.

Uploaded by

halkar Rachappa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd

Paper Title: Java programming

Programme BCA
Subject Computer Science
Course 24MJBCA3L1
Code
Semester III
University Vijayanagara Sri Krishnadevaraya University, Ballari
(VSKUB)
Created by Dr. Halkar Rachappa
Session 2
JDK Versions
• JDK 1.02 (1995)
• JDK 1.1 (1996)
• JDK 1.2 (1998)
• JDK 1.3 (2000)
• JDK 1.4 (2002)
• JDK 1.5 (2004) a. k. a. JDK 5 or Java 5
• JDK 1.6 (2006) a. k. a. JDK 6 or Java 6
• JDK 1.7 (2011) a. k. a. JDK 7 or Java 7
• JDK 1.8 (2014) a. k. a. JDK 8 or Java 8
Applications of java
• 1. Desktop Applications such as acrobat reader, media
player, antivirus etc.
• 2. Web Applications such as irctc.co.in, javatpoint.com
etc.
• 3. Enterprise Applications such as banking applications.
• 4. Mobile
• 5. Embedded System
• 6. Smart Card
• 7. Robotics
• 8. Games etc.
Structure of Java Program
Java program example
Java program example
import java.io.*;
import java.util.Scanner;
class GFG
{
public static void main(String[] args)
{
int num = 10;
if (num % 2 == 0) {
System.out.println("Entered Number is Even");
}

else {
System.out.println("Entered Number is Odd");

}
}
}
Thank you

You might also like