(English Medium)
Academic Year: 2017-2018
Date: March 2018
Advertisements
- Attempt all questions from section A
- Attempt any four questions from Section B
Differentiate between searching and sorting.
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
Write a difference between the functions isUpperCase() and toUpperCase().
Chapter: [0.02] Library Classes
How are private members of a class different from public members?
Chapter: [0.05] User - Defined Method
Classify the following as primitive or non-primitive data type:
char
Chapter: [0.02] Library Classes
Classify the following as primitive or non-primitive data type.
arrays
Chapter:
Classify the following as primitive or non-primitive data type.
int
Chapter:
Classify the following as primitive or non-primitive data type.
classes
Chapter:
int res = ‘A’;
What is the value of res?
Chapter: [0.02] Library Classes
Name the package that contains wrapper classes.
Chapter:
State the difference between while and do-while loop.
Chapter: [0.011000000000000001] Nested Loop
System.out.print("BEST ");
System.out.println("OF LUCK");
Choose the correct option for the output of the above statements.
BEST OF LUCK
BEST
OF LUCK
Chapter: [0.06] Class as the Basis of All Computation
Advertisements
Write the prototype of a function check which takes an integer as an argument and returns a character.
Chapter:
Write the return data type of the following function:
endsWith( )
Chapter: [0.04] String Handling
Write the return data type of the following function:
log( )
Chapter: [0.02] Library Classes
Write a Java expression for the following :
`sqrt(3"x"+"x"^2)/"a+b"`
Chapter: [0.0104] Operators in Java
What is the value of y after evaluating the expression given below?
y+= ++y + y-- + --y; when int y=8;
Chapter: [0.0103] Values and Data Types
Give the output of the following :
(i) Math.floor (- 4.7)
(ii) Math.ceil(3.4) + Math.pow(2,3)
Chapter: [0.010700000000000001] Mathematical Library Methods
Write two characteristics of a constructor.
Chapter: [0.07] Constructors
Write the output for the following :
System.out.printIn(“Incredible” + “\n” + “world”);
Chapter: [0.04] String Handling
Advertisements
Convert the following if else if construct into switch case
if (var= = 1)
System.out .println(“good”);
else if(var= =2)
System.out.prindn(“better”);
else if(var= =3)
System.out.prindn( “best”);
else
System.out.prindn(“invalid”);
Chapter:
Give the output of the following string functions:
- “ACHIEVEMENT”.replace(E’, ‘A’)
- “DEDICATE”.compareTo(“DEVOTE”)
Chapter: [0.04] String Handling
Consider the following String array and give the output
String arr[]= {“DELHI”, “CHENNAI”, “MUMBAI”, “LUCKNOW”, “JAIPUR”};
System.out.println(arr[0] .length( )> arr[3] .length( );
System.out.print(arr[4] ,substring(0,3));
Chapter:
Rewrite the following using ternary operator :
if (bill > 10000)
discount = bill * 10.0 / 100;
else
discount = bill * 5.0 / 100;
Chapter: [0.0104] Operators in Java
Give the output of the following program segment and also mention how many times the loop is executed :
int i;
for (i = 5; i > 10; i++)
System.out.println(i);
System.out.println(i * 4);
Chapter: [0.011000000000000001] Nested Loop
Design a class Railway Ticket with following description:
Instance variables/data members:
String name: To store the name of the customer
String coach: To store the type of coach customer wants to travel
long mob no: To store customer’s mobile number
int amt: To store a basic amount of ticket
int total amt: To store the amount to be paid after updating the original amount
Member methods
void accept (): To take input for a name, coach, mobile number and amount
void update (): To update the amount as per the coach selected
(extra amount to be added in the amount as follows)
Type of Coaches | Amount |
First_ AC | 700 |
Second_AC | 500 |
Third _AC | 250 |
sleeper | None |
void display(): To display all details of a customer such as a name, coach, total amount and mobile number.
Write a main method to create an object of the class and call the above member methods.
Chapter: [0.04] String Handling
Write a program to input a number and check and print whether it is a Pronic number or not. (Pronic number is the number which is the product of two consecutive integers).
Examples: 12 = 3 × 4
20 = 4 × 5
42 = 6 × 7
Chapter: [0.0106] Input in Java
Write a program in Java to accept a string in lower case and change the first letter of every word to upper case. Display the new string.
Sample input: we are in a cyber world
Sample output: We Are In Cyber World
Chapter: [0.0104] Operators in Java
Design a class to overload a function volume() as follows:
- double volume (double R): with radius (R) as an argument, returns the volume of a sphere using the formula.
V = 4/3 × 22/7 × R3 - double volume (double H, double R): with height(H) and radius(R) as the arguments, returns the volume of a cylinder using the formula.
V = 22/7 × R2 × H - double volume (double L, double B, double H): with length(L), breadth(B) and Height(H) as the arguments, returns the volume of a cuboid using the formula.
Chapter:
Write a menu-driven program to display the pattern as per the user’s choice.
For an incorrect option, an appropriate error message should be displayed.
Chapter: [0.05] User - Defined Method
Write a program to accept a name and total marks of N number of students in two single subscript array name[] and totalmarks[].
Calculate and print:
- The average of the total marks obtained by N Number of students.
[average = (sum of total marks of all the students)/N] - Deviation of each student’s total marks with the average
[deviation = total marks of a student – average]
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 2017 - 2018
Previous year Question paper for CISCE ICSE Class 10 Computer Applications-2018 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.