如果函数定义为def stu(name): ,则下面对该函数的调用不合法的是( )。
A: stu(“Lucy”)
B: stu()
C: stu(‘Lucy’)
D: stu(name=’Lucy’)
A: stu(“Lucy”)
B: stu()
C: stu(‘Lucy’)
D: stu(name=’Lucy’)
举一反三
- 考察以下程序片段var name = document.getElementById(“stu”);以下选项正确的是( ) A: stu是控件的id B: stu是一个div C: stu是一个文本框 D: stu是控件的name
- 下列定义中,()是定义指向Stu对象数组的指针p。 A: Stu*p[5]; B: Stu(*p)[5]; C: (Stu*)p[5]; D: Stu*p();
- 以下类的定义错误的是() A: class Stu: def Aa(self): print("aaaa") B: class Stu: a=10 C: class Stu: count=10; say(): print("Hello") D: class Stu: pass
- 若有定义:struct student{ int age; int num;};struct student stu,*p;则以下正确的赋值语句是()。 A: p=stu; B: *p=*stu; C: *p=&stu; D: p=&stu;
- 以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;