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)
127 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 now
Download
Save Icse 2015 Computer Application Class 10 For Later
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)
127 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 now
Download
Save Icse 2015 Computer Application Class 10 For Later
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
Arihant- Computer 15 th sample paper icse class 10
PDF
No ratings yet
Arihant- Computer 15 th sample paper icse class 10
5 pages
Comp Theory (2)
PDF
No ratings yet
Comp Theory (2)
5 pages
ICSE Computer Solved Paper 2015
PDF
No ratings yet
ICSE Computer Solved Paper 2015
6 pages
Icse 2006 Computer Application Class 10
PDF
No ratings yet
Icse 2006 Computer Application Class 10
4 pages
Computer Application 001
PDF
No ratings yet
Computer Application 001
4 pages
(2012) ICSE Computer Applications Question Paper
PDF
100% (1)
(2012) ICSE Computer Applications Question Paper
6 pages
Computer_PYQ_2015_2023
PDF
No ratings yet
Computer_PYQ_2015_2023
25 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
Paper Class 10th 2024-25
PDF
No ratings yet
Paper Class 10th 2024-25
6 pages
II Prelim Revision 2024 computer
PDF
No ratings yet
II Prelim Revision 2024 computer
5 pages
Computer Applications ICSE Sample Paper 2 PDF
PDF
100% (1)
Computer Applications ICSE Sample Paper 2 PDF
5 pages
Computer Applications Class - 10: St. Francis School, Vadakkencherry
PDF
No ratings yet
Computer Applications Class - 10: St. Francis School, Vadakkencherry
3 pages
ICSE Class 10th Computer Applications Sample Paper
PDF
100% (1)
ICSE Class 10th Computer Applications Sample Paper
2 pages
grade-10-ca-qp
PDF
No ratings yet
grade-10-ca-qp
8 pages
Comp App Practise 6 Papers
PDF
No ratings yet
Comp App Practise 6 Papers
32 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
10th 1st Term Paper 2023-24
PDF
No ratings yet
10th 1st Term Paper 2023-24
8 pages
Computer Applications
PDF
No ratings yet
Computer Applications
3 pages
Attempt All Questions From This Section
PDF
No ratings yet
Attempt All Questions From This Section
4 pages
Sample QP-Comp-X
PDF
No ratings yet
Sample QP-Comp-X
5 pages
Computer ISCE Sample Paper
PDF
100% (1)
Computer ISCE Sample Paper
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
Project 3 STD 10
PDF
No ratings yet
Project 3 STD 10
10 pages
861 Cta - 2017 PDF
PDF
No ratings yet
861 Cta - 2017 PDF
6 pages
AVM COMPUTER PRELIM PAPER
PDF
No ratings yet
AVM COMPUTER PRELIM PAPER
8 pages
icjecapu06
PDF
No ratings yet
icjecapu06
6 pages
com2016
PDF
No ratings yet
com2016
13 pages
Class 9 Computer Applications (Finals 20-21)
PDF
No ratings yet
Class 9 Computer Applications (Finals 20-21)
5 pages
Class-X (Two Hours) : Section B
PDF
No ratings yet
Class-X (Two Hours) : Section B
4 pages
ICSE 2011 Computer Applications Question Paper
PDF
No ratings yet
ICSE 2011 Computer Applications Question Paper
4 pages
Selection Question 2024 (1)
PDF
No ratings yet
Selection Question 2024 (1)
10 pages
10 Computer Applications
PDF
No ratings yet
10 Computer Applications
6 pages
19348CompXSet1 (1)_decrypted
PDF
No ratings yet
19348CompXSet1 (1)_decrypted
5 pages
Sample 3 Oswaal
PDF
No ratings yet
Sample 3 Oswaal
5 pages
Grade 10 ICSE Assignments - Internal Assessment
PDF
0% (1)
Grade 10 ICSE Assignments - Internal Assessment
6 pages
Sample papers 1 - 3 computer by Devraj Singh
PDF
No ratings yet
Sample papers 1 - 3 computer by Devraj Singh
16 pages
Nurture International School
PDF
No ratings yet
Nurture International School
5 pages
Class-9, Computer Applications
PDF
75% (4)
Class-9, Computer Applications
3 pages
XII Computer All
PDF
No ratings yet
XII Computer All
237 pages
ICSE 2023 Computer Application Paper Class 10
PDF
No ratings yet
ICSE 2023 Computer Application Paper Class 10
8 pages
Class 10 1st Term Paper - Retest
PDF
No ratings yet
Class 10 1st Term Paper - Retest
8 pages
Computer Test Full Syllabus
PDF
No ratings yet
Computer Test Full Syllabus
3 pages
ICSE COMPUTER PROJECT WORK 2024-2025
PDF
No ratings yet
ICSE COMPUTER PROJECT WORK 2024-2025
4 pages
IX-CMP-AMS-FINAL-2017
PDF
No ratings yet
IX-CMP-AMS-FINAL-2017
4 pages
Computer (A I) New
PDF
No ratings yet
Computer (A I) New
5 pages
2025 COPPER Maneckji
PDF
No ratings yet
2025 COPPER Maneckji
7 pages
Mock 3
PDF
No ratings yet
Mock 3
7 pages
MCPS Prelim Jan 2023
PDF
No ratings yet
MCPS Prelim Jan 2023
4 pages
Icse 2005 Computer Application Class 10 PDF
PDF
No ratings yet
Icse 2005 Computer Application Class 10 PDF
4 pages
SP - Test 2 MEMO
PDF
No ratings yet
SP - Test 2 MEMO
9 pages
2018 - Final - Spring - OOP (1)
PDF
No ratings yet
2018 - Final - Spring - OOP (1)
4 pages
10 ICSE - Computer Application - I Preparatory Exam - 2024-25
PDF
No ratings yet
10 ICSE - Computer Application - I Preparatory Exam - 2024-25
6 pages
CCS Computer Application Prelim2025
PDF
No ratings yet
CCS Computer Application Prelim2025
6 pages
ICSE 2015 Computer Applications Solved Paper
PDF
No ratings yet
ICSE 2015 Computer Applications Solved Paper
17 pages
Skillsoft Course Transcript
PDF
No ratings yet
Skillsoft Course Transcript
28 pages
Sand Patch Test
PDF
No ratings yet
Sand Patch Test
5 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
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
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
6 Types of Rollers
PDF
No ratings yet
6 Types of Rollers
7 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
8-20 Hot Mix Roadway Inspectors Checklist
PDF
No ratings yet
8-20 Hot Mix Roadway Inspectors Checklist
4 pages
STD X Poems
PDF
No ratings yet
STD X Poems
19 pages
IS:2201 (Part1)
PDF
100% (1)
IS:2201 (Part1)
25 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
NHAI Quality Assurance Manual
PDF
93% (27)
NHAI Quality Assurance Manual
308 pages
Velodyne LiDAR VLP 16 User Manual
PDF
100% (1)
Velodyne LiDAR VLP 16 User Manual
138 pages
Tablat List 04-09-2024
PDF
No ratings yet
Tablat List 04-09-2024
89 pages
Canon Printers Range Catalogue - April 2023
PDF
No ratings yet
Canon Printers Range Catalogue - April 2023
27 pages
Matlab Excel
PDF
No ratings yet
Matlab Excel
10 pages
Dart
PDF
No ratings yet
Dart
70 pages
Honeywell
PDF
No ratings yet
Honeywell
1 page
How To Use Vivo Rewards: A Student Guide
PDF
No ratings yet
How To Use Vivo Rewards: A Student Guide
12 pages
Data Engineer 5 Months Roadmap
PDF
No ratings yet
Data Engineer 5 Months Roadmap
5 pages
Reading 3 Machine Learning
PDF
No ratings yet
Reading 3 Machine Learning
9 pages
Joint Khmer Word Segmentation and Part-Of-Speech T
PDF
No ratings yet
Joint Khmer Word Segmentation and Part-Of-Speech T
12 pages
Module Part 2 Frequency Distribution and Graphs
PDF
No ratings yet
Module Part 2 Frequency Distribution and Graphs
38 pages
Theory Proposed by Judith Graves and Sheila Corcoran's Model (1989)
PDF
No ratings yet
Theory Proposed by Judith Graves and Sheila Corcoran's Model (1989)
2 pages
Survery On Fpga and LLM
PDF
No ratings yet
Survery On Fpga and LLM
16 pages
D800050.G0 Tools 8000-1
PDF
No ratings yet
D800050.G0 Tools 8000-1
12 pages
The Company The Skema Difference
PDF
No ratings yet
The Company The Skema Difference
2 pages
Natural Interleaving™ Transition-Mode PFC Controller With Improved Audible Noise
PDF
No ratings yet
Natural Interleaving™ Transition-Mode PFC Controller With Improved Audible Noise
34 pages
Unit 3 Clustering
PDF
No ratings yet
Unit 3 Clustering
28 pages
Mystery Letter Hundreds Charts: For Upper Case Letters & Lower Case Letters!
PDF
No ratings yet
Mystery Letter Hundreds Charts: For Upper Case Letters & Lower Case Letters!
53 pages
PDF (Ebook) Query Understanding for Search Engines by Yi Chang, Hongbo Deng ISBN 9783030583330, 9783030583347, 3030583333, 3030583341 download
PDF
100% (8)
PDF (Ebook) Query Understanding for Search Engines by Yi Chang, Hongbo Deng ISBN 9783030583330, 9783030583347, 3030583333, 3030583341 download
65 pages
Quantstudio-3-and-5-real-time-pcr-systems_compressed
PDF
No ratings yet
Quantstudio-3-and-5-real-time-pcr-systems_compressed
9 pages
Chapter 1
PDF
No ratings yet
Chapter 1
3 pages
Valeo Interview Q
PDF
No ratings yet
Valeo Interview Q
21 pages
Mindmanager End User License Agreement
PDF
No ratings yet
Mindmanager End User License Agreement
11 pages
Edge Keyboard Shortcuts
PDF
No ratings yet
Edge Keyboard Shortcuts
1 page
Big Data Management and Cloud Computing
PDF
No ratings yet
Big Data Management and Cloud Computing
7 pages
Field Service Macro Process Diagram
PDF
No ratings yet
Field Service Macro Process Diagram
1 page
Interview Preparation and Questions Devops
PDF
No ratings yet
Interview Preparation and Questions Devops
65 pages
Um0144 ST Assemblerlinker Stmicroelectronics
PDF
No ratings yet
Um0144 ST Assemblerlinker Stmicroelectronics
89 pages
Computer Generated in Nursing Care Plans
PDF
100% (2)
Computer Generated in Nursing Care Plans
4 pages
Analysis of Filling System and Consequences of Misfiled Patient Case Folders
PDF
100% (1)
Analysis of Filling System and Consequences of Misfiled Patient Case Folders
23 pages