What is the difference between static link library and
dynamic link library?
Answer Posted / mat
Static libraries are linked at compile time. Dynamic
libraries are linked at runtime
| Is This Answer Correct ? | 52 Yes | 0 No |
Post New Answer View All Answers
Can you sort a set c++?
What does it mean to declare a member variable as static?
what is software cycle? What is a mission critical system ? What is the important aspect of a real-time system ? Explain the difference between microkernel and macro kernel. Give an example of microkernel.Why paging is used ? Which is the best page replacement algo and Why ? What is software life cycle ? How much time is spent usually in each phases and why Which one do U want to work if selected in Honeywell ? Which are the different types of testing ? What is a distributed system ? Some questions about CSP. Which languages do U know ? What are the differences between Pascal and C. questions from Compiler construction and Lisp. Which are the different computer architecture? What is the requirement in MIMD ? What is the difference between RISC and CISC processors ? Difference between loosely coupled and tightly coupled systems ? What is an open system?
Is c better than c++?
What is one dimensional array in c++?
Why is c++ a mid-level programming language?
What is pointer to member?
What is the difference between prefix and postfix versions of operator++()?
How many ways can a variable be initialized into in C++?
What are the 3 levels of programming languages?
What is polymorphism in c++? Explain with an example?
Explain the use of this pointer?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Define a constructor?
What are the implicit member functions of class?