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

Class 11 ISC JAVA Notes

The document outlines key concepts related to Java programming, including file extensions for source (.java) and bytecode (.class), and the roles of the Java compiler, interpreter, and development kit (JDK). It explains the structure of Java programs, operator precedence, types of comments, and the distinction between assignment and equality operators. Additionally, it highlights Java as an object-oriented language and the process of converting source code to machine code.
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)
130 views1 page

Class 11 ISC JAVA Notes

The document outlines key concepts related to Java programming, including file extensions for source (.java) and bytecode (.class), and the roles of the Java compiler, interpreter, and development kit (JDK). It explains the structure of Java programs, operator precedence, types of comments, and the distinction between assignment and equality operators. Additionally, it highlights Java as an object-oriented language and the process of converting source code to machine code.
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

1. Extension for java source code is .

java
2. Extension for java byte code is .class
3. Compiler and interpreters are language translators are used for error checking and
conversion of High level language code to Machine Code and for checking errors.
4. IPO: Input Process Output
5. JVM : Java Virtual Machine also known as JAVA interpreter
6. JRE: Java Runtime Environment
7. JDK: Java Development Kit
8. JDK contains JAVA packages like java.util , java.lang, java.io etc
9. java.lang package is invoked in java program by default
10. Precedence of all operators: Unary → Arithmetic -> Relational -> Logical
11. Precedence of logical operators: Logical NOT ( ! ) → Logical AND ( && ) → Logical OR (
|| )
12. There are two types of comments in java: Single line ( // ) and multiple line ( /* …. */)
13. Output Statement in java: System.out.println() → prints and changes line
System.out.print() → prints and doesn’t change line
14. / and % both perform division but the first one is for quotient and the second one is for
remainder
15. = and == , here first one is assignment and the second one is equals to, assignment
operator is used to store a value in a variable and the equals to operator is used to compare
two values
16. unary operators are operators with one operand and binary operators work with two
operands
17. Keywords or Java reserved words are words with which already have a special meaning
in java , example- int, short, double , class, String.
18. JAVA is Object Oriented Programming Language
19. Java source code is first compiled by the Java compiler, which produces bytecode. This
bytecode is then given to the Java interpreter, which interprets it and produces machine
code (also known as object code).
20. Full Java codes are written within a class.

You might also like