60:00
0/30 Attempted
Your Progress
Attempted 0
Correct 0
Incorrect 0
Skipped 0
Score 0
Marks 0

Computer Programming MCQs — Test 154

Page 1 of 3

Review Skipped Questions

0
Question 1
The following program: public class Test{ static boolean is OK; public static void main(String args[]){System.out.print(is OK); } } ?
Question 2
Which of the following statements about arrays is syntactically wrong ?
Question 3
The class java.sql.Timestamp is associated with _____________?
Question 4
Super is the predefined_______________?
Question 5
Which keyword is used while using interface________________?
Question 6
The smallest integer type is _____________ and its size is____________ bits?
Question 7
Which metrhods are utilized to control the access to an object in multi threaded programming ?
Question 8
If method have same name as class name and method don’t have any return type then it is known as______________?
Question 9
Process of creating exact copy of the existing object is called_______________?
Question 10
What will the output of the following program? public class Test{ public static void main(String args[]){float f = (1 / 4) * 10; int i = Math.round(f); System.out.println(i); } } ?