0% found this document useful (0 votes)
884 views8 pages

Sample Papers: Icse Class 10

This document provides sample papers for the ICSE Class 10 board exams in 2019. It includes a sample paper for Computer Applications with 3 sections - Section A with 3 questions, Section B with 4 questions, and instructions for answering the questions. Section A has short answer questions worth 40 marks total. Section B has programming questions worth 60 marks total and students should attempt any 4 questions. The document provides examples of question types that could appear on the ICSE Class 10 Computer Applications exam.

Uploaded by

fahad alam
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)
884 views8 pages

Sample Papers: Icse Class 10

This document provides sample papers for the ICSE Class 10 board exams in 2019. It includes a sample paper for Computer Applications with 3 sections - Section A with 3 questions, Section B with 4 questions, and instructions for answering the questions. Section A has short answer questions worth 40 marks total. Section B has programming questions worth 60 marks total and students should attempt any 4 questions. The document provides examples of question types that could appear on the ICSE Class 10 Computer Applications exam.

Uploaded by

fahad alam
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/ 8

ICSE CLASS 10

SAMPLE PAPERS
FOR BOARD EXAMS IN 2019

www.exam18.com
ICSE Sample Paper for 2018 – 2019
COMPUTER APPLICATIONS

G.D. SOMANI MEMORIAL SCHOOL


SUBJECT: Computer Applications MARKS: 100
TIME: 2 HRS

Answers 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 this Paper is the time allowed for writing the answers.
This Paper is divided into two Sections.
Attempt all questions from Section A and any four from Section B.
The intended marks for questions or parts of questions are given in brackets [ ].

SECTION A (40 MARKS)


(Attempt all questions)
Question 1: [10 Marks]
1. Define Abstraction in java.
2. What are actual parameters and formal parameters?
3. Differentiate between for loop and do-while loop.
4. Define Wrapper class with an example.
5. How much bytes does the following data types occupy:
a) Short
b) long
c) double
d) char

Question 2: [10 Marks]


1. Declare the array of 5 integers and initialize first five even numbers to it.
2. What is ternary operator? Give one example.
3. What is meant by implicit and explicit type conversion?
4. Name the branching statements in java.
5. Name any two packages in java.

Question 3: [20 Marks]


1. What will be the output of the following program segment?
int a = 0, b = 30, c = 40;
a = - - b + c++ + b;
System out printin (“a = “+ a);
2. Suppose, String str – “STRING”;
What is the result in each of the following cases?
a. System.out.print(str.charAt(2) + “ “ + str.charAt(3));
b. System.out.print(str.substring(3,1).equals(str.substring(3,4)));
c. System.out.println (str.startsWith(“ST”));
d. System.out.print (str.indexOf(‘R’);
3. State two differences in binary search and linear search techniques.
4. State the output:
a. X ‘ = y + 5 ; if x = 2 & y = 2
b. X = (a. b)? a ; b ; if a = 2, b = 5
5. What is the default value of char, String, int and double type variables of java.
6. Write the significance of using static variables with examples.
7. Write the following conditions using ternary operator:
If amount is greater than 1000 and less than 10000, the commission is Rs.4000
else it is 0.
8. Consider the array : 13, 19, 6, 2, 35, 28, 5, 16, 65, 4
Which sorting algorithm will produce the following result after 3 iterations?
13 6 2 19 35 28 5 16 65 4
9. Define a counter variable in java.
10. Explain the term package.

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 description/Mnemonic Codes
so that the logic of the program is clearly depicted.
Flow-Charts and Algorithms are not required.

Question 4: [15 Marks]


Write a program to check if a number is a Magic Number or not.
A number is said to be a Magic number if the sum of its digits are calculated
till a single digit is obtained by recursively adding the sum of its digits. If the
single digit comes to be 1 then the number is a magic number.
Example- 199 is a magic number as 1+9+9=19 but 19 is not a single digit
number so 1+9=10 and then 1+0=1 which is a single digit number and also
1. Hence it is a magic number.

Question 5: [15 Marks]


Write a Java program to print the first 15 minutes of the Pell series.
In mathematics, the Pell numbers are an infinite sequence of integers. The
Sequence of Pell numbers starts with 0 and 1, and then each Pell number is
the sum of twice the previous Pell number and the Pell number before that.:
thus, 70 is the companion to 29, and 70 = 2 x 29 + 12 = 58 + 12.
The first few terms of the sequences are:
0, 1, 2, 5, 12, 29, 70, 169, 408, 985, 2378, 5741, 13860…

Question 6: [15 Marks]


Maharashtra State Electricity board charges their consumers according to the
units consumed (per month) as per the given tariff:
UNITS CONSUMED CHARGES
Up to 100 units 80 paise / unit
More than 100 upto 200 units Rs. 1 / unit
More than 200 units Rs. 1.25 / unit

In addition to the above mentioned charges, every consumer has to pay


Rs. 50 as Service Charge per month and calculate the Electricity Bill. Write a
program to create the object of the class and call the member methods.

Question 7: [15 Marks]


Write a Java Program to Check the entered string is Anagram or Not.
Two strings will be anagram to each other if and only if they contain the
same number of characters (order of the characters doesn’t matter). That is, if
The two strings are anagram to each other, then one string can be
Rearranged to form the other string.
Example: Input – String 1 – keep
String 2 – peek
Output – Strings are anagram.

Question 8: [15 Marks]


Design a class to overload a function prStr() are as follows:
void prStr(String s1, String s2) – Print the string that has more number of
vowels from amongst s1 and s2.
void prStr(String s, char ch) – Replace all blank spaces from String s with
ch and print the String s.
void prStr(String s) – Print the first and last position of letter ‘G’ in String s.

Question 9: [15 Marks]


Write a program using switch-case statements:
1. input an string array of size 10 and sort them in descending order using
bubble sort technique.
2. initialize an array of size 9 Indian currency notes and initialize another array
with their respective currency serial numbers. Search for a currency note
input by the user, in the list. If found, display “Search Successful” and print
the currency along with the serial number, otherwise display “Search
unsuccessful Name not enlisted.”
Write an appropriate message for incorrect option.
ICSE Class 10 Reference Notes written by School Teachers from some of India’s Top ICSE Schools.
All books available in Printed Book and Digital Download formats and delivery is FREE across India

English Language Last Step Practice English Literature: Merchant of English Literature: Ultimate Guide to
Venice Questions and Answers Poems
Practice

Cracking the English Essays English Literature: Merchant of Geography Super Topographical
Venice Review Notes Maps

ICSE Maths Most Important Maths: Master Your Formulas Mathematics: Last Minute Revision
Questions Notes of Trigonometry

Order books on www.exam18.com or WhatsApp us on +917506181854


ICSE Class 10 Reference Notes written by School Teachers from some of India’s Top ICSE Schools.
All books available in Printed Book and Digital Download formats and delivery is FREE across India

Physics Teacher’s Notes: Current Physics Teacher’s Notes: Sound Physics Teacher’s Notes:
Electricity Electromagnetism

Physics – Genius Ways to Answer Physics Teacher’s Notes: Heat Physics Review Papers
Give Reason Based Questions

Computer Applications: Super 50 Computer Applications Last Step Analytical Solutions to ICSE Computer
Java Programs Practice Book Applications Board Papers

Order books on www.exam18.com or WhatsApp us on +917506181854


ICSE Class 10 Reference Notes written by School Teachers from some of India’s Top ICSE Schools.
All books available in Printed Book and Digital Download formats and delivery is FREE across India

ICSE Class 10 Prelim Papers of Best Prelim Papers of Maths (Solved) Prelim Papers of Biology (Solved)
Schools for Board Exams from Best Schools from Best Schools
(All Subjects Question Papers)

Prelim Papers of English Language Prelim Papers of English Literature Prelim Papers of Hindi (Solved) from
(Solved) from Best Schools (Solved) from Best Schools Best Schools

Prelim Papers of Computer Prelim Papers of Geography (Solved) Prelim Papers of Hindi (Solved)
Applications (Solved) from Best from Best Schools from Best Schools
Schools

Order books on www.exam18.com or WhatsApp us on +917506181854

You might also like