English

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

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

Academic Year: 2017-2018
Date: March 2018
Advertisements
  • Attempt all questions from section A
  • Attempt any four questions from Section B

[10]1
[2]1.a

 Define abstraction.

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

Differentiate between searching and sorting.

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

Write a difference between the functions isUpperCase() and toUpperCase().

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

How are private members of a class different from public members?

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
[2]1.e

Classify the following as primitive or non-primitive data type:

char 

Concept: undefined - undefined
Chapter: [0.02] Library Classes

Classify the following as primitive or non-primitive data type.

arrays

Concept: undefined - undefined
Chapter:

Classify the following as primitive or non-primitive data type.

int

Concept: undefined - undefined
Chapter:

Classify the following as primitive or non-primitive data type.

classes

Concept: undefined - undefined
Chapter:
[10]2
[2]2.a

int res = ‘A’; 

What is the value of res?

Concept: undefined - undefined
Chapter: [0.02] Library Classes

Name the package that contains wrapper classes. 

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

State the difference between while and do-while loop.

Concept: undefined - undefined
Chapter: [0.011000000000000001] Nested Loop
[2]2.c
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

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

Write the prototype of a function check which takes an integer as an argument and returns a character.

Concept: undefined - undefined
Chapter:
[2]2.e
[1]2.e.i

Write the return data type of the following function:

endsWith( )

Concept: undefined - undefined
Chapter: [0.04] String Handling
[1]2.e.ii

Write the return data type of the following function:

log( )

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[20]3
[2]3.a

Write a Java expression for the following :

`sqrt(3"x"+"x"^2)/"a+b"`

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

What is the value of y after evaluating the expression given below?

y+= ++y + y-- + --y; when int y=8; 

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

Give the output of the following :

(i) Math.floor (- 4.7)

(ii) Math.ceil(3.4) + Math.pow(2,3)

Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods
[2]3.d

Write two characteristics of a constructor.

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

Write the output for the following :

System.out.printIn(“Incredible” + “\n” + “world”);

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

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”);

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

Give the output of the following string functions: 

  1. “ACHIEVEMENT”.replace(E’, ‘A’)
  2. “DEDICATE”.compareTo(“DEVOTE”)
Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.h

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));

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

Rewrite the following using ternary operator : 

if (bill > 10000)
discount = bill * 10.0 / 100;
else
discount = bill * 5.0 / 100;
Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]3.j

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);
Concept: undefined - undefined
Chapter: [0.011000000000000001] Nested Loop
Section-B
[15]4

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. 

Concept: undefined - undefined
Chapter: [0.04] String Handling
[15]5

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

Concept: undefined - undefined
Chapter: [0.0106] Input in Java
[15]6

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

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

Design a class to overload a function volume() as follows: 

  1. 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
  2. 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
  3. 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.
Concept: undefined - undefined
Chapter:
[15]8

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.

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
[15]9

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:

  1. The average of the total marks obtained by N Number of students.
    [average = (sum of total marks of all the students)/N]
  2. Deviation of each student’s total marks with the average
    [deviation = total marks of a student – average] 
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 2017 - 2018

     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 2018 serve as a catalyst to prepare for your Computer Applications board examination.
     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.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×