Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

What is diff. Between Parallel & Concurrent programming concepts in .Net 4.0/4.5 ? ( with Ex. )

user-image
Question ajoutée par Muhammed Effat Ahmed Afifi , Project Leader [Microsoft Business Unit] , Wipro Arabia Limited
Date de publication: 2013/04/17
Roba Al-Assi
par Roba Al-Assi , Brand and Communications Director , Bayt.com

Concurrent programming is about executing multiple unrelated tasks in a concurrent mode.
What these un-related tasks share are system resources, but they do not share a common problem to solve; meaning, they are logically independent.
This makes concurrent programming extremely difficult and debugging complicated.
Parallel programming is taking a certain task and dividing it into a set of related tasks to be executed concurrently.
This makes Parallel Programming even more difficult and debugging even more complicated.

Mohammed Rizwan Afgani
par Mohammed Rizwan Afgani , Software Engineer, Team Lead , Prosoft e-Solutions (I) Pvt Ltd

Parallel Programming: A parallel program is one that uses a multiplicity of computational hard-ware (e.g.
multiple processor cores) in order to perform computation more quickly.
Different parts of the computation are delegated to different pro-cessors that execute at the same time (in parallel), so that results may be delivered earlier than if the computation had been performed sequentially.
T1 and T2 may be executed simultaneously at the same instance of time.
Concurrent Programming: Is a program-structuring technique in which there are multiple threads of control with distinct responsibilities and purposes, which may run simultaneously or take turns.
It may appear to the user that both things are being run in parallel, even though they're actually being processed in serial.
T1 may be executed and finished before T2.
T2 may be executed and finished before T1.
T1 and T2 may be executed alternatively.

More Questions Like This

Avez-vous besoin d'aide pour créer un CV ayant les mots-clés recherchés par les employeurs?