Blog

ICSE Class 10 Computer Applications 2011 Solved Question Paper

ICSE Solved Papers

ICSE Class 10 Computer Applications 2011 Solved Question Paper

ICSE Class 10th Computer Applications ( Java ) 2011 Solved Question Paper

If you have any doubts, ask them in the comments section at the bottom of this page.

ICSE Class 10 Computer Applications Question Paper – 2011 (Solved)
Computer Applications
Class X

SECTION – A (40 Marks)

Answer all questions from this Section

Question 1.
(a) What is the difference between an object and a class? [2]
Ans. 1. A class is a blueprint or a prototype of a real world object. It contains instance variables and methods whereas an object is an instance of a class.
2. A class exists in the memory of a computer while an object does not.
3. There will be only one copy of a class whereas multiple objects can be instantiated from the same class.
(b) What does the token ‘keyword’ refer to in the context of Java? Give an example for keyword. [2]
Ans. Keywords are reserved words which convey special meanings to the compiler and cannot be used as identifiers. Example of keywords : class, public, void, int
(c) State the difference between entry controlled loop and exit controlled loop. [2]
Ans. In an entry controlled loop, the loop condition is checked before executing the body of the loop. While loop and for loop are the entry controlled loops in Java.
In exit controlled loops, the loop condition is checked after executing the body of the loop. do-while loop is the exit controlled loop in Java.
(d) What are the two ways of invoking functions? [2]
Ans. If the function is static, it can be invoked by using the class name. If the function is non-static, an object of that class should be created and the function should be invoked using that object.
(e) What is difference between / and % operator? [2]
Ans. / is the division operator whereas % is the modulo (remainder) operator. a / b gives the result as quotient obtained on diving a by b whereas a % b gives the remainder obtained on diving a by b.

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 2.
(a) State the total size in bytes, of the arrays a [4] of char data type and p [4] of float data type. [2]
Ans. char is two bytes. So a[4] will be 2*4=8 bytes.
float is 4 bytes. So p[4] will be 4*4=16 bytes.
(b) (i) Name the package that contains Scanner class.
(ii) Which unit of the class gets called, when the object of the class is created? [2]
Ans. (i) java.util
(ii) Constructor
(c) Give the output of the following: [2]

String n = “Computer Knowledge”;
String m = “Computer Applications”;
System.out.println(n.substring (0,8). concat (m.substring(9)));
System.out.println(n.endsWith(“e”));

Ans. n.substring(0,8) gives “Computer”. m.substring(9) gives “Applications”. These two on concatenation gives “ComputerApplications”. n ends with “e”. So, it gives true.
The output is:
1 ComputerApplications
2 true
(d) Write the output of the following: [2]
(i) System.out.println (Character.isUpperCase(‘R’));
(ii) System.out.println(Character.toUpperCase(‘j’));
Ans. (i) true
(ii) J
(e) What is the role of keyword void in declaring functions? [2]
Ans. void indicates that the function doesn’t return any value.

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 3
(a) Analyse the following program segment and determine how many times the loop will be executed and what will be the output of the program segment ? [2]

int p = 200;
while(true)
{
    if (p<100)
        break;
    p=p-20;
}
System.out.println(p);

Ans.p values changes as follows : 200, 180, 160, 140, 120, 100, 80. So, the loop executes six times and value of p is 80.
(b) What will be the output of the following code? [4]
(i)

int k = 5, j = 9;
k += k++ – ++j + k;
System.out.println("k= " +k);
System.out.println("j= " +j);

Ans. k = 6 , j = 10
Explanation:
k += k++ – ++j + k
k = k + k++ – ++j + k
k = 5 + 5 – 10 + 6
k = 6
j = 10 as it has been incremented in the ++j operation.
(ii) 

double b = -15.6;
double a = Math.rint (Math.abs (b));
System.out.println("a= " +a);                                [2]

Ans. a =16.0
Maths.abs(-15.6) will give 15.6 and Math.rint(15.6) gives 16.0.
(c) Explain the concept of constructor overloading with an example . [2]
Ans. A class can have more than one constructor provided that the signatures differ. This is known as constructor overloading.
Example:

