Study the scenario and complete the question(s) that follow: You are provided with the following functions Min = CalcMin (x1, x2, x3) The function must determine and return the minimum of the 3 variables. Area = AreaofTriangle (base, height) 3.1 Write the complete function Min = CalcMin(x1, x2, x3) in pseudocode to calculate and return the area of a triangle using the parameters​

Respuesta :

The function programs are illustrations of python functions; Functions are collections of named code blocks that are executed when evoked.

The CalcMin(x1, x2, x3) function

The function written in Python is as follows:

def CalcMin(x1, x2, x3):

   if x1 < x2 and x1 < x2:

       return x1

   elif x2 < x1 and x2 < x3:

       return x2

   return x3

The AreaofTriangle (base, height) function

The function written in Python is as follows:

def AreaofTriangle (base, height):

   Area = 0.5 * base * height

   return Area

Read more about functions at:

https://brainly.com/question/15745784

#SPJ1