subject

HELP PLEASE:
Consider the following method that is intended to test if all the Strings in the ArrayList start with an uppercase letter:

public static boolean capitalized(ArrayList a) {
/* Missing Code */
}

Which of the following could replace /* Missing Code */ so that the method works as intended?

I.

for (String s: a) {
if (s. toUpperCase().charAt(0) != s. charAt(0)) {
return true;
}
}
return false;

II.

for (String s: a) {
if (s. toUpperCase().charAt(0) != s. charAt(0)) {
return false;
}
}
return true;

III.

int flag = 1;
for (String s: a) {
if (s. toUpperCase().charAt(0) != s. charAt(0)) {
flag = 0;
}
}
return (flag == 1);

...possible answers are (I only), (II only), ( II and III), (I, II, and III), or (III only)

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 25.06.2019 00:00
To remove text from a specific location and keep it to use again, you should select
Answers: 1
question
Computers and Technology, 25.06.2019 06:00
If an image has only 4 colors, how many bits are necessary to represent one pixel’s color?
Answers: 1
question
Computers and Technology, 25.06.2019 09:20
The adbusters' image of the gap logo on the silhouette of a head most likely relays the message that: a.the man in the ad needs a hat from the gap b.consumers should be suspicious of gap ads c.gap clothes make you look intelligent d.everyone should have the gap on their minds
Answers: 1
question
Computers and Technology, 25.06.2019 13:00
Ok so im actually just wondering can you change you username
Answers: 2
You know the right answer?
HELP PLEASE:
Consider the following method that is intended to test if all the Strings in the...
Questions
question
Mathematics, 25.08.2021 14:00
question
Computers and Technology, 25.08.2021 14:00
question
Mathematics, 25.08.2021 14:00
question
Mathematics, 25.08.2021 14:00