Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
135 views
5 pages
Icse 2015 Computer Application Class 10
ICSE
Uploaded by
greatpic
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
Download
Save
Save Icse 2015 Computer Application Class 10 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
135 views
5 pages
Icse 2015 Computer Application Class 10
ICSE
Uploaded by
greatpic
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
Carousel Previous
Carousel Next
Download
Save
Save Icse 2015 Computer Application Class 10 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 5
Search
Fullscreen
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
You might also like
NHAI Quality Assurance Manual
PDF
93% (27)
NHAI Quality Assurance Manual
308 pages
IS:2201 (Part1)
PDF
100% (1)
IS:2201 (Part1)
25 pages
6 Types of Rollers
PDF
No ratings yet
6 Types of Rollers
7 pages
85001057A, Manual
PDF
100% (1)
85001057A, Manual
30 pages
Basic Computer Hardware and Troubleshooting
PDF
No ratings yet
Basic Computer Hardware and Troubleshooting
39 pages
Demo Ex280
PDF
100% (1)
Demo Ex280
7 pages
Concrete Mix Design - M60 Grade of Concrete (OPC 53 Grade)
PDF
No ratings yet
Concrete Mix Design - M60 Grade of Concrete (OPC 53 Grade)
2 pages
Fine Aggregate
PDF
No ratings yet
Fine Aggregate
9 pages
DBM Scenario Guide
PDF
No ratings yet
DBM Scenario Guide
16 pages
Asphalt Mix Performance Testing For Warm Mix Asphalt Field Project On Ministry of Transportation Ontario Highway 10
PDF
No ratings yet
Asphalt Mix Performance Testing For Warm Mix Asphalt Field Project On Ministry of Transportation Ontario Highway 10
19 pages
Arihant - Computer 15 TH Sample Paper Icse Class 10
PDF
No ratings yet
Arihant - Computer 15 TH Sample Paper Icse Class 10
5 pages
Sample 3 Oswaal
PDF
No ratings yet
Sample 3 Oswaal
5 pages
MCGD Issue
PDF
No ratings yet
MCGD Issue
4 pages
Sand Patch Test
PDF
No ratings yet
Sand Patch Test
5 pages
Project 3 STD 10
PDF
No ratings yet
Project 3 STD 10
10 pages
STD X Poems
PDF
No ratings yet
STD X Poems
19 pages
Attempt All Questions From This Section
PDF
No ratings yet
Attempt All Questions From This Section
4 pages
Grade 10 ICSE Assignments - Internal Assessment
PDF
0% (1)
Grade 10 ICSE Assignments - Internal Assessment
6 pages
Comp App Practise 6 Papers
PDF
No ratings yet
Comp App Practise 6 Papers
32 pages
Com 2016
PDF
No ratings yet
Com 2016
13 pages
Skillsoft Course Transcript
PDF
No ratings yet
Skillsoft Course Transcript
28 pages
XII Computer All
PDF
No ratings yet
XII Computer All
237 pages
Computer Grade 2 Weekly Lesson Plan Term 1 Form 2025
PDF
No ratings yet
Computer Grade 2 Weekly Lesson Plan Term 1 Form 2025
2 pages
Rounding in Excel - Round, Roundup, Rounddown, Floor, Ceiling Functions
PDF
No ratings yet
Rounding in Excel - Round, Roundup, Rounddown, Floor, Ceiling Functions
38 pages
Computer Applications Class - 10: St. Francis School, Vadakkencherry
PDF
No ratings yet
Computer Applications Class - 10: St. Francis School, Vadakkencherry
3 pages
8-20 Hot Mix Roadway Inspectors Checklist
PDF
No ratings yet
8-20 Hot Mix Roadway Inspectors Checklist
4 pages
ICSE Class 10th Computer Applications Sample Paper
PDF
100% (1)
ICSE Class 10th Computer Applications Sample Paper
2 pages
Comp Theory
PDF
No ratings yet
Comp Theory
5 pages
What Is in Store For Us in ISO 9001:2015 ?
PDF
No ratings yet
What Is in Store For Us in ISO 9001:2015 ?
3 pages
Computer PYQ 2015 2023
PDF
No ratings yet
Computer PYQ 2015 2023
25 pages
Data Visualization On Melbourne Housing Dataset
PDF
No ratings yet
Data Visualization On Melbourne Housing Dataset
11 pages
ICSE Computer Solved Paper 2015
PDF
No ratings yet
ICSE Computer Solved Paper 2015
6 pages
Mock 3
PDF
No ratings yet
Mock 3
7 pages
Selection Question 2024
PDF
No ratings yet
Selection Question 2024
10 pages
Icjecapu 06
PDF
No ratings yet
Icjecapu 06
6 pages
Asphalt Pavement Alliance: Asphalt Pavements - A Standard of Excellence For Smooth Roads Questions and Answers
PDF
No ratings yet
Asphalt Pavement Alliance: Asphalt Pavements - A Standard of Excellence For Smooth Roads Questions and Answers
2 pages
Sample Papers 1 - 3 Computer by Devraj Singh
PDF
No ratings yet
Sample Papers 1 - 3 Computer by Devraj Singh
16 pages
2025 Solved
PDF
No ratings yet
2025 Solved
10 pages
Computer Applications ICSE Sample Paper 2 PDF
PDF
100% (1)
Computer Applications ICSE Sample Paper 2 PDF
5 pages
ICSE 2023 Computer Application Paper Class 10
PDF
No ratings yet
ICSE 2023 Computer Application Paper Class 10
8 pages
Class 9 Computer Applications (Finals 20-21)
PDF
No ratings yet
Class 9 Computer Applications (Finals 20-21)
5 pages
Grade 10 Ca QP
PDF
No ratings yet
Grade 10 Ca QP
8 pages
Class-9, Computer Applications
PDF
75% (4)
Class-9, Computer Applications
3 pages
ICSE Computer QP 2023 - Percentiler
PDF
No ratings yet
ICSE Computer QP 2023 - Percentiler
8 pages
First Term Assessment Computer Applications: Section A Any Four Section B
PDF
No ratings yet
First Term Assessment Computer Applications: Section A Any Four Section B
4 pages
TLE9 CSS Q2 Wk1-2 Computer-Maintenance-and-Security PDF
PDF
No ratings yet
TLE9 CSS Q2 Wk1-2 Computer-Maintenance-and-Security PDF
14 pages
2025 COPPER Maneckji
PDF
No ratings yet
2025 COPPER Maneckji
7 pages
42ee4513-7a82-4221-bc3a-ceeb1fcfe462
PDF
No ratings yet
42ee4513-7a82-4221-bc3a-ceeb1fcfe462
8 pages
JNS Ca Prelim 1 Paper
PDF
No ratings yet
JNS Ca Prelim 1 Paper
9 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
Avm Computer Prelim Paper
PDF
No ratings yet
Avm Computer Prelim Paper
8 pages
10th 1st Term Paper 2023-24
PDF
No ratings yet
10th 1st Term Paper 2023-24
8 pages
Class 10 1st Term Paper - Retest
PDF
No ratings yet
Class 10 1st Term Paper - Retest
8 pages
Ix CMP Ams Final 2017
PDF
No ratings yet
Ix CMP Ams Final 2017
4 pages
QMS Preboards Computer Applications
PDF
No ratings yet
QMS Preboards Computer Applications
8 pages
19348CompXSet1 (1) - Decrypted
PDF
No ratings yet
19348CompXSet1 (1) - Decrypted
5 pages
Icse Computer Project Work 2024-2025
PDF
No ratings yet
Icse Computer Project Work 2024-2025
4 pages
Paper Class 10th 2024-25
PDF
No ratings yet
Paper Class 10th 2024-25
6 pages
Sample QP-Comp-X
PDF
No ratings yet
Sample QP-Comp-X
5 pages
PPSB Computer Prelim
PDF
No ratings yet
PPSB Computer Prelim
3 pages
GR 10 CTA QP Sample Paper
PDF
No ratings yet
GR 10 CTA QP Sample Paper
9 pages
ICSE 2011 Computer Applications Question Paper
PDF
No ratings yet
ICSE 2011 Computer Applications Question Paper
4 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
Computer ISCE Sample Paper
PDF
100% (1)
Computer ISCE Sample Paper
5 pages
Icse 2006 Computer Application Class 10
PDF
No ratings yet
Icse 2006 Computer Application Class 10
4 pages
AV Computers Appl 2nd Prelims
PDF
No ratings yet
AV Computers Appl 2nd Prelims
6 pages
Computer Applications
PDF
No ratings yet
Computer Applications
4 pages
p89v51 Semi
PDF
No ratings yet
p89v51 Semi
3 pages
Computer Preboards
PDF
No ratings yet
Computer Preboards
4 pages
II Prelim Revision 2024 Computer
PDF
No ratings yet
II Prelim Revision 2024 Computer
5 pages
Ge1 Ge2-Gb
PDF
No ratings yet
Ge1 Ge2-Gb
3 pages
The Effects of Social Media in The Academic Performance of The Grade 12 Students of Limay Senior High School
PDF
No ratings yet
The Effects of Social Media in The Academic Performance of The Grade 12 Students of Limay Senior High School
4 pages
Trackerui English
PDF
No ratings yet
Trackerui English
18 pages
Virtual Laboratory and Learning Management System in Optimal Control Theory Education
PDF
No ratings yet
Virtual Laboratory and Learning Management System in Optimal Control Theory Education
14 pages
Computer Test Full Syllabus
PDF
No ratings yet
Computer Test Full Syllabus
3 pages
Computer Applications
PDF
No ratings yet
Computer Applications
3 pages
Tushar Shaily: Skills Education
PDF
No ratings yet
Tushar Shaily: Skills Education
1 page
(2012) ICSE Computer Applications Question Paper
PDF
100% (1)
(2012) ICSE Computer Applications Question Paper
6 pages
861 Cta - 2017 PDF
PDF
No ratings yet
861 Cta - 2017 PDF
6 pages
Computer (A I) New
PDF
No ratings yet
Computer (A I) New
5 pages
Nurture International School
PDF
No ratings yet
Nurture International School
5 pages
Computer Application 001
PDF
No ratings yet
Computer Application 001
4 pages
Ramu Says "If Log X 0
PDF
No ratings yet
Ramu Says "If Log X 0
2 pages
Features and Constraints in Embedded System
PDF
No ratings yet
Features and Constraints in Embedded System
9 pages
Prudhvi Java Dveloper
PDF
No ratings yet
Prudhvi Java Dveloper
5 pages
IEEE 1596.3-1996 IEEE Standard For Low-Voltage Differential Signals (LVDS) For Scalable Coherent Interface (SCI)
PDF
No ratings yet
IEEE 1596.3-1996 IEEE Standard For Low-Voltage Differential Signals (LVDS) For Scalable Coherent Interface (SCI)
34 pages
22 PLC15 Bset 1
PDF
No ratings yet
22 PLC15 Bset 1
2 pages
Class-X (Two Hours) : Section B
PDF
No ratings yet
Class-X (Two Hours) : Section B
4 pages
Guide To Livestreaming - Nordic
PDF
No ratings yet
Guide To Livestreaming - Nordic
10 pages
Create A Classification Model With Azure Machine Learning Designer
PDF
No ratings yet
Create A Classification Model With Azure Machine Learning Designer
19 pages
Apaar Id Generation Form
PDF
No ratings yet
Apaar Id Generation Form
2 pages
Segmentation in Operating System
PDF
No ratings yet
Segmentation in Operating System
9 pages
How To Create An ISO Image From A CD (Or DVD or BD)
PDF
No ratings yet
How To Create An ISO Image From A CD (Or DVD or BD)
2 pages
Black White Minimalist CV Resume
PDF
No ratings yet
Black White Minimalist CV Resume
1 page
A320-Awl Intro
PDF
No ratings yet
A320-Awl Intro
8 pages
Computer Application in MGT
PDF
No ratings yet
Computer Application in MGT
10 pages
Orca Upgrades V5.3.B
PDF
No ratings yet
Orca Upgrades V5.3.B
3 pages
Voucher-WINNER WIFI ZONE-24H-up-813-11.20.22
PDF
No ratings yet
Voucher-WINNER WIFI ZONE-24H-up-813-11.20.22
1 page
Farming Chia On An Old Computer - TurboFuture
PDF
100% (1)
Farming Chia On An Old Computer - TurboFuture
1 page