Computers and Technology

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)

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 20:40, cmflores3245
Convert and simplify the following sentences to conjunctive normal form (cnf): (a) (p → (q → r)) → (p → (r → q)) (b) (p ∧ q) → (¬p ↔ q) (c) ((p → q) ∧ ¬q) → ¬p
Answers: 3
image
Computers and Technology, 22.06.2019 20:10, ianmartin6080
Assume that minutes is an int variable whose value is 0 or positive. write an expression whose value is "undercooked" or "soft-boiled" or "medium-boiled" or "hard-boiled" or "overcooked" based on the value of minutes. in particular: if the value of minutes is less than 2 the expression's value is "undercooked"; 2-4 would be a "soft-boiled", 5-7 would be "medium-boiled", 8-11 would be "hard-boiled" and 12 or more would be a "overcooked".
Answers: 1
image
Computers and Technology, 22.06.2019 23:30, bri2008
Which of the following is not a symptom of chronic fatigue syndrome
Answers: 2
image
Computers and Technology, 23.06.2019 14:30, HarryPotter10
Open this link after reading about ana's situation. complete each sentence using the drop-downs. ana would need a minimum of ato work as a translator. according to job outlook information, the number of jobs for translators willin the future.
Answers: 3
Do you know the correct answer?
HELP PLEASE:
Consider the following method that is intended to test if all the Strings in the...

Questions in other subjects:

Konu
Physics, 25.04.2021 01:00
Konu
English, 25.04.2021 01:00
Konu
Mathematics, 25.04.2021 01:00
Konu
Mathematics, 25.04.2021 01:00