max is a function that expects two integer parameters and returns the value of the larger one. Two variables, population1 and population2, have already been defined and associated with integer values. Write an expression (not a statement!) whose value is the larger of population1 and population2 by calling max.

Respuesta :

Answer:

The expression is given below:

max(population1,population1)// calling the function max

Explanation:

Following are the description of expression

  • As mention in the question population1 and population2  are the two integer parameter or we can say that they are the two variable.
  • To calling any function following are the syntax

        functionname(argument list).

  • In this as already mention max is function name and  population1 and population2 are the integer value so we have write max(population1,population1)

ACCESS MORE