English

Computer Applications Set 1 2013-2014 (English Medium) ICSE Class 10 Question Paper Solution

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

Academic Year: 2013-2014
Date: March 2014
Advertisements
  • Attempt all questions from Section A.
  • Attempt any four questions from Section B

Section A
[10]1
[2]1.a

Which of the following are valid comments ?

(i) /* comment */
(ii) /* comment
(iii) / / comment
(iv) */ comment */ 

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

What is meant by a package? 

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

Name the primitive data type in Java that is:
A 64-bit integer and is used when you need a range of values wider than those provided by int.

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

Name the primitive data type in Java that is :

A single 16-bit Unicode character whose default value is ‘\u0000’.

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

State one difference between the floating point literals float and double.

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

Find the errors in the given program segment and re-write the statements correctly to assign values to an integer array.
int a = new int (5);
for (int i = 0; i < = 5; i++) a [i] = i;

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

Operators with higher precedence are evaluated before operators with relatively lower precedence. Arrange the operators given below in order of higher precedence to lower precedence.

  1. && 
  2. >= 
  3. ++
Concept: undefined - undefined
Chapter: [0.0104] Operators in Java
[2]2.b

Identify the statement given below as assignment, increment, method invocation or object creation statement.

System.out.println(“Java”); 

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

Identify the statement given below as assignment, increment, method invocation or object creation statement.

costPrice = 457.50; 

Concept: undefined - undefined
Chapter:

Identify the statement given below as assignment, increment, method invocation or object creation statement. 

Car hybrid = new Car(); 

Concept: undefined - undefined
Chapter:

Identify the statement given below as assignment, increment, method invocation or object creation statement. 

petrolPrice++;

Concept: undefined - undefined
Chapter:
Advertisements
[2]2.c

Give two differences between the switch statement and the If-else statement.

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

What is an infinite loop ? Write an infinite loop statement.

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

when is a constructor invoked?

Concept: undefined - undefined
Chapter: [0.07] Constructors

What is meant by a constructor?

Concept: undefined - undefined
Chapter:
[20]3
[2]3.a

List the variables from those given below that are composite data types:

  1. static int x;
  2. arr[i]=10;
  3. obj.display();
  4. boolean b;
  5. private char chr;
  6. String str; 
Concept: undefined - undefined
Chapter:
[2]3.b

State the output of the following program segment:
String str1 = “great”; String str2 = “minds”;
System.out.println (str1.substring (0,2).concat(str2.substring (1)));
System.out.println ((“WH”+(str1.substring (2).toUpperCase())));

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

What are the final values stored in variable x and y below ?
double a = – 6.35;
double b = 14.74;
double x = Math.abs(Math.ceil(a));
double y = Math.rint (Math max (a,b));

Concept: undefined - undefined
Chapter:
[2]3.d

Rewrite the following program segment using if-else statements instead of the ternary operator: 
String grade = (mark >= 90) ? “A” : (mark >= 80) ? “B” : “C”;

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

Give the output of the following method:

public static void main (String [] args)
{
int a = 5;
a++;
System.out.println(a);
a -= (a--) − (--a); 
System.out.println(a);
}
Concept: undefined - undefined
Chapter: [0.04] String Handling
Advertisements
[2]3.f

What is the data type returned by the library function?
compareTo()

Concept: undefined - undefined
Chapter: [0.02] Library Classes

What is the data type returned by the library function?

equals()

Concept: undefined - undefined
Chapter:
[2]3.g

State the value of characteristic and mantissa when the following code is executed:
String s = “4.3756”;
int n = s.indexOf(‘.’);
int characteristic=Integer.parseInt (s.substring (0,n));
int mantissa=Integer.valueOf(s.substring(n+1)); 

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

Study the method and answer the given questions.
public void sampleMethod()
{ for (int i=0; i < 3; i++)
{ for (int j = 0; j<2; j++)
{int number = (int) (Math.random() * 10);
System.out.println(number); } } }
(i) How many times does the loop execute ?
(ii) What is the range of possible values stored in the variable number ? 

Concept: undefined - undefined
Chapter: [0.08] Encapsulation
[2]3.i

Study the method and answer the given questions.
public void sampleMethod()

{ for (int i=0; i < 3; i++)
{ for (int j = 0; j<2; j++)
{int number = (int) (Math.random() * 10);
System.out.println(number); } } }
(i) How many times does the loop execute ?

