Topics
Revision of Class IX Syllabus
Introduction to Object Oriented Programming Concepts
- Introduction of Object-oriented Programming
- Procedure Oriented Language
- Object Oriented Language
- Principles of Object Oriented Programming (OOP)
Elementary Concept of Objects and Classes
- Introduction of Elementary Concept of Objects and Classes
- Creating an Object of a Class
- Real World Vs Software Class and Objects
- Features of a Class
Values and Data Types
- Introduction of Values and Data Types
- Character Sets in Java
- Encoding of Characters
- Escape Sequences
- Tokens
- Data Types
- Type Conversion
Operators in Java
- Introduction of Operators in Java
- Expression and Statement
- Types of Operators
Introduction to Java
- Introduction to Java
- Java Compiler and Interpreter
- Basic Elements of Java Programming
- Output Statement in Java Programming
- Java Programming using BlueJ
- Java Program on BlueJ Platform
Input in Java
- Introduction of Input in Java
- Using Function Argument
- Using Stream Class
- Using Scanner Class
- Using Command Line Argument
- Types of Errors
- Comment Statements in Java Programming
Mathematical Library Methods
- Introduction of Mathematical Library Methods
- Methods of Math Class
- Trigonometrical Functions
Conditional Statements in Java
- Introduction of Conditional Statements in Java
- Flow of Control
- Normal Flow of Control
- Conditional Flow of Control
Iterative Constructs in Java
- Introduction of Iterative Constructs in Java
- Entry Controlled Loop
- Exit Controlled Loop
Nested Loop
- Introduction of Nested Loop
- Types of Nested Loops
Library Classes
Arrays (Single Dimensional and Double Dimensional)
String Handling
User - Defined Method
Class as the Basis of All Computation
Constructors
Encapsulation
Single Dimensional Array:
A single-dimensional array is a structure that is represented along the X-axis by using several variables with the same name having different subscripts. A single-dimensional array is also called a single subscripted variable.
Creating a Single Dimensional Array
Note: Syntax: <Data type><variable>[] = new <Data type><Number of values to be stored>
For Example: int m[10] = new int[10]. Array elements can be accessed by
Syntax: <array name> <subscript>. For example, m[l] means the element of 'm' at first subscript.
Assigning Data in a 1 D Array
- By using the assignment statement: the data values are defined within the program itself. It may be an integer, a String, a char or a float type. For Example: int m[ ] = {15,7,22,12,34,45,23,31,27,40};
- By using the BlueJ System: In this method, the data values are to be entered at the time of execution of the program. Here the array is declared, but the values are entered during execution by the user. Syntax: public static void main(int m[ ])
- By using the lnputStreamReader class: The data values are to be entered at the time of executing the program. It may be any primitive datatype. Syntax: int m[ ]= new int[IO] ; it creates locations in the memory to store 10 different integer numbers.
- By using Scanner Class: Import “java.util.*”, create a “Scanner” object, then declare “int arr[] = new int[5];”.
If you would like to contribute notes or other learning material, please submit them using the button below.