Final answer:
The String format method does not display the formatted string on the screen; it only creates it. To display it, a print function is required.
Step-by-step explanation:
The statement is false. The String format method in programming does not display the formatted string on the screen. Instead, it constructs a new formatted string based on the given format string and arguments but does not automatically print it. To display the formatted string, you would need to use a separate command, such as print in Python or System.out.println in Java, that actually outputs to the screen.