Skip to main content

1. Revision of Class IX Syllabus
(i) Introduction to Object Oriented Programming
concepts, (ii) Elementary Concept of Objects and
Classes, (iii) Values and Data types, (iv) Operators
in Java, (v) Input in Java, (vi) Mathematical
Library Methods, (vii) Conditional constructs in
Java, (viii) Iterative constructs in Java, (ix) Nested
for loops.
2. Class as the Basis of all Computation
Objects and Classes
Objects encapsulate state and behaviour
numerous examples; member variables; attributes
or features. Variables define state; member
methods; Operations/methods/messages/methods
define behaviour.
Classes as abstractions for sets of objects; class
as an object factory; primitive data types,
composite data types. Variable declarations for
both types; difference between the two types.
Objects as instances of a class.
Consider real life examples for explaining the
concept of class and object.
3. User-defined Methods
Need of methods, syntax of methods, forms of
methods, method definition, method calling,
method overloading, declaration of methods,