
Class X _Computer Application
Quiz by Tamil selvi
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
- Q1
a.
0
1
num
0.0
30s - Q2
b.
3
2
1
0
30s - Q3
c.
n>1
n!=0
n<1
n<0
30s - Q4
d.
3*3*3
digit
digitcube
30s - Q5
e.
1
n
10
30s - Q6
f.
num
numOriginal
digitcube
30s - Q7
Which one of the following does not execute even once?
for(k=10; k>=1;k--);
for(k=55; k>=50;k--);
for(k = 1; k>=100;k++);
30s - Q8
What are the two decision control statements in java?
if and switch
ternary and logical
for and while
30s - Q9
An if statement within another if statement is termed as
Nested
Nested IF
Nester for
Nested while
30s - Q10
Repetitive execution of set of statements is termed as __________
Assignment
Decision making
Looping
30s - Q11
h.The above program depicts which feature of Object Oriented Programming ?
Data Abstracation
Polymorphism
Inheritance
30s - Q12
len, wd, ht in the above program are example of ?
Actual Parameters
Formal Parameters
Informal Parameters
30s - Q13
Which Overloading/ Overriding is demonstrated from the above program ?
Method overriding
Constructor Overloading
MEthod Overloading
30s - Q14
Which of the following is Exit Controlled Loop ?
if
while
do while
for
30s - Q15
Which of the following statement causes complete termination of the loop ?
System.exit
terminate
break
continue
30s