0 ratings0% found this document useful (0 votes) 160 views5 pagesIcse 2015 Computer Application Class 10
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here.
Available Formats
Download as PDF or read online on Scribd
Years COMPUTER APPLICATIONS Years
‘Guestion juestion
Paper.com (Theory) Paper.com
(Two Hours) re
Answers to this Paper must be written on the paper provided separately.
You will not be allowed to write during the first 15 minutes.
This time is to be spent in reading the question paper.
‘The time given at the head of this Paper is the time allowed for writing the answers.
This Paper is divided into two Sections.
Attempt all questions from Section A and any four questions from Section B.
‘The intended marks for questions or parts of questions are given in brackets{].
SECTION A (40 Marks)
Attempt all questions
Question 1.
(@) What are the default values of the primitive data type in and float? 2
(b) Name any two OP's principles. PI
(c) What are identifiers? ae
(@) Identify the literals listed below: Rl
(0.5 (i)'A" Gil) false Gv) "a"
(©) Name the wrapper classes of char type and boolean type. 2
Question 2.
(a) Evaluate the value of nif value of p= 5, q=19
intn=(q-p>@-@) ? @-P): a); 2
(b) Arrange the following primitive data types in an ascending order of their
size:
(chat (i) byte (ii)double Gv) int. py
(c) What is the value stored in variable res given below:
double res = Math pow ("345 indexOf('S}, 3); 2]
(@ Name the two types of constructors. al
‘This Paper consists of 5 printed pages and 1 blank page.
TIS 861 Turn over
© Copyright reserved.Years
juestion
Paper.com
(©) What are the values of a and b after the following function is executed, ifthe
values passed are 30 and 50:
void paws( int a, int 6)
{ sath;
bra;
wa,
System.outprintn( at ", +b);
} 2)
Question 3.
(@) State the data type and value of after the following is exeouted:
char x
y*CharacterisLetter(x); pI
(6) What is the fanction of catch block in exception handling? Where does it
appear in a program? 2
(©) State the output when the following program segment is executed:
String a="Smértphone", b="Graphie Art
String bra substring(2.5);
String k= bsubstring(8) toUpperCase();
‘System.out printla(h);
System out printin(k.equalslgnoreCase(h)); pl
(@) The access specifier that gives the most accessibility is and the
least accessibility is : PR)
(©) (i) Name the mathematical function which is used to find sine of an angle
given in radians,
(ii) Name a string funetion which removes the blank spaces provided in the
prefix and suffix of a string. 2)
(© (i) What will this code print?
int are{}~new int [5],
‘System.out.printin(arr);
0 i) value stored in arr} (if) 0000 (iv)garbege value
(i) Name the keyword which is used to resolve the conflict between method
parameter and instance varibles!fields, 2
‘TIS 861 uestion
Paper.com
YearsY S68
juestion
(@ State the package that contains the class: Paper.com
(BufferedReader
(i) Scanner. 2)
(h) Write the output of the following program code:
char ch;
int x=97;
de
{
che (char) x;
System.out.print(ch +" ");
if( x%10=0)
‘break;
Hes
Jwhile(x<= 100); Rl
@ Write the Java expressions for:
ee 2
2ab
(@ If int y-10then find int 2= (Hy "(++ +5); 2
SECTION B (60 Marks)
Attempt any four questions from this Section.
‘The answers in this Section should consist of the Programs in either Blue J environment
or any program environment with Java as the base.
Each program should be written using Variable descriptions/Mnemonic Codes so that
the logic of the program is clearly depicted.
Flow-Charts and Algorithms are not required,
Question 4,
Define a class called 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 :
To store the bill amount
Member methods : Year s
void input —To input and.store the vno and hours. uestion
Paper.com
3
T15 861 Tum OverYears
uestion
Paper.com
void calculate()—To compute the parking charge at the rate of &3 for the first hour or part
‘thereof, and © 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. [15]
“Question 5.
Write two separate programs to generate the following patterns using iteration (loop) statements:
@* @) 54321
*# 5432
vee 343
“ute 54
cates 5
Os]
Siacstion 6.
Write a program to input and’stofe roll numbers, names and marks in'8 subjects of m
‘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 U5)
Question 7.
Desi a class to overlod a function JoystringO) 2s follows
( void Joystring (String s, char chi, 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"
chl~
cha
THs 861 Yours
uestion
Paper.comNe GER
juestion
Output : "TECHNOLOGY" Paper.com
(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.Intemet hased computing”
Output : First index : 5
Last index : 36
Gii)void Joystring ( String s1, String s2) with two string arguments that combines
the two strings with a space between them and prints the resultant string.
Example:
Input value of si ="COMMON WEALTH "
Input value of s2="GAMES "
Output: COMMON WEALTH GAMES
(use library functions)
1s}
Auestion 8
‘Write a program to input twenty names in an array. Arrange these names in descending
order of alphabets, using the bubble sort technique. 4 15]
Question 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=I5
Sample Output : 13.5
Gi) To find and display the factorial of a number input by the user (the factorial of a
non-negative integer , denoted by nt, is the produet of all integers less than or
equal to n,
Example:
Sample Input: n=5
Sample Output: 51= 1x2x3x4x5 =120.
For an incorrect choice, an appropriate error message should be displayed. us)
— Years
uestion
wo Paper.com