हिंदी

Computer Applications Set 1 2016-2017 (English Medium) ICSE Class 10 Question Paper Solution

Advertisements
Computer Applications [Set 1]
Marks: 100 CISCE
(English Medium)

Academic Year: 2016-2017
Date & Time: 7th April 2017, 11:00 am
Duration: 2h
Advertisements
  • Attempt all questions from Section A.
  • Attempt any Four questions from section B.

Section A
[10]1
[2]1.a

What is inheritance?

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

Name the operators listed below are
(i) <
(ii) + +
(iii) &&
(iv) ? :

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

State the number of bytes occupied by char and int data types.

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[2]1.d

Write one difference between / and % operator.

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

String x[] = {“SAMSUNG”, “NOKIA”, “SONY”, “MICROMAX”, “BLACKBERRY”};

Give the output of the following statements:

  1. System.out.println(x[1]);
  2. System.out.println(x[3].length()); 
Concept: undefined - undefined
Chapter: [0.04] String Handling
[10]2
[2]2.a

Name the following :
(i) A keyword used to call a package in the program.
(ii) Any one reference data type.

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

What are the two ways of invoking functions?

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

State the data type and value of res after the following is executed:
char ch = ‘t’;
res=Character. toUpperCase(ch);

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[2]2.d

Give the output of the following program segment and also mention the number of times the loop is executed:

int a,b;
for (a=6, b=4; a< =24; a=a + 6)
{
if (a%b= =0)
break;
}
System, out .println(a);

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

Write the output:
charch= ‘F’;
int m= ch;
m=m+5;
System.out.println(m+ ” ” +ch);

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

Write a Java expression for the following :
ax5 + bx3 + c 

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

What is the value of xl if x=5?
x1 = + +x – X+ + + –x

Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types
[2]3.c

Why is an object called an instance of a class?

Concept: undefined - undefined
Chapter: [0.0102] Elementary Concept of Objects and Classes
[2]3.d

Convert following do-while loop into for loop.
int i = 1;
int d = 5;
do {
d=d*2;
System.out.println(d);
i+ + ; } while (i< =5);

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

Differentiate between constructor and function.

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

Write the output for the following :

String s= “Today is Test”;
System.out.println(s.indexOf(‘T’)); System.out.println(s.substring(0, 7) + ” ” + “Holiday”);

Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.g

What are the values stored in variables r1 and r2:

(i) double r1=Math.abs(Math.min(-2.83,-5.83));
(ii) double r2=Math.sqrt(Math.floor(16.3)); 

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation
[2]3.h

Give the output of the following code:  
String A = “26”, B=”100″;
String D =A+B+”200″;
int x = Integer.parselnt(A);
int y = Integer.parselnt(B);
int d = x+y;
System.out.println(“Result 1 = ”+D);
System.out.prinln(“Result 2 = “+d); ,

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

Analyze the given program segment and answer the following questions : 

for(int i = 3; i <= 4; i++){
    for(int j = 2; j <i; j++){
        System.out.print("");
    }
    System.out.println("WIN");
}

(i) How many times does the inner loop execute ?
(ii) Write the output of the program segment.

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

What is the difference between the Scanner class functions next () and nextLine()?

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation
Section B
[15]4

Define a class ElectricBill with the following specifications :

class: ElectricBill
Instance variables /data member :
String n – to store the name of the customer
int units – to store the number of units consumed
double bill – to store the amount to be paid
Member methods :
void accept ( ) – to accept the name of the customer and number of units consumed.
void calculate ( ) – to calculate the bill as per the following tariff :

A surcharge of 2.5% charged if the number of units consumed is above 300 units.

Write a main method to create an object of the class and call the above member methods.

Concept: undefined - undefined
Chapter:
[15]5

Write a program to accept a number and check and display whether it is a spy number or not. (A number is spy if the sum of its digits equals the product of its digits.)

Example: consider the number 1124,
Sum of the digits = l + l+ 2 + 4 = 8
Product of the digits = 1×1 x2x4 = 8

Concept: undefined - undefined
Chapter:
[15]6

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

(i) To find and display the sum of the series given below :
S = x1 -x2 + x2 – x4 + x5 – x20 
(where x = 2)
(ii) To display the following series :
1 11 111 1111 11111
For an incorrect option, an appropriate error message should be displayed.

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[15]7

Write a program to input integer elements into an array of size 20 and perform the following operations:

(i) Display largest number from the array.
(ii) Display smallest number’ from the array.
(iii) Display sum of all the elements of the array.

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
[15]8

Design a class to overload a function check ( ) as follows : (i) void check (String str, char ch) – to find and print the frequency of a character in a string.

Example : *
Input:
str = “success”
ch = ‘s’ .
Output:  number of s present is = 3

(ii) void check(String si) – to display only vowels from string si, after converting it to lower case.

Example:
Input:
s1 = “computer”
Output:  o u e

Concept: undefined - undefined
Chapter:
[15]9

Write a program to input forty words in an array. Arrange these words in descending order of alphabets, using selection sort technique. Print the sorted array.

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)

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 2016 - 2017

     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 2017 serve as a catalyst to prepare for your Computer Applications board examination.
     Previous year Question paper for CISCE ICSE Class 10 Computer Applications-2017 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×