Computer Science, asked by utsavtiwari32, 3 months ago

observe the given Excel sheet and write the formula to calculate

a.percentage
b.grade
c.power of (56)^5​

Attachments:

Answers

Answered by Smileygirl123
0

Answer:

a. Percentage:

In cell G2-

=Sum(C2:E2)

Similarly,

In cell G3-

=Sum(C3:E3)

In cell G4-

=Sum(C4:E4)

b. Grade:

In cell H2-

=if(G2>=80,"A",if(G2>=50,"B","C"))

Similarly,

In cell H3-

=if(G3>=80,"A",if(G3>=50,"B","C"))

In cell H4-

=if(G4>=80,"A",if(G4>=50,"B","C"))

c. Power of (56)^5:

=Power(56,5)

Hopes it will help you.

Please mark as brainliest.

Similar questions