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)
226 views
9 pages
Icse 2023 Specimen Cta
Uploaded by
Venom
AI-enhanced title
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_2023_SPECIMEN_CTA For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
226 views
9 pages
Icse 2023 Specimen Cta
Uploaded by
Venom
AI-enhanced title
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_2023_SPECIMEN_CTA For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save ICSE_2023_SPECIMEN_CTA For Later
You are on page 1
/ 9
Search
Fullscreen
ICSE 2023 EXAMINATION SPECIMEN QUESTION PAPER COMPUTER APPLICATIONS Maximum Marks: 100 Time allowed: Two hours 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 (o 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[ J. SECTION A (Attempt all questions from this Section.) Question 1 [20] Choose the correct answer and write the correct option. @ Wrapping up of data and methods together as one unit is termed as: (a) Inheritance (b) Polymorphism (©) Encapsulation (@) Abstraction «i The datatype which is specified that the method does not return a value is: (a) Void (b) void (©) voID (@ boolean 723 861 — SPECIMI 1of9Gi) (iv) wy) (wi) The logical operator which is an unary operator: @) && ) | © ! @ > ‘The Scanner class is a class. (a) Primitive (b) Derived (© Wrapper (@) super class Math.pow(625, ¥2 )+ Math.sqrt(144) (@) 170 () 130 © 370 @ 13 ‘The correct if statement for the following ternary operation statement is: System.out println(n%2 = 0? “true”:"false”); (@) if(n%2==0) retum true; else return false; (b) if(u%2—=0) return “true”; else return “false”; (c) if(n'%2==0) System.out println(“true”); else System.out printIn(“false”); ‘123 861 — SPECIMEN 20f9(wii) (viii) (x) &) @)_ if(n%2—=0) retum false; else return false; Multiple branching statement of java is: (a) For (&) while © do... while (@) switch The number of bytes occupied by the constant 45 are: (a) Four bytes (©) two bytes, (©) Eight bytes @ one byte do.....While loop is an (a) entry controlled loop (b) infinite loop (©) exit controlled loop @_ Finite loop for(k=1:k<=2;k+4) { for(m=;m<=4;m+) { System.out.printin(m*2); } } How many times the inner loop is executed? (2) 4times (&) 8times (©) 2times (16 times 23 861 — SPECIMEN 30f9(xi) (i) (xiii) (xiv) @v) A method with the same name as of the class and with arguments and no return. data type is termed as: (a) parameterized constructor (b) default constructor (©) Non—parameterized constructor (@) wrapper class method Whaat is the value of res? ) 66 (© 65 @ 97 The style of expressing single line comment is: (a) /* comment*/ (b) * comment © comment (@_ /* comment ‘The method to check ifa character is an alphabet or not is: (@) _isLetter(char) (b) _isAlpha(char) (©) isUppercase(char) (@_isLowerease(char) The output of Double. parseDouble(“71.25”) +0.75 (a) 72 ) 72.0 () 71.0 @ 71.75 123 861 — SPECIMEN 40f9(xvi) (xvii) (wii) (xix) (xx) The method to convert a string to upper case is: (a) toUpperCase(char) (b) toUPPERCASE(String) (©) toUpperCase(String) (@)_touppercase(String) ‘The output of the method “DETERMINATION” substring(2, 6) is: (a) “TERM” (b) term (©. “Term” (@ “TERMI” The array int x[10] occupies: (a) 10 bytes (b) 40 bytes (©) 20bytes (@) 80 bytes The element in x[4] of the array {3, 5,7, 12, 16, 18, 20, 35, 42, 89} is: (@) 16 (b) 12 @ 7 @ 18 Name the type of error that occurs for the following statement: System.out.printIn(Math.sqrt(24 - 25)); (@) Syntax error (b) runtime error (©) logical error (@)_ no error ‘23 861 — SPECIMEN 5of9Question 2 @ Gi ii) (iv) ) (wi) (vii) (viii) Gx) Evaluate the expression: ZLtatt+—-b+ tat --b; where a= 10,b=5,Z= 10 Write java expression for: | x? + xy Rewrite the following using temary operators: if(x>y) Rewrite the following while loop using for loop: int x =55 while (x <= 5) { xHy } System.out println(x); How many times the following loop will gets executed? What is the output of the same? int counter=1; do { System.out printIn(counter); } while ( counter ++ <5 ); “MISSISSIPPI” replace(‘S’, ‘t’).toLowerCase() “REDUCE” compareTo(“REVOLT”) + “ANTARTICA” lastindexOf(‘A’) Define boxing with an example. Consider the following program and answer the questions given below: class sample { — inta,b; (2) 21 2] 2] 21 2] (2) 2] Q] 723 861 - SPECIMEN 60f9sample(int x, int y) { a=xb=y; 3 void caleulate() {— intz; z= ath; System.out printin(z); 3 (a) Name the global variables. (6) What are the method variables? ®) Consider the following array and answer the questions given below: 2) int x [ ] = (23, 45, 67, 12, 45, 89, 24, 12, 9, 7} (a) What is the size of the array? () What is the position of 89? SECTION B (Answer any four questions from this Section.) The answers in this section should consist of the programs in either BlueJ environment or any program environment with java as the base. Each program should be written using variable description / mnemonic codes so that the logic of the program is clearly depicted. Flowcharts and algorithms are not required. Question 3 15] Define a class with the following specifications: Class name: employee Member variables: eno ~ employee number ename — name of the employee age —age of the employee basic — basic salary [Declare the variables using appropriate data types] 23 861 — SPECIMEN 7009Member methods: void accept() accept the details using scanner class void calculate ()— _ to calculate the net salary as per the given specifications: net = basic + hra + da—pf hra = 18.5% of basic da = 17.45% of basic pf=8.10% of basic if the age of the employee is above 50 he/she gets an additional allowance of Rs.5000, void print() — to print the details as per the following format eno ename age, basic —net void main() — to create an object of the class and invoke the methods Question 4 U5] Define a class to overload the method print as follows: void print ()~to print the format 1 23 45 6 789 10 boolean print (int n) to check whether the number is a Dudeney number , a number is dudeney if the cube of the sum of the digits is equal to the number itself. Eg : 512 =(5+142)3 = (8)3 = 512 void print (int a, char ch) — if ch = s or S print the square of the number el ch =c or C print the cube of the number. Question 5 (15) Define a class to accept 10 integers and arrange them in descending order using bubble sort. Print the original array and the sorted array. Question 6 1s] Define a class to accept values into a double array of size 20 and print the range of the array, range is the difference between the largest and the smallest elements of the array. 723 861 — SPECIMEN 80f9Question 7 115] Define a class to accept a string and print the same in reverse, also print the number of vowels in the string. Eg: $= “BEAUTIFUL” Output ~ “LUFITUAEB” No. of vowels = 5 Question 8 (15) Define a class to accept the names of 10 students in an array and check for the existence of the given name in the array using linear search, if found print the position of the name, if not found print the appropriate message. Also print the names which begins with the word “SRI”. 723 861 — SPECIMEN 90f9
You might also like
ICSE Class 10 Computer Applications
PDF
60% (5)
ICSE Class 10 Computer Applications
68 pages
Isce Computer Previous Yr Question Ppr. (2019-2014)
PDF
No ratings yet
Isce Computer Previous Yr Question Ppr. (2019-2014)
123 pages
Compter App - Specimen Paper
PDF
No ratings yet
Compter App - Specimen Paper
9 pages
ICSE COMPUTER APPLICATIONS CLASS 10 Important Questions
PDF
100% (1)
ICSE COMPUTER APPLICATIONS CLASS 10 Important Questions
24 pages
Specimen Papers
PDF
No ratings yet
Specimen Papers
19 pages
ICSE Question Paper Computer Application 2012
PDF
0% (1)
ICSE Question Paper Computer Application 2012
16 pages
ICSE 2nd PB 2023-24
PDF
No ratings yet
ICSE 2nd PB 2023-24
8 pages
10TH Icse 2023
PDF
No ratings yet
10TH Icse 2023
9 pages
Specimen 2025
PDF
No ratings yet
Specimen 2025
12 pages
Class 10 Computer Solved 4-7
PDF
No ratings yet
Class 10 Computer Solved 4-7
56 pages
Comp App Practise 6 Papers
PDF
No ratings yet
Comp App Practise 6 Papers
32 pages
Icse 2023 - 861 Cta
PDF
No ratings yet
Icse 2023 - 861 Cta
8 pages
10 ICSE - Midterm
PDF
No ratings yet
10 ICSE - Midterm
4 pages
Icse 2023 Specimen Qpans
PDF
No ratings yet
Icse 2023 Specimen Qpans
12 pages
ICSE Computer Applications Previous Year Question Paper 2019 Solved For Class 10
PDF
No ratings yet
ICSE Computer Applications Previous Year Question Paper 2019 Solved For Class 10
249 pages
10 Icse
PDF
No ratings yet
10 Icse
6 pages
ICSE 10th Board Exam
PDF
No ratings yet
ICSE 10th Board Exam
4 pages
Kisa Preparatory Paper Computer Applications
PDF
No ratings yet
Kisa Preparatory Paper Computer Applications
6 pages
10th Computer FLT Paper 22.09.2024
PDF
No ratings yet
10th Computer FLT Paper 22.09.2024
6 pages
Icse Computer Applications 2024
PDF
No ratings yet
Icse Computer Applications 2024
11 pages
Computer Applications
PDF
No ratings yet
Computer Applications
51 pages
Test Paper 1 For 2023-1
PDF
No ratings yet
Test Paper 1 For 2023-1
4 pages
Computer 2023
PDF
No ratings yet
Computer 2023
20 pages
Com 2016
PDF
No ratings yet
Com 2016
13 pages
X - PreBoard 2023 Solved
PDF
No ratings yet
X - PreBoard 2023 Solved
10 pages
Computer Practice Paper
PDF
No ratings yet
Computer Practice Paper
4 pages
CBS, Computer Applications
PDF
No ratings yet
CBS, Computer Applications
7 pages
Class 10th Icse 2025 Computer Question Paper.
PDF
100% (2)
Class 10th Icse 2025 Computer Question Paper.
12 pages
AOASS Selection
PDF
No ratings yet
AOASS Selection
8 pages
MCQ and Logical 4 Prelims Ans in Last Page
PDF
No ratings yet
MCQ and Logical 4 Prelims Ans in Last Page
10 pages
Group 1 2 3 4 5 7 Model 1 2025 20 01
PDF
No ratings yet
Group 1 2 3 4 5 7 Model 1 2025 20 01
5 pages
X Pre-Board 2024-25 Comp. App
PDF
No ratings yet
X Pre-Board 2024-25 Comp. App
8 pages
Sxcs X Sem1 2021
PDF
No ratings yet
Sxcs X Sem1 2021
5 pages
Computer Practice
PDF
No ratings yet
Computer Practice
9 pages
Com 2019
PDF
No ratings yet
Com 2019
11 pages
42ee4513-7a82-4221-bc3a-ceeb1fcfe462
PDF
No ratings yet
42ee4513-7a82-4221-bc3a-ceeb1fcfe462
8 pages
100 Mks Test std-9-1 - Answers
PDF
No ratings yet
100 Mks Test std-9-1 - Answers
5 pages
X-CTA-Second-Prep QP-24-25
PDF
No ratings yet
X-CTA-Second-Prep QP-24-25
8 pages
Mock 6
PDF
No ratings yet
Mock 6
5 pages
Computer Applications JML
PDF
No ratings yet
Computer Applications JML
7 pages
Mock Test 04
PDF
No ratings yet
Mock Test 04
6 pages
Preboard 1 X
PDF
No ratings yet
Preboard 1 X
6 pages
Paper Class 10th 2024-25
PDF
No ratings yet
Paper Class 10th 2024-25
6 pages
Compt 1
PDF
No ratings yet
Compt 1
5 pages
2025 COPPER Maneckji
PDF
No ratings yet
2025 COPPER Maneckji
7 pages
COMPUTER X 1st Term
PDF
No ratings yet
COMPUTER X 1st Term
5 pages
COMPUTER APPLICATIONS Prac
PDF
No ratings yet
COMPUTER APPLICATIONS Prac
9 pages
Lokhandwala School - Comp
PDF
No ratings yet
Lokhandwala School - Comp
6 pages
Adobe Scan 28-Jan-2025
PDF
No ratings yet
Adobe Scan 28-Jan-2025
25 pages
PreBoard 02
PDF
No ratings yet
PreBoard 02
6 pages
CMS PRE-BOARD Question Paper Class 10th Computer
PDF
No ratings yet
CMS PRE-BOARD Question Paper Class 10th Computer
9 pages
Computer Applications (2023)
PDF
No ratings yet
Computer Applications (2023)
8 pages
Class X Postprelims 2024
PDF
No ratings yet
Class X Postprelims 2024
5 pages
ICSE Class 10th Computer
PDF
No ratings yet
ICSE Class 10th Computer
26 pages
Class X Mock Test
PDF
No ratings yet
Class X Mock Test
6 pages
2025 Solved
PDF
No ratings yet
2025 Solved
10 pages
ICSE Computer QP 2023 - Percentiler
PDF
No ratings yet
ICSE Computer QP 2023 - Percentiler
8 pages
Preliminary Examination Computer Applications: Bombay Scottish School, Mahim
PDF
No ratings yet
Preliminary Examination Computer Applications: Bombay Scottish School, Mahim
5 pages