πŸ“Š Problem Solving and Python Programming
Q. What is the value of the following expression? 2+4.00, 2**4.0
  • (A) (6.0, 16.0)
  • (B) (6.00, 16.00)
  • (C) (6, 16)
  • (D) (6.00, 16.0)
πŸ’¬ Discuss
βœ… Correct Answer: (A) (6.0, 16.0)

Explanation: the result of the expression shown above is (6.0, 16.0). this is because the result is automatically rounded off to one decimal place.


Explanation by: Mr. Dubey
the result of the expression shown above is (6.0, 16.0). this is because the result is automatically rounded off to one decimal place.

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
328
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
87%
Success Rate