Search code examples
distributed-computing

Difference between centralized and distributed computing


Can anyone tell me the differences between centralized and distributed computing?


Solution

  • Centralized: all calculations are done on one particular computer (system). Example: you have a dedicated server for calculating data.

    Distributed: the calculation is distributed to multiple computers. Example: when you have a large amount of data then you can divide it and send each part to particular computers which will make the calculations for their part.