What is the difference between static link library and
dynamic link library?

Answers were Sorted based on User's Feedback



What is the difference between static link library and dynamic link library?..

Answer / mat

Static libraries are linked at compile time. Dynamic
libraries are linked at runtime

Is This Answer Correct ?    52 Yes 0 No

What is the difference between static link library and dynamic link library?..

Answer / vivek kumar kanojia

Above ans is correct and one more thing..
static library is faster than dynamic library

Is This Answer Correct ?    31 Yes 6 No

What is the difference between static link library and dynamic link library?..

Answer / kiran

above answer is correct and..
the excutable exe size will be larger when we build exe
with static library compared to dynamic library

Is This Answer Correct ?    18 Yes 3 No

What is the difference between static link library and dynamic link library?..

Answer / achal ubbott

Above answers are correct. In case of Dynamic Library your
executable will look up for the code at run time. E.g. when
running some exe it looks for help from some .dll files
provided by windows operating system. So we call this
dynamic linking.

Is This Answer Correct ?    11 Yes 1 No

What is the difference between static link library and dynamic link library?..

Answer / dinesh

The static linked library causes the corresponding information from libraries to be included in the executable DLL on the other hand inserts virtual address of memory. Thus the size of static linked file is larger than a static linked file. If we use dynamic linking the updates in library will also be effect the behavior of the file while not in static linking. Due to this reason dll is better but it can also sometimes make the program faulty due to library update.

Is This Answer Correct ?    9 Yes 3 No

What is the difference between static link library and dynamic link library?..

Answer / pushpalatha

Dynamic linking differs from static linking in that it
allows an executable module (either a .dll or .exe file) to
include only the information needed at run time to locate
the executable code for a DLL function. In static linking,
the linker gets all of the referenced functions from the
static link library and places it with your code into your
executable.

Using dynamic linking instead of static linking offers
several advantages. DLLs save memory, reduce swapping, save
disk space, upgrade easier, provide after-market support,
provide a mechanism to extend the MFC library classes,
support multilanguage programs, and ease the creation of
international versions.

Is This Answer Correct ?    1 Yes 0 No

What is the difference between static link library and dynamic link library?..

Answer / sameer patel

Above answer is correct and also say that the dynamic library is executable file and shared the library for functions.
Where static library execute module and provide information needed of run time....

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C++ General Interview Questions

How does c++ structure differ from c++ class?

0 Answers  


What is the difference between "overloading" and "overridding"?

3 Answers  


Is overriding possible in c++?

0 Answers  


What is Memory Alignment?

2 Answers   TCS,


What is the extension of c++?

0 Answers  






Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?

0 Answers  


Which programming language is best to learn first?

0 Answers  


What are the different data types present in C++?

1 Answers  


What are the types of STL containers?

4 Answers  


How does throwing and catching exceptions differ from using setjmp and longjmp?

1 Answers  


Do we have to use initialization list in spite of the assignment in constructors?

0 Answers  


Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?

0 Answers  


Categories