web technology Online Quiz - 120
Description: web technology Online Quiz - 120 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
XML is Case-Sensitive Language
Which collection class(es) allows you to grow or shrink its size and provides indexed access to its elements, but whose methods are not synchronized? (Choose all that apply.)
Which is true? (Choose all that apply.)
Given: 3. class A { } 4. class B extends A { } 5. public class ComingThru { 6. static String s = "-"; 7. public static void main(String[] args) { 8. A[] aa = new A[2]; 9. B[] ba = new B[2]; 10. sifter(aa); 11. sifter(ba); 12. sifter(7); 13. System.out.println(s); 14. } 15. static void sifter(A[]... a2) { s += "1"; } 16. static void sifter(B[]... b1) { s += "2"; } 17. static void sifter(B[] b1) { s += "3"; } 18. static void sifter(Object o) { s += "4"; } 19. } What is the result?
Given: 3. public class TestDays { 4. public enum Days { MON, TUE, WED }; 5. public static void main(String[] args) { 6. for(Days d : Days.values() ) 7. ; 8. Days [] d2 = Days.values(); 9. System.out.println(d2[2]); 10. } 11. } What is the result? (Choose all that apply.)
Given the proper import statement(s), and 13. PriorityQueue pq = new PriorityQueue(); 14. pq.add("2"); 15. pq.add("4"); 16. System.out.print(pq.peek() + " "); 17. pq.offer("1"); 18. pq.add("3"); 19. pq.remove("1"); 20. System.out.print(pq.poll() + " "); 21. if(pq.remove("2")) System.out.print(pq.poll() + " "); 22. System.out.println(pq.poll() + " " + pq.peek()); What is the result?
What is output to the web page on the second access to the same instance of the following JSP? (Choose one.) Chapter 6 Question 2
Chapter 6 Question 2
In the UML notation a class can be represented by
In the UML notation, an object can be represented by
Inheritance relationships are represented in the UML notation by:
Mandatory Method(s) to be defined in servlets
Which one of the following folder is mandatory to be defined to use the ps: custom tags
An sequence diagram is