0% found this document useful (0 votes)
28 views5 pages

ISC Class 11 Computer Science Syllabus 2023 24

The ISC Class 11 Computer Science syllabus for 2023-24 focuses on algorithmic problem solving, data representation, and object-oriented programming using Java. It includes two papers: a theory paper covering topics such as computer hardware, software, programming concepts, and ethical issues in computing, and a practical paper requiring students to implement algorithms and solve programming problems. The syllabus emphasizes both conceptual understanding and practical skills in coding, debugging, and ethical considerations in technology.

Uploaded by

Bhavna Arora
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)
28 views5 pages

ISC Class 11 Computer Science Syllabus 2023 24

The ISC Class 11 Computer Science syllabus for 2023-24 focuses on algorithmic problem solving, data representation, and object-oriented programming using Java. It includes two papers: a theory paper covering topics such as computer hardware, software, programming concepts, and ethical issues in computing, and a practical paper requiring students to implement algorithms and solve programming problems. The syllabus emphasizes both conceptual understanding and practical skills in coding, debugging, and ethical considerations in technology.

Uploaded by

Bhavna Arora
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/ 5

ISC Class 11 Computer Science Syllabus 2023-24

COMPUTER SCIENCE (868)


Aims (Conceptual) (3) To create awareness of ethical issues related to
computing and to promote safe, ethical
(1) To understand algorithmic problem solving
behavior.
using data abstractions, functional and
procedural abstractions, and object based and (4) To make students aware of future trends in
object-oriented abstractions. computing.
(2) To understand: (a) how computers represent, Aims (Skills)
store and process data at different levels of
To devise algorithmic solutions to problems and to
abstraction that mediate between the machine
be able to code, validate, document, execute and
and the algorithmic problem solving level and
debug the solution using the Java programming
(b) how they communicate with the outside
system.
world.
CLASS XI
There will be two papers in the subject: (when programming is discussed). For addition
Paper I: Theory………….. 3 hours…70 marks and subtraction (1’s complement and 2’s
complement) use the analogy with decimal
Paper II: Practical………. 3 hours…30 marks numbers, emphasize how carry works (this will be
PAPER I –THEORY – 70 MARKS useful later when binary adders are discussed).
Paper I shall be of 3 hours duration and be divided 2. Encodings
into two parts. (a) Binary encodings for integers and real
Part I (20 marks): This part will consist of numbers using a finite number of bits (sign-
compulsory short answer questions, testing magnitude, 2’s complement, mantissa-
knowledge, application and skills relating to the exponent notation).
entire syllabus. Signed, unsigned numbers, least and most
significant bits. Sign-magnitude
Part II (50 marks): This part will be divided into
representation and its shortcomings (two
three Sections, A, B and C. Candidates will be
required to answer two questions out of three from representations for 0, addition requires extra
Section A (each carrying 10 marks) and two step); two’s-complement representation.
questions out of three from Section B (each carrying Operations (arithmetic, logical, shift),
10 marks) and two questions out of three from discuss the basic algorithms used for the
Section C (each carrying 5 marks). Therefore, a total arithmetic operations. Floating point
of six questions are to be answered in Part II. representation: normalized scientific
notation, mantissa-exponent representation,
SECTION A binary point (discuss trade-off between size
Basic Computer Hardware and Software of mantissa and exponent). Single and double
precision.
1. Numbers
(b) Characters and their encodings (e.g. ASCII,
Representation of numbers in different bases and ISCII, Unicode).
interconversion between them (e.g. binary, octal, Discuss the limitations of the ASCII code in
decimal, hexadecimal). Addition and subtraction representing characters of other languages.
operations for numbers in different bases. Discuss the Unicode representation for the
Introduce the positional system of representing local language. Java uses Unicode, so
numbers and the concept of a base. Discuss the strings in the local language can be used
conversion of representations between different (they can be displayed if fonts are available)
bases using English or pseudo code. These – a simple table lookup for local language
algorithms are also good examples for defining equivalents for Latin (i.e. English) character
different functions in a class modelling numbers strings may be done. More details on
Unicode are available at www.unicode.org.

