JAMIA 2026 Computer PYQ — Which of the following MS Excel formulas displays the day name in… | Mathem Solvex | Mathem Solvex
Tip:A–D to answerE for explanationV for videoS to reveal answer
JAMIA 2026 — Computer PYQ
JAMIA | Computer | 2026
Which of the following MS Excel formulas displays the day name in short form (e.g., Mon, Tue, Thu) for the current day?
Choose the correct answer:
A.
= TEXT(TODAY(),"dddd")
B.
= TEXT(TODAY(),"ddd")
(Correct Answer)
C.
= DAY(TODAY(),"dddd")
D.
= DAY(TODAY(),"ddd")
Correct Answer:
= TEXT(TODAY(),"ddd")
Explanation
Correct Answer:(b) = TEXT(TODAY(),"ddd")
Detailed Explanation
The TODAY() Function: This built-in function returns the current serial system date value when it evaluates.
The TEXT() Function: The TEXT function allows you to change the way a number or date appears by applying specific formatting codes to it. Its basic syntax is:
=TEXT(value, format_text)
Custom Day Formatting Codes: When applied to a valid date value, Excel handles the day formatting argument based on the number of letters provided in the format string:
"d"→ Displays the day as a number without a leading zero (1 to 31).
"dd"→ Displays the day as a number with a leading zero (01 to 31).
"ddd"→ Displays the name of the day in an abbreviated short form (e.g., Mon, Tue, Wed).
"dddd"→ Displays the complete, full name of the day (e.g., Monday, Tuesday, Wednesday).
Therefore, combining the current system date with the three-digit day format code yields exactly the requested short-form string representation:
=TEXT(TODAY(), "ddd")
Explanation
Correct Answer:(b) = TEXT(TODAY(),"ddd")
Detailed Explanation
The TODAY() Function: This built-in function returns the current serial system date value when it evaluates.
The TEXT() Function: The TEXT function allows you to change the way a number or date appears by applying specific formatting codes to it. Its basic syntax is:
=TEXT(value, format_text)
Custom Day Formatting Codes: When applied to a valid date value, Excel handles the day formatting argument based on the number of letters provided in the format string:
"d"→ Displays the day as a number without a leading zero (1 to 31).
"dd"→ Displays the day as a number with a leading zero (01 to 31).
"ddd"→ Displays the name of the day in an abbreviated short form (e.g., Mon, Tue, Wed).
"dddd"→ Displays the complete, full name of the day (e.g., Monday, Tuesday, Wednesday).
Therefore, combining the current system date with the three-digit day format code yields exactly the requested short-form string representation: