English

Computer Applications Set 1 2014-2015 (English Medium) ICSE Class 10 Question Paper Solution

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

Academic Year: 2014-2015
Date: March 2015
Advertisements
  • Attempt all questions from Section A.
  • Attempt any four questions from Section B. 

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

What is the default value of the primitive data type int?

Concept: undefined - undefined
Chapter:

What is the default value of the primitive data type float? 

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

Name any two OOP’s principles.

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]1.c

What are identifiers?

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]1.d

Identify the literal given below:

0.5

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation

Identify the literal given below.

'A'

Concept: undefined - undefined
Chapter:

Identify the literal given below.

false

Concept: undefined - undefined
Chapter:

Identify the literal given below.

"a"

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

Name the wrapper class of char type. 

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

Name the wrapper class of boolean type. 

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

Evaluate the value of n. if value of p = 5, q = 19  
int n = (q – p) > (p – q) ? (q – p) : (p – q) 

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

Arrange the following primitive-data types in ascending order of their size:
(i) char (ii) byte (iii) double (iv) int

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

What is the value stored in variable res given below?

double res = Math.pow (“345”.indexOf(‘5’), 3);

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

Name the two types of constructors.

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

What are the values of a and b after the following function is executed if the values passed are 30 and 50?

void paws(int a, int b) 
{ a = a + b; 
  b = a - b; 
  a = a - b;' 
System.out.println(a + "," + b); 
} 
Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types
[20]3
[2]3.a

State the data type and value of y after the following is executed: char x = 7; y = Character.isLetter(x); 

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

What is the function of catch block in exception handling? Where does it appear in a program?

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

State the output when the following program segment is executed:

String a = "Smartphone", b = "Graphic Art"; 
String h = a.substring(2, 5); 
String k = b.substring(S).toUpperCase(); 
System.out.println(h); 
System.out.println(k.equalsignoreCase(h)); 
Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.d

The access specifier that gives the most accessibility is _______ and the least accessibility is ________.

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

Name the mathematical function which is used to find sine of an angle given in radians.

Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods

Name a string function which removes the blank spaces provided in the prefix and suffix of a string. 

Concept: undefined - undefined
Chapter: [0.010700000000000001] Mathematical Library Methods
[2]3.f
[1]3.f.i

What will this code print?

int arr[] = new int[5];
System.out.println(arr);

0

value stored in arr[0]

0000

Garbage value

Concept: undefined - undefined
Chapter:
Advertisements
[1]3.f.ii

Name the keyword which is used to resolve the conflict between method parameter and instance variables/fields. 

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

State the package that contains the class:
BufferedReader

Concept: undefined - undefined
Chapter:

State the package that contains the class:

Scanner 

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

Write the output of the following program code:

char ch ;
int x=97;
do
{
ch=(char) x;
System.out.print(ch + “ ” );
if(x%10 == 0)
break;
++x;
}while(x<=100);

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

Write the Java expressions for `("a"^2 + "b"^2)/(2"ab")`

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

If int y = 10 then find int z = (++y * (y++ +5));

Concept: undefined - undefined
Chapter: [0.04] String Handling
Section B
[15]4

Define a class named ParkingLot with the following description :
Instance variables/data members:
int vno — To store the vehicle number
int hours — To store the number of hours the vehicle is parked in the parking lot
double bill — Tb store the bill amount

Member methods:
void input( ) — To input and store the vno and hours.
void calculate( ) — To compute the parking charge at the rate of Rs.3 for the first hours or part thereof, and Rs. 1.50 for each additional hour or part thereof.
void display ( ) — To display the detail
Write a main method to create an object of the class and call the above methods.

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

Write two separate programs to generate the following patterns using iteration (loop) statement:

(a)

Concept: undefined - undefined
Chapter: [0.0109] Iterative Constructs in Java

Write two separate programs to generate the following patterns using iteration (loop) statement:

(b) 

Concept: undefined - undefined
Chapter: [0.0109] Iterative Constructs in Java
[15]6

Write a program to input and store roll numbers, names and marks in 3 subjects of n number students in five single dimensional array and display the remark based on average marks as given below : (The maximum marks in the subject are 100).
Average marks = `"Total marks"/3`

Average marks Remark
85 - 100 Excellent
75 - 84 Distinction
60 - 74 First-class
40 - 59 Pass
Less than 40 Poor
Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[15]7

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

(i) void Joystring (String s, char ch1 char ch2) with one string argument and two character arguments that replaces the character argument ch1 with the character argument ch2 in the given string s and prints the new string.
Example:
Input value of s = “TECHNALAGY”
ch1=‘A’,
ch2=‘O’
Output: TECHNOLOGY
(ii) void Joystring (String s) with one string argument that prints the position of the first space and the last space of the given string s.
Example:
Input value of = “Cloud computing means Internet based computing”
Output: First index: 5
Last index: 36
(iii) void Joystring (String s1, String s2) with two string arguments that combines the two string with a space between them and prints the resultant string. Example :
Input value of s1 =“COMMON WEALTH”
Input value of s2 =“GAMES”
Output: COMMON WEALTH GAMES
(use library functions)

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

Write a program to input twenty names in an array. Arrange these names in descending order of alphabets, using the bubble sort technique. 

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

Using the switch statement, write a menu driven program to:
(i) To find and display all the factors of a number input by the user (including 1 and excluding number itself).

Example:
Sample Input: n=15
Sample Output: 1, 3, 5.
(ii) To find and display the factorial of a number input by the user (the factorial of a non-negative integer n, denoted by n\ is the product of all integers less than or equal to n.
Example:
Sample Input: n=5
Sample Output: 5! = 1×2×3×4×5 = 120.
For an incorrect choice, an appropriate error message should be displayed.

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 2014 - 2015

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