268

https://byjus.com
3. Propositional logic, Hardware Difference between object and class should
implementation, Arithmetic operations be made very clear. BlueJ (www.bluej.org)
(a) Propositional logic, well-formed formulae, and Greenfoot (www.greenfoot.org) can be
truth values and interpretation of well formed used for this purpose.
formulae, truth tables. (b) Analysis of some real-world programming
Propositional variables; the common logical examples in terms of objects and classes.
connectives ((not)(negation), Use simple examples like a calculator, date,
(and)(conjunction), (or)(disjunction), number etc. to illustrate how they can be
(implication), (equivalence)); definition treated as objects that behave in certain well-
of a well-formed formula (wff); defined ways and how the interface provides
representation of simple word problems as a way to access behaviour. Illustrate
wff (this can be used for motivation); the behaviour changes by adding new methods,
values true and false; interpretation of a wff; deleting old methods or modifying existing
truth tables; satisfiable, unsatisfiable and methods.
valid formulae.
(c) Basic concept of a virtual machine; Java
(b) Logic and hardware, basic gates (AND, Virtual Machine (JVM); compilation and
NOT, OR) and their universality, other gates execution of Java programs (the javac and
(NAND, NOR, XOR, XNOR), half adder, java programs).
full adder.
The JVM is a machine but built as a program
Show how the logic in (a) above can be
and not through hardware. Therefore it is
realized in hardware in the form of gates.
called a virtual machine. To run, JVM
These gates can then be combined to
machine language programs require an
implement the basic operations for
interpreter. The advantage is that such JVM
arithmetic. Tie up with the arithmetic
machine language programs (.class files) are
operations on integers discussed earlier in 2
portable and can run on any machine that
(a).
has the java program.
SECTION B
(d) Compile time and run time errors; basic
The programming element in the syllabus is aimed concept of an exception, the Exception class,
at algorithmic problem solving and not merely rote try-catch, throw, throws and finally.
learning of Java syntax. The Java version used
Differentiate between compile time and run
should be 5.0 or later. For programming, the
time errors. Run time errors crash the
students can use any text editor and the javac and
program. Recovery is possible by the use of
java programs or any other development
exceptions. Explain how an exception object
environment: for example, BlueJ, Eclipse, NetBeans
is created and passed up until a matching
etc. BlueJ is strongly recommended for its
catch is found. This behaviour is different
simplicity, ease of use and because it is very well
from the one where a value is returned by a
suited for an ‘objects first’ approach.
deeply nested method call.
4. Introduction to Object Oriented
6. Primitive values, Wrapper classes, Types and
Programming using Java
casting
Note that topics 5 to 12 should be introduced
Primitive values and types: byte, int, short, long,
almost simultaneously along with Classes and
float, double, boolean, char. Corresponding
their definitions.
wrapper classes for each primitive type. Class as
5. Objects type of the object. Class as mechanism for user
(a) Objects as data (attributes) + behaviour defined types. Changing types through user
(methods or methods); object as an instance defined casting and automatic type coercion for
of a class. some primitive types.

269

