characteristics of a data set classified as big data:
very large volume (toomuchforoneserver), velocityatwhichdataisgenerated, variety of datatypes in the data set
why is functional programming appropriate for parallel computer architectures?
in functional programming, data is immutable so different parts of the program wouldn't affecteachother. Order of execution is less rigidly defined than in other paradigms.
why is big data less compatible with procedural or object oriented paradigms?
because of the largevolumeofdata, multiple servers have to be used, therefore processing is also splitovermultiplemachines. So parallel processing is required, which is morecompatible with functionalprogramming