web technology Online Quiz - 115
Description: web technology Online Quiz - 115 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Choose the technologies used in view part of MVC architecture
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 of the following are primitive types?
What is the output of following (Assuming written inside main) String s1 = "Amit"; String s2 = "Amit"; String s3 = new String("abcd"); String s4 = new String("abcd"); System.out.println(s1.equals(s2)); System.out.println((s1==s2)); System.out.println(s3.equals(s4)); System.out.println((s3==s4));
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,
While serializing a class whose Base class is serializable, which of the following fields are ignored?