A.Nellie
B.Sally
C.Kelly
D.Ellie
第1题:
根据下列的定义,能打印出字母P的语句是( )。 struct stu { char name[10]; iht age; }; struct stu s[10]={"John",11, "Paul", 12, "Mary", 11, "adam",12 };
A.printf("%c",s[3].name);
B.printf("%c",s[3].name[1]);
C.printf("%c",s[2].name[1]);
D.printf("%c",s[1].name[0]);
第2题:
根据下列的定义,能打印出字母P的语句是( )。 struct stu {char name[10]; int age; }; struct sm s[10]={"John",11, "Pau1",12, "Mary",11, "adam",12 };
A.printf("%c",s[3].name);
B.printf("%c",s[3].name[1]);
C.printf("%c",s[2].name[1]);
D.printf("%c",s[1].name[0]);
第3题:
若有如下定义,则选项中不正确的语句是_________。 Structure student Dim Name As String Dim score As Integer End Structure Dim s1,s2 as Student
A.s2.Name="zhang"
B.s1 = s2
C.s1.score = s2.score
D.Student.Name = s2.Name
第4题:
对于基本表S(S#,NAME,SEX,BIRTHDAY)和SC(S#,C#,ORADE),其中S#、NAME、 SEX、BIRTHDAY、C#和GRADE分别表示学号、姓名、性别、生日、课程号和年级。有一 SQL语句:
SELECT S#,NAME
FROM S
WHERE S# NOTIN
(SELECT S#
FROM SC
WHERE C#='C102');
其等价的关系表达式是______。
A.πS#.NAME(σC#≠'C102'(SSC) )
B. πS#.NAME(S)-πS#.NAME(σC#='C102'(SSC) )
C.πS#.NAME(SσC#≠'C102'(SC) )
D.πS#.NAME(S(SC) )
第5题:
3、若有如下定义,则选项中不正确的语句是_________。 Structure student Dim Name As String Dim score As Integer End Structure Dim s1,s2 as Studen
A.s2.Name="zhang"
B.s1 = s2
C.s1.score = s2.score
D.Student.Name = s2.Name
第6题:
请改正下面程序中存在的错误。 def StudentInfo(country='China', chineselevel='A', name): print('%s,%s,%s'%(name,country,chineselevel)) StudentInfo(country='America', chineselevel='B', name='John')