[ICSE 2012] Computer Applications Question Paper - Java For School
Recommend Documents
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 ...
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 ...
Computer Applications. K E Y ... A class name must begin with an upper case
alphabet. (ii) ... (e) x = 5; x = x++ * 2 + 2 * --x;. 5 * 2 + 2 * 5. 10 + 10. 20. Page 1 of
6 ...
ICSE Specimen Question Paper. CHEMISTRY. SCIENCE Paper – 2. (One hour
and a half). Answers to this Paper must be written on the paper provided ...
This is to meet the Internal Assessment requirements of ICSE 2013 Computer.
Applications paper. ... standard of programming questions in the board exam.
86. ICSE Specimen Question Paper. ECONOMICS. (Two hours). Answer to this
paper must be written on the paper provided separately. You will not be allowed
...
SCIENCE. Paper I (Physics). (One hour and a half). Answer to this paper must be
written on the paper provided separately. You will NOT be allowed to write ...
35. ICSE Specimen Question Paper. HISTORY & CIVICS. H.C.G. - Paper - 1. (
Two hours). Answers to this Paper must be written on the paper provided ...
Std X : Preliminary Exams. The J. B. PetitHigh-School for Girls. S'q'December
2008. Duration : 2 hours. Computer Applications. Section is compulsory. Section
A.
(10.30 am \v Long Bell tI«-Xn\v tijw am{Xta Question paper seal s]m«n¡m³ ]mSp-
Еq) ... (English Medium hnZymА°n-IДЎv Question Cw¥ojnepw Malayalam
Medium hnZymА°n-IДЎv Question ..... IV. hnd-b-tem-Sp-Iq-sS-bpЕ ]\n, tcmK-_m-[-
bp-.
Mathematics Model question Papers for ICSE www.targeticse.co.in. ICSE Sample
paper. MATHEMATICS. (Two hours and a half). Answer to this paper must be ...
ISC SPECIMEN QUESTION PAPER FOR 2012 EXAMINATION. ENGLISH. Paper
1. (Three Hours). (Candidates are allowed additional 15 minutes for only ...
CHEMISTRY. 0620/32. Paper 3 (Extended). October/November 2012. 1 hour 15
minutes. Candidates answer on the Question Paper. No Additional Materials ...
Sample Paper – 2011. Class – X. Subject - Biology. Set – 1. [Full Marks 80 ]. [
Time – One hour and a half]. Section – I (40 marks). Attempt all questions from
this ...
Java: ICSE 2012 Theory questions and answers covering the entire syllabus. [KP
] ... Inheritance. When a class acquires properties of another class (may add a
few of its own). .... Output-: First integer division takes place= (float)(10). Then the.
ICSE Sample Paper. History & Civics. Full Marks 80. Time 2 Hrs. You will not be
allowed to write during the first 15 minutes. This time is to be spent in reading.
Kerala HSE Plus One Computer Applications Model Question Paper 2.pdf. Kerala HSE Plus One Computer Applications Model Qu
(iii) After this verification is over, the OMR Sheet Number. should be .... Internet protocol is diskless machine. uses
Nov 19, 2011 ... word, Power Point Presentation slides in MS-Power Point and Table in MS- ...
SAMPLE QUESTION PAPER FOR COMPUTER SKILL TEST.
Page 3 of 11. Page 3 of 11. CBSE 2012 Computer Science Question Paper set 2 2007.pdf. CBSE 2012 Computer Science Questio
CBSE 2012 Computer Science Question Paper set 1 2007.pdf. CBSE 2012 Computer Science Question Paper set 1 2007.pdf. Open
Kerala HSE Plus One Computer Applications Model Question Paper 2.pdf. Kerala HSE Plus One Computer Applications Model Qu
ICSE Specimen Question Paper. ECONOMIC APPLICATIONS. (Two hours).
Answers to this paper must be written on the paper provided separately. You will
not ...
Page 1 of 6. Computer Science 2006 (Compartment Delhi). General Instructions: 3. All questions are compulsory. 4. Progra
[ICSE 2012] Computer Applications Question Paper - Java For School
This time is to be spent in reading the question paper. The time ... (e) Differentiate
between public and private modifiers for members of a class. [2]. Question 3.
COMPUTER APPLICATIONS (Theory) (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 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. (a)
Give one example each of a primitive data type and a composite data type.
[2]
(b)
Give one point of difference between unary and binary operators.
[2]
(c)
Differentiate between call by value or pass by value and call by reference or pass by reference.
[2]
(d)
Write a Java expression for √2
[2]
(e)
Name the type of error (syntax, runtime or logical error) in each case given below: (i) Division by a variable that contains a value of zero. (ii) Multiplication operator used when the operation should be division. (iii) Missing semicolon.
[2]
Question 2. (a)
Create a class with one integer instance variable. Initialize the variable using: (i) default constructor. (ii) parameterized constructor.
Complete the code below to create an object of Scanner class: Scanner sc = ______ Scanner ( _____________ );
[2]
(c)
What is an array? Write a statement to declare an integer array of 10 elements.
[2]
(d)
Name the search or sort algorithm that : (i)
Makes several passes through the array, selecting the next smallest item in the array each time and placing it where it belongs in the array. At each stage, compares the sought key value with the key value of the middle element of the array.
[2]
Differentiate between public and private modifiers for members of a class.
[2]
(ii)
(e)
Question 3. (a)
What are the values of x and y when the following statements are executed? int a=63, b=36; boolean x = (a>b) ? true : false ; int y = (a