JavaBeat
Search JavaBeat

Certification Kits
SCJP 1.5 Exam Questions
SCJP 1.6 Exam Questions
SCWCD 5.0 Exam Questions
SCBCD 5.0 Exam Questions
SCJP 1.6 Links
SCJP 1.6 Home
What is new?
SCJP Books
Objectives
Mock Exams
NavigableSet
NavigableMap
GarbageCollection
Console
Finalize Method
Forums
SCJP Exam Voucher
Certification Links
SCJP 1.4
SCJP 1.5
SCJP 1.6
SCWCD 1.4
SCWCD 5.0
SCBCD 5.0
SCEA
SCEA 5.0
JavaBeat
Home
Articles
Tips
Code
QnA
Forums
400 Mock Questions on SCJP 1.6 - JUST Rs.300 or 10 USD
Send us mail to sales@javabeat.net
more details
Do you have paypal account? Click Here to pay now and get the questions.

SCJP 1.6 Mock Exams - NavigableMap (10 Questions)

2) What will be the output of the following program?


package navmap;

import java.util.HashMap;
import java.util.NavigableMap;
import java.util.TreeMap;

public class Ques01 {

	public static void main(String[] args) {
		
		NavigableMap<String, String> colors = new HashMap<String, String>();
		
		colors.put("RED", "Red");
		colors.put("BLUE", "Blue");
		System.out.println(colors.get("BLUE"));
	}
}
  1. The program will output 'null'.
  2. The program will return 'Blue'.
  3. The program won't compile because of compilation errors.
  4. The program will throw a run-time exception.

Get more questions on NavigableMap

Answer

2) c.

The program won't compile since the class HashMap doesn't implement the NavigableMap interface.

400 Mock Questions on SCJP 1.6 - JUST Rs.300 or 10 USD
Send us mail to sales@javabeat.net
more details

JavaBeat Website (2004-2008), India
javabeat | about us | useful resources
Copyright (2004 - 2008), JavaBeat