Concept:Convert the given continued fraction into an ordinary fraction by repeated reciprocal and integer part extraction. The integers obtained become the values of a,b,c,d,e in order.Explanation:Start with the given equation: a+b+c+d+e11111=972421.Take reciprocal of both sides: a+b+c+d+e1111=421972.Write 421972 as 2+421130. So a=2.Now b+c+d+e1111=421130. Reciprocal: b+c+d+e111=130421.Write 130421 as 3+13031. So b=3.Then c+d+e111=13031. Reciprocal: c+d+e11=31130=4+316. So c=4.Next d+e11=316. Reciprocal: d+e1=631=5+61. So d=5.Finally e1=61, so e=6.Multiply: a×b×c×d×e=2×3×4×5×6=720.Answer:720 (Option A)