0% found this document useful (0 votes)
23 views1 page

6TH Subject Computer - Java Notes Class X - 2

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

6TH Subject Computer - Java Notes Class X - 2

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

3 Java Notes Class X

The (*) sign denotes that all the classes of the concerning
package will be made available for use in your program.
Keywords or Reserved words:
Java reserved words or the keywords are the words which
carry special meaning to the system compiler. Such words
cannot be used for naming a variable in the program.
case , switch, else, break , static, do, const, throws, float , char,
try, int, double, void, goto, for, while, new, import , boolean,
long, if, byte , package, private, catch, short, public, class ,
default.

Output statement: System.out.println( );


Comment line: The comment statement is a non executable
statement in Java.
These are the remarks given by the user.
Types: single line comment //----------
Multiline comment /* ---------- */
Document comment /** --------- **/
ASCII
A - Z 65 - 90
a-z 97 - 122
0-9 48 - 57
white space 32
Token: The smallest individual unit in a program is known as a
Token
Types:

You might also like