The WEEKDAY function with return_type 1 counts Sunday as 1 and Saturday as 7. So =WEEKDAY(A1,1) returns 5 for 2024-07-04 (Thursday).
=WORKDAY(A1,10) adds 10 working days to the date in A1, skipping Saturdays and Sundays.
Option A adds holidays but none are specified in the prompt.
=TEXT(A1, "dddd") converts the date in A1 to its full weekday name.
WEEKDAY returns a number, WORKDAY returns a date, and DAY returns the day number of the month.
=WORKDAY(A1,1,B1:B3) adds one working day to A1, skipping weekends and the specified holidays.
Option C uses WORKDAY.INTL with a weekend pattern but the pattern "0000011" means Friday and Saturday are weekends, which is not standard.
=NETWORKDAYS(A1,B1,C1:C3) counts weekdays between the two dates, skipping weekends and holidays.
Other options either misuse functions or do not count days properly.