Which classes in the Java API provide both forms of the format()
method?
format(String formatStr, Object... args) format(java.util.Locale l, String formatStr, Object... args)
Select the four correct answers.
(a), (c), (d), and (f)
The classes java.util.StringBuilder and java.util.Scanner do not provide the format()
method.
The Console class only provides the first form.