class Age
{
    int age;
    public Age()
    {
        age = -1;
    }
    public Age(int age)
    {
        this.age = age;
    }
}

(d) Give the prototype of a function search which receives a sentence sentnc and a word wrd and returns 1 or 0 ? [2]
Ans.
public boolean function ( sentence sentnc, word wrd )
or
public int function ( sentence sentnc, word wrd )
(e) Write an expression in Java for z = (5×3 + 2y ) / ( x + y) [2]
Ans. z = ( 5 * Math.pow ( x, 3 ) + 2 * y ) / ( x + y )
(f) Write a statement each to perform the following task on a string: [2]
(i) Find and display the position of the last space in a string s.
(ii) Convert a number stored in a string variable x to double data type
Ans. (i) System.out.println(s.lastIndexOf(” “);
(ii) Double.parseDouble(x)
(g) Name the keyword that: [2]
(i) informs that an error has occurred in an input/output operation.
(ii) distinguishes between instance variable and class variables.
Ans. (i) throw
(ii) static
(h) What are library classes ? Give an example. [2]
Ans. Library classes are the predefined classes which are a part of java API. Ex: String, Scanner
(i) Write one difference between Linear Search and Binary Search . [2]
Ans. Linear search can be used with both sorted and unsorted arrays. Binary search can be used only with sorted arrays.

ICSE Class 10 Computer Applications 2011 Solved Question Paper

SECTION – B (60 Marks)

Attempt any four questions from this Section.

The answers in this Section should consist of the Programs in either Blue J environment or any program environment 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.

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 4.
Define a class called mobike with the following description: [15]
Instance variables/data members: int bno – to store the bike’s number
int phno – to store the phone number of the customer
String name – to store the name of the customer
int days – to store the number of days the bike is taken on rent
int charge – to calculate and store the rental charge
Member methods:
void input( ) – to input and store the detail of the customer.
void computer( ) – to compute the rental charge
The rent for a mobike is charged on the following basis.
First five days Rs 500 per day;
Next five days Rs 400 per day
Rest of the days Rs 200 per day
void display ( ) – to display the details in the following format:
Bike No. PhoneNo. No. of days Charge
Ans.

import java.util.Scanner;
public class mobike
{
    int bno;
    int phno;
    String name;
    int days;
    int charge;
    public void input()
    {
        Scanner kb = new Scanner(System.in);
        System.out.print("Enter bike number: ");
        bno = kb.nextInt();
        System.out.print("Enter phone number: ");
        phno = kb.nextInt();
        System.out.print("Enter your name: ");
        name = kb.next();
        System.out.print("Enter number of days: ");
        days = kb.nextInt();
    }
    public void compute()
    {
        if (days <= 5)
        {
            charge = 500 * days;
        }
        else if (days <= 10)
        {
            charge = 5 * 500 + (days - 5) * 400;
        }
        else
        {
            charge = 5 * 500 + 5 * 400 + (days - 10) * 200;
        }
    }
    public void display()
    {
        System.out.println("Bike No. \tPhone No. \t No. of Days \t Charge");
        System.out.println(bno + "\t" + phno + "\t" + days + "\t" + charge);
    }
}

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 5.
Write a program to input and sort the weight of ten people. Sort and display them in descending order using the selection sort technique. [15]
Ans.

import java.util.Scanner;
public class SelectionSort
{
    public static void main(String[]args)
    {
        Scanner kb = new Scanner(System.in);
        int[] weights = new int[10];
        System.out.println("Enter weights: ");
        for (int i = 0; i < 10; i++)
	{
	    weights[i] = kb.nextInt();
	}
	for (int i = 0; i < 10; i++)
	{
	    int highest = i;
	    for (int j = i + 1; j < 10; j++)
	    {
		if (weights[j] > weights[highest])
		{
		    highest = j;
		}
	    }
	    int temp = weights[highest];
	    weights[highest] = weights[i];
	    weights[i] = temp;
	}
	System.out.println("Sorted weights:");
	for (int i = 0; i < 10; i++)
	{
	    System.out.println(weights[i]);
	}
    }
}

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 6.
Write a program to input a number and print whether the number is a special number or not. (A number is said to be a special number, if the sum of the factorial of the digits of the number is same as the original number). [15]

import java.util.*;
public class SpecialNumberCheck
{
    public static void main(String args[])
    {
	int n , temp , digit, sum = 0 , fact;
        Scanner kb = new Scanner(System.in);
        System.out.println("Enter the number to be checked.");
        n = kb.nextInt();
        temp = n;
        while(temp!=0)
        {
            digit = temp%10;
	    fact=1;
            for(int i = 1; i<=digit; i++)
            {
                fact=fact*i;
            }
            sum = sum + fact;
            temp = temp/10;
        }
        if(sum==n)
        {
            System.out.println(n+" is a Special Number.");
        }
        else
        {
            System.out.println(n+" is not a Special Number.");
        }
    }
}

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 7
Write a program to accept a word and convert it into lowercase if it is in uppercase, and display the new word by replacing only the vowels with the character following it. [15]
Example
Sample Input : computer
Sample Output : cpmpvtfr
Ans.

import java.util.Scanner;
public class ReplaceVowel
{
    public static void main(String[]args)
    {
        Scanner kb = new Scanner(System.in);
        System.out.print("Enter a String: ");
        String s = kb.next();
        input = s.toLowerCase();
        String ans = "";
        for (int i = 0; i < s.length(); i++)
        {
            char c = s.charAt(i);
            if (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u')
            {
                ans = ans + (char) (c + 1);
            }
            else
            {
                ans = ans + c;
            }
        }
        System.out.println(ans);
    }
}

Question 8.
Design a class to overload a function compare ( ) as follows: [15]
(a) void compare (int, int) – to compare two integer values and print the greater of the two integers.
(b) void compare (char, char) – to compare the numeric value of two character with higher numeric value
(c) void compare (String, String) – to compare the length of the two strings and print the longer of the two.
Ans.

public class Overloading {
    public void compare(int a, int b) {
        int max = Math.max(a, b);
        System.out.println(max);
    }
    public void compare(char a, char b) {
        char max = (char) Math.max(a, b);
        System.out.println(max);
    }
    public void compare(String a, String b) {
        if (a.length() > b.length()) {
            System.out.println(a);
        } else if (a.length() < b.length()) {
            System.out.println(b);
        } else {
            System.out.println(a);
            System.out.println(b);
        }
    }
}

ICSE Class 10 Computer Applications 2011 Solved Question Paper

Question 9
Write a menu driven program to perform the following . (Use switch-case statement) [15]
(a) To print the series 0, 3, 8, 15, 24 ……. n terms (value of ‘n’ is to be an input by the user).
(b) To find the sum of the series given below:
S = 1/2+ 3/4 + 5/6 + 7/8 … 19/20
Ans.
Series 1 : The ith term is i2-1

import java.util.Scanner;
public class Menu
{
   public static void main(String[] args)
   {
        Scanner kb = new Scanner(System.in);
        System.out.println("1. To Print 0, 3, 8, 15, 24... n tersm");
        System.out.println("2. For Sum of series 1/4 + 3/4 + 7/8 + ... n terms");
        System.out.print("Enter your choice: ");
        int choice = kb.nextInt();
        System.out.print("Enter no. of terms: ");
        int n = kb.nextInt();
        switch(choice)
   	{
            case 1:
		    for (int i = 1; i <= n; i++)
		    {
            	        int term = i * i - 1;
            		System.out.print(term + " ");
        	    }
                    break;
            case 2:
                    for (int i = 1; i <= n; i++)
		    {
            		sum = sum + (2 * i - 1) / (2 * i);
        	    }
                    System.out.println(sum);
                    break;
            default:
                    System.out.println("Invalid choice");
        }
    }
}
}
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare