0% found this document useful (0 votes)
8 views2 pages

Ix CMP Bls Final 2016

This document is a final examination paper for Class IX in Computer Applications, consisting of two sections. Section A includes various questions on spreadsheets, Java programming concepts, and syntax corrections, while Section B contains programming tasks such as input handling, conditionals, and calculations related to discounts. The total marks for the exam are 100, with Section A worth 40 marks and Section B worth 60 marks.

Uploaded by

Sanjib Das
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)
8 views2 pages

Ix CMP Bls Final 2016

This document is a final examination paper for Class IX in Computer Applications, consisting of two sections. Section A includes various questions on spreadsheets, Java programming concepts, and syntax corrections, while Section B contains programming tasks such as input handling, conditionals, and calculations related to discounts. The total marks for the exam are 100, with Section A worth 40 marks and Section B worth 60 marks.

Uploaded by

Sanjib Das
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/ 2

KP/BLS PAPERS

Time: 2 Hrs. Final Examination, March 2016 CLASS IX


COMPUTER APPLICATIONS M.Marks: 100

Attempt all the questions from Section A and any four questions from Section B.
SECTION ‘A’: Attempt all the questions (40 Marks)
Q1. (a) Give any 2 features of Spreadsheets (2 marks each)
(b) Define: Auto fill. Give 2 examples
(c) What is ‘fall through’ ?
(d) What are ‘comments’ in Java ?
(e) What is the significance of Auto sum in M S Excel ?
Q2. Differentiate between: (a) A cell and a Range of cells
(2 marks each)
(b) break and continue
(c) String and Numeric Java literals
(d) Bar and Column chart
(e) Absolute and Relative reference
Q3. (a) Rewrite the following program segment after correcting syntax errors, if any.
Also give the output.
s = 10;
n = 11;
while ( n < 15);
{
s + = n ++;
Sopln (s);
}
Sopln (n);
(
5)
(b) Rewrite the following program segment using a for loop:
int x = 20;
do {
int n = x + x;
System.outprintln(n);
x–=2
} while (x > 10); (5)
Q4. Give the output of the following:
(a) int m = 2;
int n = 15;
for (int i = 1; i < 5; i + +);
m + +;
– – n;
System.out.println(“m = ” + m);
System.out.println(“n = ” + n);2)
(b) char x = ‘A’; int m;
m = (x = = ‘a’)? ‘A’ : ‘a’;
System.out.println(“m = ” + m); (2)
Page 2
-2-
Q4.(contd.) (c) for (int i = 1; i < 10; i + +) (e) char x = ‘A’; (2+2)
{ do {
if (i % 3 = = 0) x = (char) (x + 2);
continue; System.out.println(x);
System.out.printin(i); } while (x < ‘J’);
}

(d) int n = 54321; (2)


int d, sum = 0;
while (n > 0)
{
d = n% 10;

sum = sum +d;


n = n/10;
}
System.out.print(sum);

SECTION ‘B’: Attempt any four questions (60 Marks)


Q5. Write a Java program to input 10 characters, one at a time. Check each and display (15)
whether it is an alphabet, a digit or a special character.
Q6. Write a Java program using switch….case with the following choices: (15)
1. To check if an input number is a palindrome or not
2. To display the factorial of an input number

Q7. A computer shop announces seasonal discount on laptops as follows:


(15)
Cost price of Laptop Discount
Upto Rs.30,000 10%
Rs. 30,001 to Rs. 40,000 15%
Rs. 40,001 to Rs. 50,000 18%
Above Rs. 50,000 20%
W.a.p. to input cost price and display the selling price after discount. .
Q8. Write Java programs to display the following outputs: (7+8)
(a) 97531 (b) A
9753 AB
975 ABC
97 ABCD
9 ABCDE

Q6. Write a Java program to input 10 integers and display the product of digits for each. (15)

***

You might also like