
Computer Application Quiz no 3 (26/11/2021)
Quiz by Tamil selvi
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Analyse the following program segment and determine how many times the loop will be executed. What will be the value of p at the end of execution of this program segment?
int p=200;
while(true) {
if(p<100)
break;
p=p–20; }
Give the output of the following expression "a+=a++ + ++a + --a+ a--" when a=7;
What is the value of y after the execution?
y+=++y + y-- + --y; when int y=8
Choose odd man out
Choose the odd man out
Choose the odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
Choose odd man out
What will be the output of the following expression : int x=5; X+=x++ * ++ x/2 +x%2; System.out.println("x:"+x);
Memory size in bytes of float and int respectively
Which operator access instance members of an object or class member of class?
A class that inherits properties from its Base Class is known as ________
Fill in the blanks marked ?1? to ?5? in the following program:
Fill in the blank ?1?

Fill in the blank ?2?

Fill in the blank ?3?

Fill in the blank ?4?

Fill in the blank ?5?

int a=1 , b= 10; for(int i= 1; i<=10;i++) a++; --b ; System.out.println(a+"and "+b);
The two types of Java programs are
In Java programming language, source code is converted to
The result of 2% 12 is