- (a)Desktop, Mainframe
- (b)desktop, Mainframe
- (c)Computer, Mainframe
- (d)Computer, desktop
Class as the Basis of All Computation
Appeared in 9 of the 11 available papers.
Appears in most years
Average per paper it appears in · 108 marks in total
50% of this chapter's 20 questions
6 questions carry a figure — practise drawing them
Question-type distribution
- MCQ10
- Program6
- Difference1
- Short answer1
- Definition1
- Reasoning1
Most frequent topics
Showing 20 of 20 matching questions (108 marks).
20 questions
Choose the correct answers to the questions from the given options. (Do not copy the questions, write only the correct answers.)

Choose the correct answers to the questions from the given options. (Do not copy the questions, write only the correct answers.)
- (a)only 1
- (b)1 and 3
- (c)only 2
- (d)only 4

- (a)Game is an object of cricket class
- (b)New keyword creates object Game
- (c)Game is a class and cricket is an object
- (d)Game and cricket are objects
Choose the correct answers to the questions from the given options. (Do not copy the questions, write only the correct answers.)
- (a)Polygon is the object and the pictures are classes
- (b)Both polygon and the pictures are classes
- (c)Polygon is the class and the pictures are objects
- (d)Both polygon and the pictures are objects

- (a)Fruit Mango = new fruit();
- (b)fruit mango = new fruit();
- (c)Mango fruit = new Mango();
- (d)fruit mango = new mango();

Choose the correct answer:
- (a)class
- (b)object
- (c)package
- (d)method
Fill in the blanks with the correct options:
- (a)create
- (b)new
- (c)New
- (d)NEW
Choose the odd one:
- (a)Robust
- (b)Platform Independent
- (c)Inheritance
- (d)Multithreading
Given below is a class with the following specifications: class name : Number void Display(int n) - To extract and print each digit of the given number, from the last digit to the first digit, on separate lines. Example: n = 674 Output: 4 / 7 / 6 void Display() - To print numbers from 0.5 to 5.0 with an update of 0.5. Fill in the blanks of the given program with appropriate statements: class (i) __________ { void Display(int n) { while( (ii) __________ ) { int rem = (iii) __________ System.out.println(rem); n = (iv) __________ } } void Display() { for( (v) __________ ; x <= (vi) __________ ; x += 0.5) System.out.println(x); } }
- (a)Number
- (b)number
- (c)NUMBER
- (d)NUM
A school is giving away merit certificates for the students who have scored 90 percentage and above in class 10. The following program is based on the specification given below. Fill in the blanks with appropriate Java statements. class name : Student Member variables: String name, double per, String cer Member methods: void input(), void merit(), void display(), void main() import java.(i) __________ .*; class Student { String name; double per; String cer; void input() { Scanner obj = new Scanner(System.in); System.out.println("Enter name, Percentage"); name = obj.next(); per = (ii) __________ } void merit() { if( (iii) __________ ) cer = "AWARDED"; else cer = (iv) __________ } void (v) __________ { System.out.println(name); System.out.println(per); System.out.println(cer); } void main() { Student s = new (vi) __________ s.input(); s.merit(); s.display(); } }
- (a)Student();
- (b)STUDENT()
- (c)student()
- (d)Student()

