(English Medium)
Academic Year: 2018-2019
Date: मार्च 2019
Advertisements
- Attempt all questions in section A.
- Attempt any four questions from Section B.
Name any two basic principles of Object-oriented Programming.
Chapter: [0.0101] Introduction to Object Oriented Programming Concepts
Write a difference between unary and binary operator.
Chapter: [0.0104] Operators in Java
Name the keyword which: indicates that a method has no return type.
Chapter: [0.06] Class as the Basis of All Computation
Name the keyword which: makes the variable as a class variable.
Chapter: [0.06] Class as the Basis of All Computation
Write the memory capacity (storage size) of short and float data type in bytes.
Chapter: [0.02] Library Classes
Identify and name the following tokens:
(i) public
(ii) ‘a’
(iii) ==
(iv) {}
Chapter: [0.08] Encapsulation
Differentiate between if else if and switch-case statements.
Chapter: [0.02] Library Classes
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);
Chapter: [0.02] Library Classes
Advertisements
What are the various types of errors in Java?
Chapter: [0.0104] Operators in Java
State the data type and value of res after the following is executed :
char ch = ‘9’;
res = Character. isDigit(ch)
Chapter: [0.02] Library Classes
What is the difference between the linear search and the binary search technique?
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
Write a Java expression for the following : |x2+2xy|
Chapter: [0.0106] Input in Java
Write the return data type of the following function: startsWith( )
Chapter: [0.0103] Values and Data Types
Write the return data type of the following function: random( )
Chapter: [0.0103] Values and Data Types
If the value of basic=1500, what will be the value of tax after the following statement is executed?
tax = basic > 1200 ? 200 : 100
Chapter: [0.0103] Values and Data Types
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+ ”
}
Chapter: [0.011000000000000001] Nested Loop
State a difference between call by value and call by reference.
Chapter: [0.05] User - Defined Method
Advertisements
Give the output of the following:
Math.sqrt(Math.max(9, 16))
Chapter: [0.05] User - Defined Method
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( ));
Chapter: [0.04] String Handling
Evaluate the following expression if the value of x = 2,y = 3 and z = 1.
v = x + – z + y + + + y.
Chapter: [0.06] Class as the Basis of All Computation
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);
Chapter: [0.04] String Handling
What is meant by a package?
Chapter: [0.0104] Operators in Java
Name any two Java application programming interface packages.
Chapter:
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.
Chapter: [0.04] String Handling
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
Chapter: [0.0109] Iterative Constructs in Java
Write a program to input 15 integer elements in an array and sort them in ascending order using the bubble sort technique.
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
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`
Chapter: [0.03] Arrays (Single Dimensional and Double Dimensional)
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.
Chapter: [0.04] String Handling
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.
Chapter: [0.04] String Handling
Other Solutions
Submit Question Paper
Help us maintain new question papers on Shaalaa.com, so we can continue to help studentsonly jpg, png and pdf files
CISCE previous year question papers ICSE Class 10 Computer Applications with solutions 2018 - 2019
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.