Who plays soccer every day in Leo’s family?
______________
第1题:
已知学生记录描述为: struct student { int no; char name[20],sex; struct { int year,month,day; } birth; }; struct student s; 设变量s中的“生日”是“1984年11月12日”,对“birth”正确赋值的程序段是( )。
A.year=1984;month=11;day=12;
B.s.year=1984;s.month=11;s.day=12;
C.birth.year=1984;birth.month=11;birth.day=12;
D.s.birth.year=1984;s.birth.month=11;s.birth.day=12;
第2题:
表达式Chr(Asc(“soccer”))产生的结果是()。
A.soccer
B.115
C.83
D.s
第3题:
Each life jacket light that has a non-replaceable power source must be replaced ______.
A.every 6 months after initial installation
B.every 12 months after initial installation
C.every 24 months after initial installation
D.on or before the expiration date of the power source
第4题:
A.pink-letter
B.white-letter
C.black-letter
D.red-letter
第5题:
A. Every 5 minutes
B. Every 90 seconds
C. Every 60 seconds
D. Every 30 seconds
第6题:
已知学生记录描述如下,设变量s中的“生日”应是“1984年11月11日”,下列对生日的正确赋值方式是()。 struct student{ int no; char name[20]; char set; struct{ int year; int month; int day; } birth; }; struct student s;
A.year=1984;month=11;day=11;
B.birth.year=1984; birth.month=11; birth.day=11
C.s.year=1984;s.month=11;s.day=11
D.s.birth.year=1984;s.birth.month=11; s.birth.day=11;