which is the correct formula that sums c1 thr...

which is the correct formula that sums c1 through c4 in cell b5? 2 of 48 questions remaining a b c 1 4 4 2 3 2 3 13 21 4 7 3 5? a =sum(c1,c4) b =sum(c1:c4) c =sum(a1:a4) d =sum(a1,a4)

Answer

# Explanation: ## Step1: Understand SUM function The SUM function in spreadsheet software sums up a range of cells. The range is specified as start - cell:end - cell for a continuous range. ## Step2: Identify correct range We want to sum cells C1 through C4. In spreadsheet notation, this range is written as C1:C4. # Answer: B. =SUM(C1:C4)