( 30 )下列代码声明了 3 个类
class Person{};
class Student:public Person{};
class Undergraduate:Student{};
下列关于这些类之间关系的描述中,错误的是
A )类 Person 是类 Undergraduate 的基类
B )类 Undergraduate 从类 Student 公有继承
C )类 Student 是类 Person 的派生类
D )类 Undergraduate 是类 Person 的派生类
第1题:
【单选题】9、在项目中已经建立了一个JavaBean,其类为bean.Student,该Bean具有name属性,则下面标签用法正确的是()。
A.<jsp:useBean id="student" class="Student" scope="session"></jsp:useBean>
B.<jsp:useBean id="student" class="bean.Student" scope="session"> </jsp useBean>
C.<jsp:useBean id="student" class="Student" scope="session"/>
D.<jsp:getProperty name="name" property="student"/>
第2题:
在项目中已经建立了一个JavaBean,其类为bean.Student,该Bean具有name属性,则下面标签用法正确的是()。
A.<jsp:useBean id=”student” class=”Student” scope=”session”></jsp:useBean>
B.<jsp:useBean id=”student” class=”Student” scope=”session”/>
C.<jsp:useBean id=”student” class=”bean.student” scope=”session”></jsp:useBean>
D.<jsp:getProperty name=”name” property=”student”/>
第3题:
34、下列代码段中声明了3个类: class Person {}; class Student: public Person{}; class Undergraduate: Student{}; 下列关于这些类之间关系的描述中,错误的是()。
A.类 Person是类Undergraduate的基类
B.类 Undergraduate从类Student公有继承
C.类 Student是类Person的派生类
D.类 Undergraduate是类Person的派生类
第4题:
下列代码段声明了3个类 class Person{}; class Student :public Person{}; class Undergraduate : Student{}; 下列关于这些类之间关系的描述中,错误的是_______。
A.类Person是类Undergraduate的基类
B.类Undergraduate从类Student公有继承
C.类Student是类Person的派生类
D.类Undergraduate是类Person的派生类
第5题:
现有代码t = ('a'),在Python3解释器中查看type(t)的结果为()
A.<class 'str'>
B.<class 'tuple'>
C.(class 'str')
D.(class 'tuple')