Syvum Home Page

Home > Quiz Games > Java Programming >

Java Programming : Arrays and java.lang.* : Multiple Choice


Questions about arrays and classes in the java.lang package.

Formats Info Page Worksheet / Test Paper Quiz Review
Multiple choice

Your Performance  

1.

Which of the following are the wrapper classes?
(A) Random
(B) Byte
(C) Vector
(D) Integer
(E) Short
(F) Double
(G) String

  (B), (D) & (F)

  (B), (D), (E) & (F)

  (D), (E) & (F)

  (B), (D) & (E)

  (A), (B), (D), (E) & (F)

  Half-n-half Clue
 

2.

Which of the following contain error?
(A) int x[] = int[10];
(B) int[] y = new int[5];
(C) float d[] =

  (D), (E) & (F)

  (A), (D) & (F)

  (A), (E) & (F)

  (A), (B), (D), (E) & (F)

  (A), (D) & (E)

  Half-n-half Clue
 

3.

Given the code
String s = new String("abc");
Which of the following calls are valid?
(A) s.trim()
(B) s.replace('a', 'A')
(C) s.substring(3)
(D) s.toUppercase()
(E) s.setCharAt(1,'A')
(F) s.append("xyz")

  (A), (C), (D) & (E)

  (A), (B) & (C)

  (A), (B), (C) & (D)

  (D) & (E)

  (C), (D) & (E)

  Half-n-half Clue
 

4.

Which of the following methods belong to the String class?

  equals()

  All of these

  length()

  substring()

  compareTo()

  None of these

  Half-n-half Clue
 

5.

The methods wait() and notify() are defined in

  java.lang.ThreadGroup

  java.lang.Runnable

  java.lang.Thread

  java.lang.Object

  java.lang.String

  Half-n-half Clue
 

6.

Given the code
String s1 = "yes";
String s2 = "yes";
String s3 = new String(s1);

Which of the following would equate to true?
(A) s1 == s2
(B) s1 = s2
(C) s3 == s1
(D) s1.equals(s2)
(E) s3.equals(s1)

  (D) & (E)

  (A), (D) & (E)

  (A), (C) & (E)

  (C), (D) & (E)

  (A), (B) & (C)

  Half-n-half Clue
 

7.

Given the following code:
class Base { int x = 10; }
class Derived extends Base
{ int x = 20; }

Base b = new Base();
Derived d = new Derived ( );
Base bd = new Derived();
The statement
System.out.println(b.x + " " + d.x + " " + bd.x);
will produce the output

  10 20 20

  10 20 10

  20 20 10

  20 10 20

  Half-n-half Clue
 


 
12 more pages in Java Programming


Contact Info © 1999-2025 Syvum Technologies Inc. Privacy Policy Disclaimer and Copyright
Previous
-
Next
-