MCQ Revision of Class IX syllabus for ICSE Computer Application Class-10. These MCQ / Objective Type Questions is based on latest reduced syllabus according 2021-22 session on bifurcated pattern. Main motto of MCQ Type Question is cracking the next upcoming exam of council. Visit official website CISCE for detail information about ICSE Board Class-10 Computer Application .
MCQ Type Questions Revision of Class IX syllabus for ICSE Class-10 Computer Application
Board | ICSE |
Class | 10th (X) |
Subject | Computer Application |
Chapter | Revision of Class IX syllabus |
Syllabus | on bifurcated syllabus (after reduction) |
Session | 2021-22 |
Topic | MCQ / Objective Type Question |
ICSE Class-10 Computer Application MCQ Type Questions of Revision of Class IX syllabus
Question 1: Among the following which method does not have a body.
(a) A class
(b) An interface
(c) An abstract method
(d) None of the above
Answer (c) An abstract method
Question 2: Which language was developed as the first purely object programming language
(a) Java
(b) C++
(c) Small talk
(d) Kotlin
Answer (c) Small talk
Question 3: Among the following, which is not valid class specifier?
(a) Protected
(b) Private
(c) Pointer
(d) Public
Answer (c) Pointer
Question 4: Among the following, which is not an OOP’S concept?
(a) Encapsulation
(b) Exception
(c) Abstraction
(d) Polymorphism
Answer (b) Exception
Question 5: Which among the following is not a Java feature?
(a) Use of pointers
(b) Architecture Neutral
(c) Object-oriented
(d) Dynamic
Answer (a) Use of pointers
Question 6: Which is the minor integer data type?
(a) Byte
(b) short
(c) Long
(d) int
Answer (a) Byte
Question 7: Among the following, which is not a primitive data type?
(a) enum
(b) Byte
(c) Short
(d) Int
Answer (a) enum
Question 8: Which of the statement satisfies the empty loop in Java
(a) It has an empty conditional clause
(b) It has an empty increment clause
(c) It has an empty initialization clause
(d) All of above
Answer (d) All of above
Question 9: Among the following classes a superclass of all other classes is ?
(a) Math
(b) Process
(c) System
(d) Object
Answer (d) Object
Question 10: …………… invented OOPS.
(a) Alan Kay
(b) Dennis Ritchie
(c) Adele Goldberg
(d) Andrea Ferro
Answer (a) Alan Kay
Question 11: Which is odd in given options
(a) Code Reusability
(b) Efficient code
(c) Duplicate /redundant data
(d) Modularity
Answer (c) Duplicate /redundant data
Question 12: Which is odd in given options
(a) Data hiding
(b) Data Binding
(c) Message passing
(d) Platform independent
Answer (d) Platform independent
Question 13: Which is odd in given options
(a) Constructor and Destructor
(b) Inheritance and Polymorphism
(c) Structure and Union
(d) Class and Object
Answer (c) Structure and Union
Question 14: Which is odd in given options
(a) if ()
(b) for()
(c) Continue
(d) break
Answer (a) if ()
Question 15: Which is odd in given options
(a) Integer stream
(b) Short stream
(c) Byte stream
(d) Long stream
Answer (c) Byte stream
Question 16: An OOPS program can contain ……………. no of classes.
(a) Only 999
(b) Only 100
(c) Only 1
(d) Any number
Answer (d) Any number
Question 17: The object cannot be …………
(a) passed by value
(b) passed by copy
(c) passed by function
(d) passed by reference
Answer (c) passed by function
Question 18: – operator decreases the value by …………… number
(a) 4
(b) 1
(c) 2
(d) 3
Answer (b) 1
Question 19: Exit controlled loop is …………..
(a) for
(b) While
(c) Do while
(d) If else
Answer (c) Do while
Question 20: Evaluate the following expression, if x=3, y=5, and z=10:
++z + y – y + z + x++
(a) 23
(b) 25
(c) 20
(d) 24
Answer (b) 25
Question 21: The result of the expression of 8|8.
(a) 64
(b) 1
(c) 8
(d) 16
Answer (c) 8
Question 22: What will be the value of expression a/b? If a = 14 and b 4, both a, b are type int
(a) 3
(b) 2
(c) 4
(d) 1
Answer (a) 3
Question 23: If a user wants to execute a loop 10 times, which of the following statement will be used
(a) for(i=6;i<=26;i=i+2)
(b) for(i=3;i<=30;i=i+3)
(c) for(i=0;i<10;i=i++)
(d) All of the above
Answer (b) for(i=3;i<=30;i=i+3)
Question 24: The Java program use ………… to find and fix bugs
(a) JDB
(b) JRE
(c) JDK
(d) jVM
Answer (a) JDB
Question 25: Byte Data Type range is ………………
(a)-128 to 128
(b)-127 to 128
(c)-128 to 127
(d)-127 to 127
Answer (c)-128 to 127
Question 26: Size of integer in Java Programming is ………………
(a) 8 Bytes
(b) 2 Bytes
(c) 1 Bytes
(d) 4 Bytes
Answer (d) 4 Bytes
Question 27: To access the instance variables and methods of class objects in java …………… is used
(a) dot operator(.)
(b) instance of
(c) bitwise
(d) conditional
Answer (a) dot operator(.)
Question 28: Give the value of the following expression 6-2+10%4+7
(a) 13
(b) 12
(c) 19
(d) 11
Answer (a) 13
Question 29: What will be the result of the expression J % k when j=10 and k=3
(a) 6
(b) 1
(c) 0
(d) 3
Answer (b) 1
Question 30: What will be the result of the expression -14%-3
(a) 2.5
(b)-2
(c) -4
(d) -6
Answer (b)-2
Question 31: Evaluate the following Java expression, if x=3, y=5, and z=10:
++z + y – y + z + x++
(a) 21
(b) 28
(c) 24
(d) 25
Answer (d) 25
Question 32: What is the type and value of the following expression?
-4 + (1/2) + 2*-3 + 5.0
(a) int -4
(b) double -4.7
(c) int -5.0
(d) double -5.0
Answer (d) double -5.0
Question 33: Math. ceil(46.6) output is?
(a) 45.5
(b) 48.6
(c) 46.0
(d) 47.0
Answer (d) 47.0
Question 34: Math.floor(46.6) output is ?
(a) 46.0
(b)-46.0
(c) 47.0
(d) 47.5
Answer (a) 46.0
Question 35:
Class abc
{
Public static void main (string [ ] args)
{
Int g = 5
System.out.println (++g*8);
}
}
Output of the above will be
(a) 41
(b) 50
(c) 48
(d) 42
Answer (c) 48
Question 36: what will be tha value of x after executing the following statement x=(x>y) ? (y + x) : (y-x);
If int x=15; y=20
(a) 55
(b) 36
(c) 28
(d) 35
Answer (d) 35
Question 37:
Class A
{
Public static void main (string [ ] args)
{
Int x = 11 & 9:
Int y = x ^ 3;
System.out.println (y | 12);
}
}
Output of the above will be
(a) 14
(b) 16
(c) 0
(d) 6
Answer (a) 14
–: End of Computer Applications :-
-: also visit :-
- MCQ Type Questions for ICSE Class-10
- ICSE Class-10 Text book Solutions, Notes , Syllabus, Paper, Notes
Please share with your ICSE friends if it is helpful
Thanks