• Best of luck to the class of 2024 for their HSC exams. You got this!
    Let us know your thoughts on the HSC exams here
  • YOU can help the next generation of students in the community!
    Share your trial papers and notes on our Notes & Resources page

Search results

  1. S

    How To Study For SDD?

    Thats not polymorphism at all; it's just function overloading. class A { public: virtual int foo ( ) { return 10; } }; class B : public A { public: virtual int foo() { return 20; } }; // This is polymorphism, base class pointer pointing to derived class A* b = new B()...
Top