adplus-dvertising
frame-decoration

Question

What is function-level working-set tuning?

a.

The process of gathering the most frequently used code areas in the beginning of the module

b.

The process of delaying the loading of rarely used code

c.

The process of reorganizing the order of functions in the binary according to the most frequently executed functions

d.

The process of organizing the code at the function level

Posted under Reverse Engineering

Answer: (c).The process of reorganizing the order of functions in the binary according to the most frequently executed functions Explanation:The conventional form of working-set tuning is based on a function-level reorganization. A program is launched, and the working-set tuner program observes which functions are executed most frequently. The program then reorganizes the order of functions in the binary according to that information, so that the most popular functions are moved to the beginning of the module, and the less popular functions are placed near the end.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is function-level working-set tuning?