News:

MyKidsDiary.in :: Capture your kids magical moment and create your Online Private Diary for your kids

Main Menu

ICSE Sample Papers : Computer Applications : Class-X Question paper

Started by ganeshbala, Apr 16, 2009, 07:54 PM

Previous topic - Next topic

ganeshbala

ICSE Sample Papers : Computer Applications : Class-X Question paper

Sample Paper – 2009
Computer Applications

Class – X
Time: 3 hours Full Marks: 100

Answer to this paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent in reading the question paper. The time given at the head of the paper is the time allowed for writing the answers.
This paper is divided in to two Sections. Attempt all questions in Section A and any four questions from Section B. The intended marks for the questions or parts thereof are given in brackets([ ]).


Section A (40 marks)
Attempt all questions

1. (a) Name the four integer data types of Java. [2]
(b) What is a "ternary operator" of Java? [2]
(c) What is meant by "nesting of loops"? Give suitable example. [2]
(d) Differentiate between int and float data type. Give one example for each. [2]
(e) What is Polymorphism? Give one example. [2]

2. (a) What is meant by "exit controlled loop"? Give one example. [2]
(b) Differentiate between constructor and finalizer with suitable examples for each. [2]
(c) What do you understand by the term "Escape Sequence"? Give two example with proper explanation. [2]
(d) Differentiate between data abstraction and data encapsulation [4]

3. (a) Give the output of the following code snippets: [2 + 2 = 4]
(i) int f = 1, i = 2;

do {

f * = i;
i++;

}while ( i < 5 );

System.out.println ( f );



(ii) int a = 0, p;
for( int i = 0; i < 5; ++i ) {
a = a + p * i;
System.out.println( a );
}

(b) Find error(s), if any in the following code snippets: [2 + 2 = 4]
(i) int i [][] = {{1, 2}, {3, 4}};
i [1, 1] = 5;

(ii) int b[] = new int [10];
for ( int i = 0; I <= b.length; ++i )
b = 1;

(c) Create a multidimensional array in which each there are three rows & each row has different numbers of columns: 1st row has three columns, 2nd row has 2 columns and the last row has 4 columns. [2]

4. (a) Write the equivalent do-while loop for the following for loop: [2]
for ( ; ; )
{s; } //s represents any statement

(b) Assume that i = 1, j = 2, k = 3, and m = 2. What does ach of the following statements print? [2]
(i) System.out.println ( k + m < j | 3 – j >= k );
(ii) System.out.println ( ! ( k > m ));

(c) What would happen when the following is compiled and executed? [3 + 3 = 6]
(i) class Example {
int x, y;
String name;
public static void main ( string[] args) {
Example ex = new Example ();
System.out.println ( "ex is '' + ex.name + " " + ex.x + " '' + ex.y);
}
}

(ii) public class XYZ{
public static void main(String[ ]args) {
for ( int i = 0; i < 2; ++i ) {
for ( int j = 2; j >= 0; j-- ) {
if ( i = = j )
break;
System.out.println ( "i = " + i + "j = " + j );
}
}
}
}


Section B (15 x 4 = 60 marks)
Attempt any 4 questions from this section

The answer in this Section should consist of the programs in either BlueJ environment or any other program environment or with Java as the base. Each program should be written using Variable Descriptions/Mnemonic Codes such that the logic of the program is clearly depicted. Flow charts and algorithms are not required.

5. Write an application that inputs a line of text and output the text twice – once in all upper case and once in all lower case letters.

6. Create a class Rectangle that has attributes length & width each of which defaults to 1. It has methods that calculate the perimeter and the area of the rectangle. It has set and get methods for both length and width. The set and get methods should verify that length and width are each floating-point numbers larger than 0.0 and smaller than 20.0.

7. Create and populate one-dimensional integer array where duplicacy of elements is allowed. Using any searching algorithm you like, locate the search key (i.e. the element to be searched) a well as its number of occurrence in the array taking the search key as an input from the user.

8. Write an application that has a method integerPower (base, exponent) that returns the value of
base exponent

For example, integerPower (3, 4) calculates 34 (or 3 * 3 * 3 * 3). Assume that exponent is a positive, nonzero integer and that base is an integer. The method should use a for or while loop to control the calculation. Do not use any math-library methods.

9. Write an application that estimates the value of the mathematical constant e by using the formula:

e = 1 + 1/1! + 1/2! + 1/3! + .....

10. Write a program that calculates the average marks of an arbitary number of students each time the program is run. Your program should ask the marks from user for arbitary number times. When the user finishes entering all the marks he/she will enter -1 to indicate the end of date entry. The program should then process all the data entered and display the average.

naman goyal