Which of these is a disadvantage of using a functional language? (1 point) Programs are hard to write Errors are hard to find It's more difficult to execute many operations at the same time 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 languages often emphasize immutability and statelessness, which can complicate concurrent or parallel execution compared to imperative languages that provide more direct control over state and concurrency. While this is not always the case, it can be a challenge in certain scenarios.