https://byjus.com
Ideally, everything should be a class; primitive Methods are like complex operations where the
types are defined for efficiency reasons; each object is implicitly the first argument. Operator
primitive type has a corresponding wrapper class. this denotes the current object. Methods typically
Classes as user defined types. In some cases types return values. Illustrate the difference between
are changed by automatic coercion or casting – primitive values and object values as arguments
e.g. mixed type expressions. However, casting in (changes made inside methods persist after the
general is not a good idea and should be avoided, call for object values). Static definitions as class
if possible. variables and class methods visible and shared
7. Variables, Expressions by all instances. Need for static methods and
variables. Introduce the main method – needed to
Variables as names for values; named constants begin execution. Constructor as a special kind of
(final), expressions (arithmetic and logical) and method; the new operator; multiple constructors
their evaluation (operators, associativity, with different argument structures; constructor
precedence). Assignment operation; difference returns a reference to the object.
between left-hand side and right-hand side of
assignment. 10. Arrays, Strings
Variables denote values; variables are already Structured data types – arrays (single and multi-
defined as attributes in classes; variables have dimensional), strings. Example algorithms that
types that constrain the values it can denote. use structured data types (searching, finding
Difference between variables denoting primitive maximum/minimum, sorting techniques, solving
values and object values – variables denoting systems of linear equations, substring,
objects are references to those objects. The concatenation, length, access to char in string,
assignment operator = is special. The variable on etc.).
the LHS of = denotes the memory location while
the same variable on the RHS denotes the contents Storing many data elements of the same type
of the location e.g. i=i+2. requires structured data types – like arrays.
Access in arrays is constant time and does not
NOTE: Library functions for solving expressions depend on the number of elements. Sorting
may be used as and when required. techniques (bubble, selection, insertion),
8. Statements, Scope Structured data types can be defined by classes –
Statements; conditional (if, if else, if else if, String. Introduce the Java library String class
switch case) ternary operator, looping (for, while, and the basic operations on strings (accessing
do while), continue, break; grouping statements in individual characters, various substring
blocks, scope and visibility of variables. operations, concatenation, replacement, index of
Describe the semantics of the conditional and operations).
looping statements in detail. Evaluation of the SECTION C
condition in conditional statements.
11. Basic input/output Data File Handling
Nesting of blocks. Variables with block scope, (Binary and Text)
method scope, class scope. Visibility rules when
variables with the same name are defined in (a) Basic input/output using Scanner and Printer
different scopes. classes.
9. Methods and Constructors Input/output exceptions. Tokens in an input
stream, concept of whitespace, extracting
Methods and Constructors (as abstractions for
tokens from an input stream (String
complex user defined operations on objects),
Tokenizer class). The Scanner class can be
methods as mechanisms for side effects; formal
used for input of various types of data (e.g.
arguments and actual arguments in methods;
int, float, char etc.) from the standard input
different behaviour of primitive and object
stream. Similarly, the Printer class handles
arguments. Static methods and variables. The this
output. Only basic input and output using
operator. Examples of algorithmic problem
these classes should be covered.
solving using methods (number problems,
finding roots of algebraic equations etc.).
270

https://byjus.com
Discuss the concept of a token (a delimited 14. Packages
continuous stream of characters that is
Definition, creation of packages, importing user
meaningful in the application program – e.g.
defined packages, interaction of objects across
words in a sentence where the delimiter is
packages.
the blank character). This naturally leads to
the idea of delimiters and in particular Java Application Programming Interface (API),
whitespace and user defined characters as development of applications using user defined
delimiters. As an example show how the packages.
StringTokenizer class allows one to extract a 15. Trends in computing and ethical issues
sequence of tokens from a string with user
defined delimiters. (a) Artificial Intelligence, Internet of Things,
Virtual Reality and Augmented Reality.
(b) Data File Handling.
Brief understanding of the above and their
Need for Data file, Input Stream, Output impact on Society.
Stream, Byte Stream (FileInputStream and
FileOutputStream), Character Stream (b) Cyber Security, privacy, netiquette, spam,
(FileReader, FileWriter), Operations- phishing.
Creation, Reading, Writing, Appending, and Brief understanding of the above.
Searching.
(c) Intellectual property, Software copyright and
12. Recursion patents and Free Software Foundation.
Concept of recursion, simple recursive methods Intellectual property and corresponding laws
(e.g. factorial, GCD, binary search, conversion of and rights, software as intellectual property.
representations of numbers between different
bases). Software copyright and patents and the
difference between the two; trademarks;
Many problems can be solved very elegantly by software licensing and piracy. free Software
observing that the solution can be composed of Foundation and its position on software,
solutions to ‘smaller’ versions of the same Open Source Software, various types of
problem with the base version having a known licensing (e.g. GPL, BSD).
simple solution. Recursion can be initially
motivated by using recursive equations to define Social impact and ethical issues should be
certain methods. These definitions are fairly discussed and debated in class. The
obvious and are easy to understand. The important thing is for students to realise
definitions can be directly converted to a that these are complex issues and there are
program. Emphasize that any recursion must multiple points of view on many of them and
have a base case. Otherwise, the computation there is no single ‘correct’ or ‘right’ view.
can go into an infinite loop.
PAPER II: PRACTICAL – 30 MARKS
13. Implementation of algorithms to solve
problems This paper of three hours duration will be evaluated
internally by the school.
The students are required to do lab assignments
in the computer lab concurrently with the The paper shall consist of three programming
lectures. Programming assignments should be problems from which a candidate has to attempt any
done such that each major topic is covered in at one. The practical consists of the two parts:
least one assignment. Assignment problems (1) Planning Session
should be designed so that they are sufficiently
challenging and make the student do algorithm (2) Examination Session
design, address correctness issues, implement The total time to be spent on the Planning session and
and execute the algorithm in Java and debug the Examination session is three hours.
where necessary. A maximum of 90 minutes is permitted for the
Self-explanatory. Planning session and 90 minutes for the Examination

