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
Construct or Components of a Method:
1. Header
It is the first line, which contains the access specifier, return type, method name and a list of parameters. Method header is also referred to as method prototype. The compiler checks the compatibility of the values passed to the method and its receiving parameters.
2. Method (Function) Signature
A method signature is the identification of a method. It signifies a method that is to be invoked for a specific operation. It is written using the method name and the parameters to be passed to it. For Example: add(a,b)
3. Access-specifier
Access specifiers deal with the scope of usage of a function. If Public, it can be accessed by any source, even from external class functions. private function can be accessed by a member of only that class. Protected is used for inherited class types.
4. Return type
It is the data type used before the method name in the method header. It indicates the type of outcome of a method to be returned to its caller. In case a method doesn't return any value, its return type is mentioned as void.
5. Function name
Each method includes a name with which it is identified. The function name should preferably be related to the process being carried out in the function.
6. Parameter list
It is a list of variables with their respective data types. Method will receive value based on this list. If it is empty, then it does not receive any value at all.
7. Method block
The function body contains a set of statements which are to be executed. These statements written under method header are enclosed within a pair of curly braces and is known as method block or body of the method.
8. Return statement
A statement that sends back the value from a method to its caller program, is known as Return statement. It is used at the end of a function and can also be called the function terminator. It can only return a single value from a method to its caller. Also, in a function there may be more than one termination point, hence there can be more than one return statement.