0% found this document useful (0 votes)
4 views2 pages

Ipo Input Process Output

The document provides an overview of Java programming concepts, including input and output statements, data types, and how to check and install the Java JDK. It outlines the structure of a Java class, the main method, and the use of packages and methods. Additionally, it distinguishes between primitive and non-primitive data types in Java.

Uploaded by

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

Ipo Input Process Output

The document provides an overview of Java programming concepts, including input and output statements, data types, and how to check and install the Java JDK. It outlines the structure of a Java class, the main method, and the use of packages and methods. Additionally, it distinguishes between primitive and non-primitive data types in Java.

Uploaded by

dhanushmathi22
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

IPO : INPUT PROCESS OUTPUT

Input & Output Statement


- data type [ representation of data in memory ]
- variable
- operator
- branching statement
- looping statement
- arrays
- string

how to check java jdk in our system ?


- goto cmd ,
- then give a command java -- version

jdk install steps :


- search jdk download
- oracle java download click
- x64 installer use download then [ x64 = processor speed ]
-----------------------------------------
class Class_name
-- Classname start with capital letter
-----------------------------------------
public static void main(String args[])

public - Access specifier or modifier


static - won't change value
void - not return any value
main - entry point of program
String - all input from keyboard string
args[] - change in other datatype
------------------------------------------
import java.io.*;

java - package
io - class
* - all methods
------------------------------------------
System.out.println()

System - class
out - inner class
println - method
------------------------------------------

HOW TO RUN A PROGRAM ?

> javac file_name.java


>java file_name
------------------------------------------
DATA TYPE :

1. PRIMITIVE DATA TYPE [fixed size of memory]

- integer INT
- float
- double
- short
- long
- byte
- boolean
- char

2. NON PRIMITIVE DATA TYPE [ dynamic size of memory allocation ]

You might also like