True or False
T F One way to get an overloaded subprogram name in Java is for a subclass to override a method of its superclass.
T F One way to get an overloaded subprogram name in Java is to define methods with the same name but different signatures.
T F The way that parameters are passed may depend on the data type.
T F In a pure object-oriented language there are no primitive types.
T F Some object-oriented languages provide access-control options for fields.
T F Some object-oriented languages provide access-control options for methods.
T F A class in Java that implements an interface will, by default, inherit code from that interface.
T F A subclass in Java inherits the method definitions of its superclass.
T F C++ lacks a garbage collector.
T F "Generic" is another word for a parameterized abstract data type.
T F In prolog length([a,b], 3] is a function call.
T F Pure functional programming eliminates side-effects.
T F Recursive subprograms can refer to static variables.
T F In a while loop, continue and break are synonyms (at least in Java and C++).