271

https://byjus.com
session. Candidates are to be permitted to proceed 4. Simulate Adders using Arduino Controllers and
to the Examination Session only after the 90 Components.
minutes of the Planning Session are over.
5. Simulate a converter of Binary to Decimal
Planning Session number systems using Arduino Controllers and
Components.
The candidates will be required to prepare an
algorithm and a hand-written Java program to solve 6. Develop a console-based application using Java
the problem. for Movie Ticket Reservation.
Examination Session 7. Develop a console-based application using Java
to encrypt and decrypt a message (using cipher
The program handed in at the end of the Planning
text, Unicode-exchange, etc).
session shall be returned to the candidates. The
candidates will be required to key-in and execute the 8. Develop a console-based application using Java
Java program on seen and unseen inputs individually to find name of the bank and branch location
on the Computer and show execution to the from IFSC.
examiner. A printout of the program listing, including
9. Develop a console-based application using Java
output results should be attached to the answer script
to calculate taxable income (only direct tax).
containing the algorithm and handwritten program.
This should be returned to the examiner. The 10. Develop a console-based application using Java
program should be sufficiently documented so that to develop a simple text editor (text typing, copy,
the algorithm, representation and development cut, paste, delete).
process is clear from reading the program. Large
differences between the planned program and the EVALUATION
printout will result in loss of marks.
Marks (out of a total of 30) should be distributed as
Teachers should maintain a record of all the given below:
assignments done as part of the practical work
throughout the year and give it due credit at the time Continuous Evaluation
of cumulative evaluation at the end of the year. Candidates will be required to submit a work file
Students are expected to do a minimum of twenty containing the practical work related to programming
assignments for the year and ONE project based on assignments done during the year and ONE project.
the syllabus.
Programming assignments done 10 marks
throughout the year
LIST OF SUGGESTED PROJECTS:
Project Work (based on any topic from 5 marks
PRESENTATION / MODEL BASED/
the syllabus)
APPLICATION BASED
1. Creating an expert system for road-traffic
Terminal Evaluation
management (routing and re-routing of vehicles
depending on congestion). Solution to programming problem on 15 Marks
the computer
2. Creating an expert system for medical diagnosis
on the basis of symptoms and prescribe a suitable
treatment. (Marks should be given for choice of algorithm and
implementation strategy, documentation, correct
3. Creating a security system for age-appropriate
output on known inputs mentioned in the question
access to social media.
paper, correct output for unknown inputs available
only to the examiner).

272

https://byjus.com

You might also like