0% found this document useful (0 votes)
167 views2 pages

ICSE Computer Applications - 25 - Removed

The document outlines the syllabus for Class X in Java programming. It covers key concepts like objects and classes, methods, constructors, encapsulation, arrays, strings and internal assessment. Students will be evaluated based on a written exam and programming assignments.

Uploaded by

itsanishrathod
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)
167 views2 pages

ICSE Computer Applications - 25 - Removed

The document outlines the syllabus for Class X in Java programming. It covers key concepts like objects and classes, methods, constructors, encapsulation, arrays, strings and internal assessment. Students will be evaluated based on a written exam and programming assignments.

Uploaded by

itsanishrathod
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/ 2

CLASS X

There will be one written paper of two hours duration multiple methods and more than one method with
carrying 100 marks and Internal Assessment of the same name (polymorphism - method
100 marks. overloading).

THEORY – 100 Marks 4. Constructors


Definition of Constructor, characteristics, types of
1. Revision of Class IX Syllabus constructors, use of constructors, constructor
(i) Introduction to Object Oriented Programming overloading.
concepts, (ii) Elementary Concept of Objects and Default constructor, parameterized constructor,
Classes, (iii) Values and Data types, (iv) Operators constructor overloading., Difference between
in Java, (v) Input in Java, (vi) Mathematical constructor and method.
Library Methods, (vii) Conditional constructs in
Java, (viii) Iterative constructs in Java, (ix) Nested 5. Library classes
for loops. Introduction to wrapper classes, methods of
wrapper class and their usage with respect to
2. Class as the Basis of all Computation numeric and character data types. Autoboxing and
Unboxing in wrapper classes.
Objects and Classes
Class as a composite type, distinction between
Objects encapsulate state and behaviour – primitive data type and composite data type or
numerous examples; member variables; attributes class types. Class may be considered as a new
or features. Variables define state; member data type created by the user, that has its own
methods; Operations/methods/messages/ methods functionality. The distinction between primitive
define behaviour. and composite types should be discussed through
Classes as abstractions for sets of objects; class examples. Show how classes allow user defined
as an object factory; primitive data types, types in programs. All primitive types have
corresponding class wrappers. Introduce
composite data types. Variable declarations for
Autoboxing and Unboxing with their definition
both types; difference between the two types. and simple examples.
Objects as instances of a class.
Consider real life examples for explaining the The following methods are to be covered:
concept of class and object.
int parseInt(String s),
3. User - defined Methods long parseLong(String s),
Need of methods, syntax of methods, forms of float parseFloat(String s),
methods, method definition, method calling, double parseDouble(String s),
method overloading, declaration of methods, boolean isDigit(char ch),
Ways to define a method, ways to invoke the boolean isLetter(char ch),
methods – call by value [with programs] and call boolean isLetterOrDigit(char ch),
by reference [only definition with an example],
boolean isLowerCase(char ch),
Object creation - invoking the methods with
respect to use of multiple methods with different boolean isUpperCase(char ch),
names to implement modular programming, using boolean isWhitespace(char ch),
data members and member methods, Actual char toLowerCase (char ch)
parameters and formal parameters, Declaration
of methods - static and non-static, method char toUpperCase(char ch)
prototype / signature, - Pure and impure methods,
- pass by value [with programs] and pass by
reference [only definition with an example],
Returning values from the methods , use of

161
6. Encapsulation int compareToIgnoreCase(String str)
Access specifiers and its scope and visibility. String replace (char oldChar,char newChar)
Access specifiers – private, protected and public. String substring (int beginIndex)
Visibility rules for private, protected and public
String substring (int beginIndex, int endIndex)
access specifiers. Scope of variables, class
variables, instance variables, argument variables, boolean startsWith(String str)
local variables.
boolean endsWith(String str)
7. Arrays String valueOf(all types)
Definition of an array, types of arrays, declaration, Programs based on the above methods, extracting
initialization and accepting data of single and and modifying characters of a string, alphabetical
double dimensional arrays, accessing the elements order of the strings in an array [Bubble and
of single dimensional and double dimensional Selection sort techniques], searching for a string
arrays. using linear search technique.
Arrays and their uses, sorting techniques -
selection sort and bubble sort; Search techniques INTERNAL ASSESSMENT - 100 Marks
– linear search and binary search, Array as a This segment of the syllabus is totally practical
composite type, length statement to find the size of
oriented. The accent is on acquiring basic
the array (sorting and searching techniques using
programming skills quickly and efficiently.
single dimensional array only).
Programming Assignments (Class X)
Declaration, initialization, accepting data in a
double dimensional array, sum of the elements in The students should complete a minimum of
row, column and diagonal elements [ right and 20 laboratory assignments during the whole year to
left], display the elements of two-dimensional reinforce the concepts studied in class.
array in a matrix format. Suggested list of Assignments:
8. String handling The laboratory assignments will form the bulk of the
course. Good assignments should have problems
String class, methods of String class, which require design, implementation and testing.
implementation of String class methods, String
They should also embody one or more concepts that
array have been discussed in the theory class. A
The following String class methods are to be significant proportion of the time has to be spent in the
covered: laboratory. Computing can only be learnt by doing.
String trim () The teacher-in-charge should maintain a record of all
the assignments done by the student throughout the
String toLowerCase()
year and give it due credit at the time of cumulative
String toUpperCase() evaluation at the end of the year.
int length( ) Some sample problems are given below as examples.
The problems are of varying levels of difficulty:
char charAt (int n)
(i) User defined methods
int indexOf(char ch)
(a) Programs depicting the concept of pure,
int lastIndexOf(char ch) impure, static, non- static methods.
String concat(String str) (b) Programs based on overloaded methods.
boolean equals (String str) (c) Programs involving data members, member
methods invoking the methods with respect to
boolean equalsIgnoreCase(String str) the object created.
int compareTo(String str)

162

You might also like