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
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
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
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save Icse 2015 Computer Application Class 10 For Later
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
Covidien RFA Vein Operator Manual
PDF
No ratings yet
Covidien RFA Vein Operator Manual
99 pages
Computer Applications ICSE Sample Paper 2 PDF
PDF
100% (1)
Computer Applications ICSE Sample Paper 2 PDF
5 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
Grade 10 ICSE Assignments - Internal Assessment
PDF
0% (1)
Grade 10 ICSE Assignments - Internal Assessment
6 pages
Key Management Services (KMS) Client Activation and Product Keys
PDF
100% (1)
Key Management Services (KMS) Client Activation and Product Keys
8 pages
IS:2201 (Part1)
PDF
100% (1)
IS:2201 (Part1)
25 pages
Computer Applications Class - 10: St. Francis School, Vadakkencherry
PDF
No ratings yet
Computer Applications Class - 10: St. Francis School, Vadakkencherry
3 pages
Troubleshooting
PDF
No ratings yet
Troubleshooting
100 pages
Quantum Technology Monitor
PDF
No ratings yet
Quantum Technology Monitor
53 pages
Computer ISCE Sample Paper
PDF
100% (1)
Computer ISCE Sample Paper
5 pages
6 Types of Rollers
PDF
No ratings yet
6 Types of Rollers
7 pages
Class-9, Computer Applications
PDF
75% (4)
Class-9, Computer Applications
3 pages
Class 9 Computer Applications (Finals 20-21)
PDF
No ratings yet
Class 9 Computer Applications (Finals 20-21)
5 pages
IBM AI Curriculum Framework
PDF
No ratings yet
IBM AI Curriculum Framework
4 pages
Comp App Practise 6 Papers
PDF
No ratings yet
Comp App Practise 6 Papers
32 pages
Project 3 STD 10
PDF
No ratings yet
Project 3 STD 10
10 pages
Machine Learning and Deep Learning Approaches For CyberSecurity A Review
PDF
No ratings yet
Machine Learning and Deep Learning Approaches For CyberSecurity A Review
14 pages
Ayu Shahirah Salem: Objective
PDF
No ratings yet
Ayu Shahirah Salem: Objective
2 pages
ICSE Computer Solved Paper 2015
PDF
No ratings yet
ICSE Computer Solved Paper 2015
6 pages
(2012) ICSE Computer Applications Question Paper
PDF
100% (1)
(2012) ICSE Computer Applications Question Paper
6 pages
Attempt All Questions From This Section
PDF
No ratings yet
Attempt All Questions From This Section
4 pages
XII Computer All
PDF
No ratings yet
XII Computer All
237 pages
Comp Theory
PDF
No ratings yet
Comp Theory
5 pages
ICSE Class 10th Computer Applications Sample Paper
PDF
100% (1)
ICSE Class 10th Computer Applications Sample Paper
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
861 Cta - 2017 PDF
PDF
No ratings yet
861 Cta - 2017 PDF
6 pages
A Narrative Review of Medical Image Processing by Deep Learning Models: Origin To COVID-19
PDF
No ratings yet
A Narrative Review of Medical Image Processing by Deep Learning Models: Origin To COVID-19
22 pages
Paper Class 10th 2024-25
PDF
No ratings yet
Paper Class 10th 2024-25
6 pages
Fault Diagnosis and Fault Tolerant Control of A Three-Phase VSI Supplying Sensorless Speed Controlled Induction Motor Drive
PDF
No ratings yet
Fault Diagnosis and Fault Tolerant Control of A Three-Phase VSI Supplying Sensorless Speed Controlled Induction Motor Drive
17 pages
Skillsoft Course Transcript
PDF
No ratings yet
Skillsoft Course Transcript
28 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
Ffu 0001114 01
PDF
No ratings yet
Ffu 0001114 01
27 pages
Computer PYQ 2015 2023
PDF
No ratings yet
Computer PYQ 2015 2023
25 pages
STD X Poems
PDF
No ratings yet
STD X Poems
19 pages
I BCA - CPP Lab
PDF
No ratings yet
I BCA - CPP Lab
57 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
Architecture of Industrial Automation Systems: Abdu Idris Omer Taleb M.M., PHD
PDF
No ratings yet
Architecture of Industrial Automation Systems: Abdu Idris Omer Taleb M.M., PHD
11 pages
Com 2016
PDF
No ratings yet
Com 2016
13 pages
Mock 3
PDF
No ratings yet
Mock 3
7 pages
Computer Applications
PDF
No ratings yet
Computer Applications
3 pages
I008 Khemal Experiment-8-PAI
PDF
No ratings yet
I008 Khemal Experiment-8-PAI
12 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
Selection Question 2024
PDF
No ratings yet
Selection Question 2024
10 pages
Rekabentuk Dan Analisis Produk
PDF
No ratings yet
Rekabentuk Dan Analisis Produk
7 pages
6:12 Volt Lead Acid Battery Charger - Power Supply Circuits
PDF
No ratings yet
6:12 Volt Lead Acid Battery Charger - Power Supply Circuits
3 pages
10th 1st Term Paper 2023-24
PDF
No ratings yet
10th 1st Term Paper 2023-24
8 pages
C Structure and Function
PDF
No ratings yet
C Structure and Function
12 pages
Grade 10 Ca QP
PDF
No ratings yet
Grade 10 Ca QP
8 pages
Nurture International School
PDF
No ratings yet
Nurture International School
5 pages
Class 10 1st Term Paper - Retest
PDF
No ratings yet
Class 10 1st Term Paper - Retest
8 pages
Esd Lab-7 Working With Ultrsonic Sensor
PDF
No ratings yet
Esd Lab-7 Working With Ultrsonic Sensor
13 pages
19348CompXSet1 (1) - Decrypted
PDF
No ratings yet
19348CompXSet1 (1) - Decrypted
5 pages
ICSE 2023 Computer Application Paper Class 10
PDF
No ratings yet
ICSE 2023 Computer Application Paper Class 10
8 pages
2025 COPPER Maneckji
PDF
No ratings yet
2025 COPPER Maneckji
7 pages
Simple Device Discovery Protocol Specification
PDF
No ratings yet
Simple Device Discovery Protocol Specification
12 pages
Sand Patch Test
PDF
No ratings yet
Sand Patch Test
5 pages
Avm Computer Prelim Paper
PDF
No ratings yet
Avm Computer Prelim Paper
8 pages
Sample QP-Comp-X
PDF
No ratings yet
Sample QP-Comp-X
5 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
II Prelim Revision 2024 Computer
PDF
No ratings yet
II Prelim Revision 2024 Computer
5 pages
Icjecapu 06
PDF
No ratings yet
Icjecapu 06
6 pages
Sample Papers 1 - 3 Computer by Devraj Singh
PDF
No ratings yet
Sample Papers 1 - 3 Computer by Devraj Singh
16 pages
Computer (A I) New
PDF
No ratings yet
Computer (A I) New
5 pages
Sample 3 Oswaal
PDF
No ratings yet
Sample 3 Oswaal
5 pages
Ix CMP Ams Final 2017
PDF
No ratings yet
Ix CMP Ams Final 2017
4 pages
WWW Reddit Com R Slingshots Comments Weygv0 Diy Slingshot Make A Knuckle Slingshot Out of Wood
PDF
No ratings yet
WWW Reddit Com R Slingshots Comments Weygv0 Diy Slingshot Make A Knuckle Slingshot Out of Wood
7 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
Iti Result
PDF
No ratings yet
Iti Result
1 page
2025 Solved
PDF
No ratings yet
2025 Solved
10 pages
Epq96 2 Data Sheet 4921240364 Uk
PDF
No ratings yet
Epq96 2 Data Sheet 4921240364 Uk
8 pages
ICSE Computer QP 2023 - Percentiler
PDF
No ratings yet
ICSE Computer QP 2023 - Percentiler
8 pages
Deferred and Supplementary Final Exam ECON339 2022
PDF
No ratings yet
Deferred and Supplementary Final Exam ECON339 2022
8 pages
Computer Test Full Syllabus
PDF
No ratings yet
Computer Test Full Syllabus
3 pages
ICSE 2011 Computer Applications Question Paper
PDF
No ratings yet
ICSE 2011 Computer Applications Question Paper
4 pages
8-20 Hot Mix Roadway Inspectors Checklist
PDF
No ratings yet
8-20 Hot Mix Roadway Inspectors Checklist
4 pages
GR 10 CTA QP Sample Paper
PDF
No ratings yet
GR 10 CTA QP Sample Paper
9 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
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
RRL - Revision
PDF
No ratings yet
RRL - Revision
4 pages
QMS Preboards Computer Applications
PDF
No ratings yet
QMS Preboards Computer Applications
8 pages
Morelia Neo IV Pro KL As Turf Soccer Shoe - Mizuno USA
PDF
No ratings yet
Morelia Neo IV Pro KL As Turf Soccer Shoe - Mizuno USA
1 page
Icse Computer Project Work 2024-2025
PDF
No ratings yet
Icse Computer Project Work 2024-2025
4 pages
Computer Applications
PDF
No ratings yet
Computer Applications
4 pages
Monolithic Applications and Microservices: Applications Are Made of Multiple Components. The
PDF
No ratings yet
Monolithic Applications and Microservices: Applications Are Made of Multiple Components. The
4 pages
Icse 2006 Computer Application Class 10
PDF
No ratings yet
Icse 2006 Computer Application Class 10
4 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
PPSB Computer Prelim
PDF
No ratings yet
PPSB Computer Prelim
3 pages
AV Computers Appl 2nd Prelims
PDF
No ratings yet
AV Computers Appl 2nd Prelims
6 pages
Computer Preboards
PDF
No ratings yet
Computer Preboards
4 pages
Frappe CRM Config and Automation
PDF
No ratings yet
Frappe CRM Config and Automation
3 pages
Fine Aggregate
PDF
No ratings yet
Fine Aggregate
9 pages
Teams Data
PDF
No ratings yet
Teams Data
2 pages
Capco Murex Cs
PDF
100% (1)
Capco Murex Cs
4 pages
Cyberark Identity Adaptive Multi Factor Authentication Solution Brief
PDF
No ratings yet
Cyberark Identity Adaptive Multi Factor Authentication Solution Brief
2 pages
Computer Application 001
PDF
No ratings yet
Computer Application 001
4 pages
Class-X (Two Hours) : Section B
PDF
No ratings yet
Class-X (Two Hours) : Section B
4 pages
Milagrow IMap10.0 User Manual (Page 24 of 29) M
PDF
No ratings yet
Milagrow IMap10.0 User Manual (Page 24 of 29) M
1 page