Tagged: Linux

Important Operating System Interview Questions

Important Operating System Interview Questions

What is MUTEX ? ANS: Mutex is a program object that allows multiple program threads to share the same resource, such as file access, but not simultaneously. When a program is started a mutex is created with a unique name. After this stage, any thread that needs the resource must lock...

Nix Application Programming

Nix Application Programming

Explain the difference between a static library and a dynamic library? – Static library is linked into the executable, while a dynamic library (or shared object) is loaded while the executable has started. How do you create a static library? – If you have a collection of object (.o) files, you...