Which classes in the Java API provide both forms of the printf()
method?
printf(String formatStr, Object... args) printf(java.util.Locale l, String formatStr, Object... args)
Select the two correct answers.
(c) and (d)
Only the classes java.util.PrintStream and java.util.PrintWriter provide the printf()
method.
The Console class only provides the first form.