web technology Online Quiz - 115
Description: web technology Online Quiz - 115 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Which of the following are primitive types?
Choose the technologies used in view part of MVC architecture
Controller in PS Framework is
Which one does not extend java.lang.Number
Which statement(s) are true? (Choose all that apply.)
Given: ClassA has a ClassD Methods in ClassA use public methods in ClassB Methods in ClassC use public methods in ClassA Methods in ClassA use public variables in ClassB Which is most likely true? (Choose the most likely.)
Which is true? (Choose all that apply.)
Given: 3. public class Wind { 4. public static void main(String[] args) { 5. foreach: 6. for(int j=0; j<5; j++) { 7. for(int k=0; k< 3; k++) { 8. System.out.print(" " + j); 9. if(j==3 && k==1) break foreach; 10. if(j==0 || j==2) break; 11. } 12. } 13. } 14. } 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.)
Which of the following are primitive types?
Which one does not extend java.lang.Number
If the method to be overridden has access type protected, choose access types among the following that a subclass can have,