Which of these is a disadvantage of using a functional language?(1 point)ResponsesPrograms are hard to write.Programs are hard to write.Errors are hard to find.Errors are hard to find.It’s more difficult to execute many operations at the same time.It’s more difficult to execute many operations at the same time.Functions can be difficult to understand.Functions can be difficult to understand.

1 answer

The disadvantage of using a functional language from the options provided is: "It’s more difficult to execute many operations at the same time."

Functional programming can pose challenges in terms of parallelism and concurrency, especially compared to imperative languages, where mutable state and shared memory can make it easier to execute multiple operations simultaneously.