What is the output of following Python code?Python Coding·FollowDec 15, 2023--ListenShareimport math print(math.floor(-2.8)) print(math.trunc(-2.8)) print(math.ceil(-2.8))Solution and Explanation : https://www.clcoding.com/2023/12/what-is-output-of-following-python-code_14.html