exam questions

Exam 1z0-819 All Questions

View all questions & answers for the 1z0-819 exam

Exam 1z0-819 topic 1 question 131 discussion

Actual exam question from Oracle's 1z0-819
Question #: 131
Topic #: 1
[All 1z0-819 Questions]

Given:



What is the result?

  • A. a b c followed by an exception
  • B. a b c null
  • C. a b c
  • D. a b followed by an exception
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
d7bb0b2
7 months ago
Selected Answer: B
var map = new HashMap<>(); String k[] = {"a", "b", null, "c"}; String v[] = {"1", "2", "3", null}; for (int i = 0; i < k.length; i++) { map.put(k[i], v[i]); System.out.println(map.get(k[i])); } // 1,2 ,3 , null hasmap accept null as value and key Treeset (add method not put), TreeMap, Hashtable CopyOnWriteArraySet|List ConcurrentHashMap, ConcurrentSkipListSet y ConcurrentSkipListMap no acept null
upvoted 1 times
...
Omnisumem
10 months ago
Selected Answer: B
Tested: B.
upvoted 2 times
...
[Removed]
11 months, 1 week ago
Selected Answer: B
B is correct. HashMap can take both null values and keys
upvoted 1 times
...
Stavok
1 year ago
Selected Answer: B
a b c null
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago