Software Engineering - Fundamentals
Consider this code snippet applying the KISS principle:
What will be the output?
def calculate_area(radius):
return 3.14 * radius * radius
area = calculate_area(5)
print(area)What will be the output?