(ii) What is the range of possible values stored in the variable number ?

Concept: undefined - undefined
Chapter: [0.08] Encapsulation
[2]3.j

What will be the output when the following code segment is  executed?
String s = “1001”;
int x = Integer. valueOf(s);
double y = Double.valueOf(s);
System.out.println(“x=”+x);
System.out.println(“y=”+y); 

Concept: undefined - undefined
Chapter: [0.02] Library Classes

What will be the output when the following code segment is executed?

System.out.println(“The king said\”Begin at the beginning!\“to me.”);

Concept: undefined - undefined
Chapter: [0.02] Library Classes
Section B
[15]4

Define a class named movieMagic with the following description:
Instance variables/data members:
int year — to store the year of release of a movie.
String title — to-store the title of the movie

float rating — to store the popularity rating of the movie
(minimum rating=0.0 and maximum rating=5.0)

Member methods:
(i) movieMagic() Default constructor to initialize numeric data members to 0 and String data member to “ ”.
(ii) void accept() To input and store year, title and rating.
(iii) void display() To display the title of a movie and a message based on the rating as per the table below.

Rating Message to be displayed
0.0 to 2.0 Flop
2.1 to 3.4 Semi-hit
3.5 to 4.5 Hit
4.6 to 5.0 Super Hit

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

A special two-digit number is such that when the sum of its digits is added to the product of its digits, the result is equal to the original two-digit number. Example: Consider the number 59.
Sum of digits = 5 + 9 = 14
Product of its digits = 5 x 9 = 45
Sum of the sum of digits and product of digits = 14 + 45 = 59
Write a program to accept a two-digit number. Add the sum of its digits to the product of its digits. If the value is equal to the number input, output the message “Special 2-digit number” otherwise, output the message “Not a special 2-digit number”

Concept: undefined - undefined
Chapter:
[15]6

Write a program to assign a full path and file name as given below. Using library functions, extract and output the file path, file name and file extension separately as shown.
Input C: / Users / admin / Pictures / flower.jpg
Output path: C: / Users/admin/Pictures/
File name: flower
Extension: jpg

Concept: undefined - undefined
Chapter:
[15]7

Design a class to overload a function area( ) as follows:
(i) double area (double a, double b, double c) with three double arguments, returns the area of a scalene triangle using the formula:

area = `sqrt ("s" ("s" - "a")("s" - "b")("s" - "c"))  "2ab"`

where `"s" = ("a" + "b" + "c")/2`

(ii) double area (int a, int b, int height) with three integer arguments, returns the area of a trapezium using the formula:

area = `1/2` height (a+b)

(iii) double area (double diagonal 1, double diagonal 2) with two double arguments, returns the area of a rhombus using the formula :

area = `1/2` (diagonal 1 × diagonal 2)

Concept: undefined - undefined
Chapter: [0.02] Library Classes
[15]8

Using the switch statement, write a menu driven program to calculate the maturity amount of a Bank Deposit.
The user is given the following options :
(i) Term Deposit
(ii) Recurring Deposit

For option (i) accept principal (P), rate of interest(r) and time period m years(n). Calculate and output the maturity amount (A) receivable using the formula

`"A" = "P"[1+"r"/100]^"n"`

For option (ii) accept Monthly Installment (P), rate of interest (r) and time period in months (n). Calculate and output the maturity amount (A) receivable using the formula

`"A" = "P" xx "n" + "P" xx ("n"("n" + 1))/2 xx "r"/100 xx 1/12`

For an incorrect option, an appropriate error message should be displayed.

Concept: undefined - undefined
Chapter: [0.0106] Input in Java
[15]9

Write a program to accept the year of graduation from school as an integer value from, the user. Using the Binary Search technique on the sorted array of integers given below. 

Output the message “Record exists” If the value input is located in the array. If not, output the message “Record does not exist”.
{1982, 1987, 1993, 1996. 1999, 2003, 2006, 2007, 2009, 2010}.  

Concept: undefined - undefined
Chapter: [0.0106] Input in Java

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 2013 - 2014

     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 2014 serve as a catalyst to prepare for your Computer Applications board examination.
     Previous year Question paper for CISCE ICSE Class 10 Computer Applications-2014 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×