Which of the following statements about functional programming languages is incorrect?A) In pure functional programming, there are no assignments.B) In pure functional programming, there are no loops.C) In pure functional programming, loops are replaced by recursive calls.D) The value of a function depends on the order of evaluation of its parameters.

Respuesta :

The answer is (C)
In pure functional programming loops are replaced by recursive calls
Lanuel

The statement concerning functional programming languages that is incorrect is: D. The value of a function depends on the order of evaluation of its parameters.

A functional programming language can be defined as a type of language in which software programs are developed (constructed) by creating and applying pure mathematical functions while using conditional expressions and recursion to perform various computations.

In Computer programming, some characteristics of a functional programming language include the following:

  • It is devoid of assignments.
  • It doesn't use loops.
  • Loops are generally replaced by recursive calls.

In conclusion, the value of a function is independent of the order of evaluation of its parameters in a functional programming language.

Read more on functional programming here: https://brainly.com/question/14260799