AnkurGMAT20
Researcher: When writing code to perform a set of computations in a single sequential process, best practices dictate the minimization of redundant computations performed by the computer by using clever tricks to use the results of previous computations still in memory rather than starting each computation anew. In good multiprocess code, on the other hand, redundant computations are often performed in the interest of reducing the communication of results between processes. This allows the processes to complete the whole set of computations more quickly. In summary, good multiprocess coding deemphasizes the
1 in favor of emphasizing the
2.
There are two types of computation being spoken about.
single sequential process: minimisation of redundant computations
good multiprocess code: redundant computations are often performed in the interest of reducing the communication of results between processes. This allows the processes to complete the whole set of computations more quickly.
In summary, good multiprocess coding deemphasizes the
1 in favor of emphasizing the
2So we are looking at
multi process coding. What it favours will come in 2 and what is sacrificed will come in 1.
The line ‘ This allows the processes to complete the whole set of
computations more quickly. ‘ gives the number 2 blank.
Redundant computations are done, so
minimisation of redundant computations is sacrificed for minimisation in time.We can now choose the option A and B accordingly.
Posted from my mobile device