(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.
Name the operators listed below are
(i) <
(ii) + +
(iii) &&
(iv) ? :
Chapter: [0.0104] Operators in Java
State the number of bytes occupied by char and int data types.
Chapter: [0.02] Library Classes
Write one difference between / and % operator.
Chapter: [0.0104] Operators in Java
String x[] = {“SAMSUNG”, “NOKIA”, “SONY”, “MICROMAX”, “BLACKBERRY”};
Give the output of the following statements:
- System.out.println(x[1]);
- System.out.println(x[3].length());
Chapter: [0.04] String Handling
Name the following :
(i) A keyword used to call a package in the program.
(ii) Any one reference data type.
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
What are the two ways of invoking functions?
Chapter: [0.05] User - Defined Method
Advertisements
State the data type and value of res after the following is executed:
char ch = ‘t’;
res=Character. toUpperCase(ch);
Chapter: [0.02] Library Classes
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);
Chapter: [0.011000000000000001] Nested Loop
Write the output:
charch= ‘F’;
int m= ch;
m=m+5;
System.out.println(m+ ” ” +ch);
Chapter: [0.011000000000000001] Nested Loop
Write a Java expression for the following :
ax5 + bx3 + c
Chapter: [0.0104] Operators in Java
What is the value of xl if x=5?
x1 = + +x – X+ + + –x
Chapter: [0.0103] Values and Data Types
Why is an object called an instance of a class?
Chapter: [0.0102] Elementary Concept of Objects and Classes
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);
Chapter: [0.011000000000000001] Nested Loop
Differentiate between constructor and function.
Chapter: [0.07] Constructors
Advertisements
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”);
Chapter: [0.04] String Handling
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));
Chapter: [0.06] Class as the Basis of All Computation
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); ,
Chapter:
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.
Chapter: [0.011000000000000001] Nested Loop
What is the difference between the Scanner class functions next () and nextLine()?
Chapter: [0.06] Class as the Basis of All Computation
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.
Chapter:
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
Chapter:
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.
Chapter: [0.0104] Operators in Java
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.
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
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
Chapter:
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.
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
Other Solutions
Submit Question Paper
Help us maintain new question papers on Shaalaa.com, so we can continue to help studentsonly jpg, png and pdf files
CISCE previous year question papers ICSE Class 10 Computer Applications with solutions 2016 - 2017
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.