Distributed and Parallel Technologies Flashcards
studay and understand distributed and parallel programming and tech
1
Q
Why functional programming languages for parallelism ?
A
- Data is immutable
- parallelism tasks only share read-only data
- No race conditions.
- no side effects
- functions cannot update global shared state.
- pure functions cannot perform IO
5 . hides the “how ?” question - - handling concurrency
- scheduling
- memory management
2
Q
A