While baby-sitting, a girl student should NOT__________ .
A. call the baby's parents
B. make personal calls for a long time
C. be allowed to watch TV
D. think of her studies
第1题:
若有如下定义,选项中正确的语句是_________。 Sructure student Dim Name As String Dim Score As Integer End Structure Dim s as Student
A.s.Name="zhang"
B.s="zhang"
C.student.Name="zhang"
D.s=student
E.student.s="zhang"
第2题:
函数MyStrlen的功能是求pa标识的字符串长度,则划线处需要填写_______ int MyStrlen(char *pa){ int count=0; while(*pa != '0'){ ______++; ______++; } return ________; }
A.pa count count
B.count pa count
C.count pa pa
D.pa count pa
第3题:
7、将文本中所有的 stu 替换为 Student ,下面哪些做法是可行的?
A.:1,$s/stu/Student/gc
B.:1,$s/stu/Student
C.:1,Ns/stu/Student
D.:0,$s/stu/Student/g
第4题:
以下选项中哪个是Student类创建对象的正确语句?()
A.Student s1=new Student();
B.s1=new Student();
C.s1=Student();
D.Student s1=Student();
第5题:
与while(*s++ = *t++ );等价的程序段是
A.do { *s = *t++; } while (*s++ );
B.while (*t ) *s++ = *t++;
C.do { *s++ = *t++; } while (*t );
D.while (*s ) *s++ = *t++;
第6题:
以下选项中哪个是Student类创建对象的正确语句?()
A.s1=new Student();
B.Student s1=new Student();
C.s1=Student();
D.Student s1=Student();