The formula =A1>AVERAGE(A:A) correctly compares each cell in column A to the average of all values in column A. This formula is used in conditional formatting to highlight cells greater than the average.
Option C calculates the average manually but is equivalent to AVERAGE, so it would also work logically but is less direct. However, in Google Sheets conditional formatting, AVERAGE is preferred for clarity.
Options A and C compare to max and median, which are different statistics.
Option D uses WEEKDAY(B1, 2) which numbers Monday as 1 and Sunday as 7. Days greater than 5 are Saturday (6) and Sunday (7), so this formula correctly identifies weekends.
Option D uses default WEEKDAY numbering (Sunday=1, Saturday=7), and would work, but A is more concise.
Option D only checks for Friday (6) incorrectly and Option D is invalid because WEEKDAY never returns 0.
Option A converts the entire column C to lowercase using ARRAYFORMULA(LOWER(C:C)) and compares it to the lowercase of the current cell. This way, duplicates ignoring case are counted correctly.
Option A is case sensitive, so it misses duplicates with different cases.
Option A compares lowercase of current cell to original column, which is case sensitive.
Option A uses EXACT which is case sensitive and returns an array, but COUNTIF does not work with arrays in that way.
Option A uses QUARTILE(D:D, 1) for Q1 and QUARTILE(D:D, 3) for Q3, then calculates IQR and checks if the value is outside the 1.5*IQR range. This matches the standard outlier definition.
Option A uses median and range, which is incorrect for IQR.
Option A uses quartile 2 (median) and quartile 4 (max), which is incorrect.
Option A uses PERCENTILE which is equivalent but QUARTILE is more common for this rule.
Option B uses =SUM($E2:$F2)>100 which sums columns E and F for the current row (row 2 initially) and compares to 100. The dollar signs fix the columns but allow the row number to change as the rule applies to other rows.
Option B adds the two cells but does not use SUM; it works but is less flexible.
Option B uses absolute references for row 2, so it always checks the same row, not dynamic.
Option B sums without fixing columns, which can cause errors if the rule applies to other columns.