In the second paragraph, "Maybe he doesn't see it himself, "the pronoun "it "refers to______.
A) being friendly
B) a hit of envy
C) lucky dog
D) your luck
第1题:
A.is not
B.don't
C.doesn't
第2题:
He seldom does his homework at school on weekdays,( )he?
A. doesn't
B. isn't
C. does
D. is
第3题:
第4题:
Youarecreatingacontentmanagementsystem(CMS)withawebapplicationfront-end.TheJSPthatdisplaysagivendocumentintheCMShasthefollowinggeneralstructure:
1.<%--tagdeclaration--%>
2.<t:document>
...
11.<t:paragraph>...<t:citationdocID=’xyz’/>...</t:paragraph>...
99.</t:document>
Thecitationtagmuststoreinformationinthedocumenttagforthedocumenttagtogenerateareferencesectionattheendofthegeneratedwebpage.ThedocumenttaghandlerfollowstheClassictagmodelandthecitationtaghandlerfollowstheSimpletagmodel.Furthermore,thecitationtagcouldalsobeembeddedinothercustomtagsthatcouldhaveeithertheClassicorSimpletaghandlermodel.
Whichtaghandlermethodallowsthecitationtagtoaccessthedocumenttag?()
第5题:
4. Tom doesn’t like the film_________,but his parents like _________ .
A.himself; it
B.itself; themselves
C.itself ; it
D.himself ; themselves
第6题:
给定一个类及对象的定义,以下各选项中使用正确的是 。 class Time { private: int hour; int minute; public: int second; void set() {cin>>hour>>minute>>second;} void display() {cout<<hour<<minute<<second<<endl;} }t1, t2;
A.t1.hour=10;
B.t2.minute=20;
C.t1.second=10;
D.t1.set;