Multiple choice technology programming languages The printf format "%6.2f" displays a number At least six columns wide in total, with two figures after the decimal place Exactly six digits before the decimal place, and two digits after At least six digits before the decimal place, and two digits after Exactly six columns wide in total, with two figures after the decimal place Reveal answer Fill a bubble to check yourself A Correct answer Explanation In printf-style formatting, the format specifier %6.2f specifies a minimum field width of 6 characters in total (padding with spaces if necessary) and exactly 2 digits after the decimal point.