English

Computer Applications Set 1 2018-2019 (English Medium) ICSE Class 10 Question Paper Solution

Advertisements
Computer Applications [Set 1]
Marks: 100 CISCE
(English Medium)

Academic Year: 2018-2019
Date: March 2019
Advertisements
  • Attempt all questions in section A.
  • Attempt any four questions from Section B.

Section A
[10]1 | Attempt all questions:
[2]1.a

Name any two basic principles of Object-oriented Programming.

Concept: undefined - undefined
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
[2]1.b

Write a difference between unary and binary operator.

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]1.c

Name the keyword which: indicates that a method has no return type.

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation

Name the keyword which: makes the variable as a class variable.

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation
[2]1.d

Write the memory capacity (storage size) of short and float data type in bytes.

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[2]1.e

Identify and name the following tokens:

(i) public
(ii) ‘a’
(iii) ==
(iv) {}

Concept: undefined - undefined
Chapter: [0.08] Encapsulation
[10]2
[2]2.a

Differentiate between if else if and switch-case statements.

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[2]2.b

Give the output of the following code:

String P = “20”, Q = “19”,
int a = Integer .parselnt(P);
int b = Integer. valueOf(Q);
System.out.println(a+””+b);

Concept: undefined - undefined
Chapter: [0.02] Library Classes
Advertisements
[2]2.c

What are the various types of errors in Java?

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]2.d

State the data type and value of res after the following is executed :

char ch = ‘9’;
res = Character. isDigit(ch)

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[2]2.e

What is the difference between the linear search and the binary search technique?

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
[20]3
[2]3.a

Write a Java expression for the following : |x2+2xy| 

Concept: undefined - undefined
Chapter: [0.0106] Input in Java
[2]3.b

Write the return data type of the following function: startsWith( )

Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types

Write the return data type of the following function: random( )

Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types
[2]3.c

If the value of basic=1500, what will be the value of tax after the following statement is executed?

tax = basic > 1200 ? 200 : 100

Concept: undefined - undefined
Chapter: [0.0103] Values and Data Types
[2]3.d

Give the output of following code and mention how many times the loop will execute?

int i;
for(i=5; i> =l;i~)
{
if(i%2 ==1)
continue;
System.out.print(i+ ”
}

Concept: undefined - undefined
Chapter: [0.011000000000000001] Nested Loop
[2]3.e

State a difference between call by value and call by reference. 

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
Advertisements
[2]3.f

Give the output of the following:
Math.sqrt(Math.max(9, 16))

Concept: undefined - undefined
Chapter: [0.05] User - Defined Method
[2]3.g

Write the output for the following :

String s1 = “phoenix”; String s2 =”island”;

System.out.prindn (s1.substring(0).concat (s2.substring(2)));

System.out.println(s2.toUpperCase( ));

Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.h

Evaluate the following expression if the value of x = 2,y = 3 and z = 1.
v = x + – z + y + + + y.

Concept: undefined - undefined
Chapter: [0.06] Class as the Basis of All Computation
[2]3.i

String x[ ] = {“Artificial intelligence”, “IOT”, “Machine learning”, “Big data”};
Give the output of the following statements:

(i) System.out.prindn(x[3]);
(ii) System.out.prindn(x.length);

Concept: undefined - undefined
Chapter: [0.04] String Handling
[2]3.j

What is meant by a package? 

Concept: undefined - undefined
Chapter: [0.0104] Operators in Java

Give an example of a package.

Concept: undefined - undefined
Chapter:

Name any two Java application programming interface packages. 

Concept: undefined - undefined
Chapter:
Section B
[15]4

Design a class name ShowRoom with the following description :
Instance variables/ Data members :

String name – To store the name of the customer
long mobno – To store the mobile number of the customer
double cost – To store the cost of the items purchased
double dis – To store the discount amount
double amount – To store the amount to be paid after discount
Member methods: –
ShowRoom() – default constructor to initialize data members
void input() – To input customer name, mobile number, cost
void calculate() – To calculate discount on the cost of purchased items, based on following criteria

Cost Discount (in percentage)
Less than or equal to ₹ 10000 5%
More than ₹ 10000 and less than or equal to ₹ 20000 10%
More than ₹ 20000 and less than or equal to ₹ 35000 15%
More than ₹ 35000 20%

void display() – To display customer name, mobile number, amount to be paid after discount
Write a main method to create an object of the class and call the above member methods.

Concept: undefined - undefined
Chapter: [0.04] String Handling
[15]5

Using the switch-case statement, write a menu driven program to do the following :

(a) To generate and print Letters from A to Z and their Unicode Letters Unicode

(b) Display the following pattern using iteration (looping) statement: 1

Concept: undefined - undefined
Chapter: [0.0109] Iterative Constructs in Java
[15]6

Write a program to input 15 integer elements in an array and sort them in ascending order using the bubble sort technique. 

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
[15]7

Design a class to overload a function series() as follows: 

(a) void series (int x, int n) – To display the sum of the series given below:
x1 + x2 + x3 + ……………. xn terms

(b) void series (int p) – To display the following series:
0, 7, 26, 63 p terms.

(c) void series () – To display the sum of the series given below:

`1/2 + 1/3 + 1/4 .....1/10`

Concept: undefined - undefined
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
[15]8

Write a program to input a sentence and convert it into uppercase and count and display the total number of words starting with a letter ‘A’.

Example:
Sample Input: ADVANCEMENT AND APPLICATION OF INFORMATION TECHNOLOGY ARE EVER CHANGING.
Sample Output: Total number of words starting with letter A’ = 4.

Concept: undefined - undefined
Chapter: [0.04] String Handling
[15]9

A tech number has even number of digits. If the number is split in two equal halves, then the square of sum of these halves is equal to the number itself. Write a program to generate and print all four-digit tech numbers.

Example :
Consider the number 3025
Square of sum of the halves of 3025 = (30+25)2
= (55)2
= 3025 is a tech number.

Concept: undefined - undefined
Chapter: [0.04] String Handling

Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

CISCE previous year question papers ICSE Class 10 Computer Applications with solutions 2018 - 2019

     CISCE ICSE Class 10 Computer Applications question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our CISCE ICSE Class 10 Computer Applications question paper 2019 serve as a catalyst to prepare for your Computer Applications board examination.
     Previous year Question paper for CISCE ICSE Class 10 Computer Applications-2019 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
     By referring the question paper Solutions for Computer Applications, you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of CISCE ICSE Class 10 .

How CISCE ICSE Class 10 Question Paper solutions Help Students ?
• Question paper solutions for Computer Applications will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×