海船船员

what’s your date of birth?

题目

what’s your date of birth?

参考答案和解析
正确答案:My date of birth is May 18th, 1990.
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

已知学生记录描述为 struct student { int no; char name[20]; char sex; struct { int year; int month; int day; } birth; }; struct student s;变量s中的“生日”应是“1985年4月4日”,下列对“生日”的正确赋值方式是______。

A.year=1985;month=4;day=4;

B.birth.year=1985;birth.month=4;birth.day=4;

C.s.year=1985;s.month=4;s.day=4;

D.s.birth.year=1985;s.birth.month=4;s.birth,day=4;


正确答案:D

第2题:

—几点了?

—12:30。

—What ‘s________ ________?

—It's 12:30.


正确答案:
38. the time

第3题:

已知职工记录描述如下,structworker{intno;charname[20];charsex;struct{intday;intmonth;intyear;}birth;};structworkerw;设变量w中的“生日”是“1993年10月25日”,下列对“生日”的正确赋值方式是()

A、day=25;month=10;year=1993;

B、w.birth.day=25;w.birth.month=10;w.birth.year=1993;

C、w.day=25;w.month=10;w.year=1993;

D、birth.day=25;birth.month=10;birth.year=1993;


参考答案:B

第4题:

已知学生记录描述如下,设变量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;


s.birth.year=1984;s.birth.month=11; s.birth.day=11;

第5题:

What's ( )job? Are ( ) British?

A. your, your

B. you, your

C. your, you


正确答案:C

第6题:

已知学生记录描述为:

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;


正确答案:D

第7题:

My opinions are similar to ___.

A.you

B.your

C.yours

D.your's


正确答案:C

第8题:

7. Hi! This is_______ new teacher.__________ name is Linda.

A. your; My

B. his; Your

C. your ; Her

D. her; His


正确答案:C
7.C【解析】只看第一个空四个选项在字面上都符合。根据句意,是介绍他人,所以第二个空就排除了A、B。又因为Linda是女名,所以排除D。

第9题:

已知学生记录描述为: 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;


正确答案:D
解析:本题考查结构体变量的基本概念。引用结构体成员的方式为:结构体变量名.成员名“.”是“成员运算符”(分量运算符),如果成员本身又是一个结构体类型,则要用若干个成员运算符,一级一级地找到最低一级的成员。只能对最低级的成员进行赋值或存取以及运算,所以选项D)正确。

第10题:

08110062:已知职工记录描述为: struct workers{ int no; char name[20]; char sex; struct{ int day; int month; int year; }birth; }; struct workers w; 设变量w中的“生日”应是“1993年10月25日”,下列对“生日”的正确赋值方式是()。

A.day=25;month=10;year=1993;

B.w.day=25;w.month=10;w.year=1993;

C.w.birth.day=25;w.birth.month=10;w.birth.year=1993;

D.birth.day=25;birth.month=10;birth.year=1993;


w.birth.day=25; w.birth.month=10; w.birth.year=1993;