Multiple choice technology programming languages C++ class aclass : public superclass class aclass inherit superclass class aclass <-superclass None of the Above Reveal answer Fill a bubble to check yourself A Correct answer Explanation In C++, public inheritance is declared using a colon followed by the 'public' keyword and the base class name. Option A shows the correct syntax: 'class aclass : public superclass'. Options B and C use incorrect syntax not valid in C++.