English

Computer Applications 2015-2016 (English Medium) ICSE Class 10 Question Paper Solution

Advertisements
Computer Applications
Marks: 100 CISCE
(English Medium)

Academic Year: 2015-2016
Date & Time: 28th March 2016, 11:00 am
Duration: 2h
Advertisements

Section A (40 Marks) (Attempt all questions)
[10]1 | Attempt all questions
[2]1.a

Define Encapsulation.

Concept: undefined - undefined
Chapter: [0.08] Encapsulation
[2]1.b

What are keywords ? Give an example.

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]1.c

Name any two library packages.

Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods
[2]1.d

Name the type of error ( syntax, runtime or logical error) in each case given below: 

(i) Math.sqrt (36 – 45)
(ii) int a;b;c;

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]1.e

If int x [ ] = { 4, 3,7, 8, 9,10}; what are the values of p and q ?

(i) p = x.length
(ii) q = x[2] + x[5] * x[1]

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
[10]2
[2]2.a

State the difference between == operator and equals () method. 

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]2.b

What is the type of casting shown by the following example: 

char c = (char) 120;

Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types

What is the type of casting shown by the following example?

int x = 't'; 

Concept: undefined - undefined
Chapter:
Advertisements
[2]2.c

Differentiate between formal parameter and actual parameter. 

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
[2]2.d

Write a function prototype of the following: 

A function PosChar which takes a string argument and a character argument and returns an integer value.

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]2.e

Name any two types of access specifiers.

Concept: undefined - undefined
Chapter: [0.08] Encapsulation
[20]3
[2]3.a

Give the output of the following string functions:

  1. "MISSISSIPPI".indexOf('S') + "MISSISSIPPI".lastIndexOf('I')
  2. "CABLE".compareTo("CADET") 
Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.b

Give the output of the following Math functions: 

(i) Math.ceil(4.2)
(ii) Math.abs(-4)

Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods
[2]3.c

What is a parameterized constructor?

Concept: undefined - undefined
Chapter: [0.07] Constructors
[2]3.d

Write down java expression for:

`"T" = sqrt("A"^2 + "B"^2 + "C"^2)`

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]3.e

Rewrite the following using ternary operator:

if (x%2 == o)
System.out.print(“EVEN”);
else
System.out.print(“ODD”);

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
Advertisements
[2]3.f

Convert the following while loop to the corresponding for loop: 

int m = 5, n = 10;
while (n >= 1)
{
System.out.println(m*n);
n--;
}
Concept: undefined - undefined
Chapter: [0.011000000000000001] Nested Loop
[2]3.g

Write one difference between primitive data types and composite data types.

Concept: undefined - undefined
Chapter:
[2]3.h

Analyze the given program segment and answer the following questions:

(i) Write the output of the program segment.
(ii) How many times does the body of the loop gets executed?

for (int m=5; m<=20;m+=5)
{   if(m%3==0)
   break;
else
if(m%5==0)
System.out.println(m);
continue;
}

Concept: undefined - undefined
Chapter: [0.011000000000000001] Nested Loop
[2]3.i

Give the output of the following expression:
a+= a++ + ++a + -- a + a--; when a = 7;

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]3.j

Write the return type of the following library functions: 

  1. isLetterOrDigit(char)
  2. replace(char, char) 
Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods
Section B (60 Marks) (Attempt any four questions from this Section.)
[15]4

Define a class named BookFair with the following description: 
Instance variables/Data members :

String Bname — stores the name of the book
double price — stores the price of the book Member methods :
(i) BookFair() — Default constructor to initialize data members
(ii) void Input() — To input and store the name and the price of the book.
(iii) void calculate() — To calculate the price after discount. Discount is calculated based on the following criteria.

Price Discount
Less than or equal to Rs. 1000 2% of price

More than Rs. 1000 and less than or equal to Rs. 3000

10% of price
More than % 3000

15% of price

(iv) void display() — To display the name and price of the book after discount. Write a main method to create an object of the class and call the above member methods.

Concept: undefined - undefined
Chapter:
[15]5

Using the switch statement, write a menu-driven program for the following: 

(i) To print Floyd’s triangle [Given below]

1

2      3

4      5       6

7      8       9      10

11    12    13     14    15

(ii) To display the following pattern:

I

I     C

I     C      S

I     C      S     E

For an incorrect option, an appropriate error message should be displayed. 

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[15]6

Special words are those words that start and end with the same letter.
Examples:
EXISTENCE
COMIC
WINDOW
Palindrome words are those words which read the same from left to right and vice versa
Examples:
MALAYALAM
MADAM
LEVEL
ROTATOR
CIVIC
All palindromes are special words, but all special words are not palindromes. Write a program to accept a word check and print Whether the word is a palindrome or only a special word.

Concept: undefined - undefined
Chapter: [0.04] String Handling
[15]7

Design n class to overload a function SumSeriesO as follows: 

(i)

void SumSeries(int n, double x) – with one integer argument and one double argument to find and display the sum of the series given below:

`"s"  = "x"/1 - "x"/2 + "x"/3 - "x"/4 + "x"/5`...... ...... ...... to n terms

(ii)

void SumSeries() – To find and display the sum of the following series:
s = 1 + (1 x 2) + (1 x 2 x 3) + ….. + (1 x 2 x 3 x 4 x 20)

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
[15]8

Write a program to accept a number and check and display whether it is a Niven number or not. 
(Niven number is that number which is divisible by its sum of digits).
Example:
Consider the number 126.
The Sum of its digits is 1+2+6 = 9 and 126 is divisible by 9.

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[15]9

Write a program to initialize the seven Wonders of the World along with their locations in two different arrays. Search for the name of the country input by the user. If found, display the name of the country along with its Wonder, otherwise display “Sorry Not Found!”. 
Seven wonders — CHICHEN ITZA, CHRIST THE REDEEMER, TAJMAHAL, GREAT WALL OF CHINA, MACHU PICCHU, PETRA, COLOSSEUM
Locations — MEXICO, BRAZIL, INDIA, CHINA, PERU, JORDAN, ITALY
Example

Country Name: INDIA     Output: INDIA-TAJMAHAL
Country Name: USA        Output: Sorry Not Found!

Concept: undefined - undefined
Chapter: [0.04] String Handling

Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

CISCE previous year question papers ICSE Class 10 Computer Applications with solutions 2015 - 2016

     CISCE ICSE Class 10 Computer Applications question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our CISCE ICSE Class 10 Computer Applications question paper 2016 serve as a catalyst to prepare for your Computer Applications board examination.
     Previous year Question paper for CISCE ICSE Class 10 Computer Applications-2016 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
     By referring the question paper Solutions for Computer Applications, you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of CISCE ICSE Class 10 .

How CISCE ICSE Class 10 Question Paper solutions Help Students ?
• Question paper solutions for Computer Applications will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×