logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • What do you mean by late binding?


  • Correct Answer
  • Late binding refers to function calls that are not resolved until run time Virtual functions are used to achieve late binding When access is via a base pointer or reference, the virtual function actually called is determined by the type of object pointed to by the pointer 


  • Technology problems


    Search Results


    • 1. What is namespace?
    • Discuss
    • 2. What is dynamic binding?
    • Discuss
    • 3. What is default constructor?
    • Discuss
    • 4. What is copy constructor?
    • Discuss
    • 5. What are storage qualifiers in C++ ?
    • Discuss
    • 6. What do you mean by early binding?
    • Discuss
    • 7. What do you mean by multiple inheritance in C++ ?
    • Discuss
    • 8. What is the difference between realloc() and free()?
    • Discuss
    • 9. What is the difference between class and structure?
    • Discuss
    • 10. What is the output of this program? #include using namespace std; int main() { int arr[] = {4, 5, 6, 7}; int *p = (arr + 1); cout << arr; return 0; }

    • Options
    • A. 4
    • B. 5
    • C. address of arr
    • D. 7
    • Discuss


    Comments

    There are no comments.

Enter a new Comment