The statement s1.equalsIgnoreCase(s4) is equivalent to which of the following?
a. s1.regionMatches(true, 0, s4, 0, s4.length());
b. s1.regionMatches(0, s4, 0, s4.length());
c. s1.regionMatches(0, s4, 0, s4.length);
d. s1.regionMatches(true, s4, 0, s4.length);
a. s1.regionMatches(true, 0, s4, 0, s4.length());
You might also like to view...
Answer the following statements true (T) or false (F)
1. Each object of a class has its own copy of all the instance variables of the class. 2. A Shared variable represents method-wide information. 3. Constructors that are Shared can be defined to initialize only Shared members. 4. A program contains a copy of a Shared variable for each object that is instantiated. 5. Variables that are Shared have class scope.
You should always make sure that you have proper permission to use an image before you add it to your site.
Answer the following statement true (T) or false (F)