Multiple choice technology programming languages class test : Form {} Creates the class Test : Form Creates the class Test that inherits the class Form Creates the class form that inherits the class Test a and b Reveal answer Fill a bubble to check yourself B Correct answer Explanation In C# inheritance syntax 'class derived : base', the class name before the colon (test) is the derived/child class, and the class name after the colon (Form) is the base/parent class. This means 'test' inherits from 'Form', not the reverse.