Q21
Multiple choice
Given:
11. String base = "44";
12. for(int ccnt=0; ccnt < 5; ccnt++) {
13. try {
14. String temp = base + Integer.toString(ccnt);
15. PushRegistry.registerConnection
16. ("datagram://:" + temp, MIDletName, "*");
17. break;
18. } catch (IOException x) {
19. continue;
20. }
21. }
Which two are true? (Choose two.)
Select all that apply.