重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
找答案首页 > 全部分类 > 外语类考试
搜题
网友您好, 请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
[主观题]

听力原文:Your assignments this term will be to write two major research papers. One of the

听力原文: Your assignments this term will be to write two major research papers. One of the most important things about writing a research paper is giving proper credit of your resources of information. Failure to do this is called plagiarism which is a form. of intellectual dishonesty.

Plagiarism is a kind of stealing or at least an unauthorized borrowing of someone else's ideas. Sometimes inexperienced students will plagiarize unintentionally, and then be surprised when the teacher won't accept their papers, or gives them a failing grade.

The best way to avoid an unintentional plagiarizing is to be very careful in gathering your information. As you take notes on books and magazine articles about the topic you've selected, first try to assimilate the information thoroughly. Secondly, write it down in your own words. This is called paraphrasing. If you do a good job of paraphrasing, you'll capture the main idea from your source without actually using any phrases from it. Most of your notes should probably be paraphrases. However, occasionally you may find something you wish to quote directly in your research paper. In this case, be sure that you copy the quotation precisely in your notes and enclose it in quotation marks. That way when you're finalizing your research paper, you'll be able to remember which of your notes are direct quotes and which are your own summaries of the material. You can then incorporate them appropriately and give the original author proper credit.

32.What kind of assignment does the speaker discuss with the students?

33.What does the speaker warn the students not to do?

34.According to the speaker, how should most of the notes be taken?

35.How does the speaker say a direct quotation should be used?

(33)

A.Reading magazine articles.

B.Reviewing book reports.

C.Writing research papers.

D.Selecting information sources.

查看答案
更多“听力原文:Your assignments this term will be to write two major research papers. One of the”相关的问题

第1题

publicclassCreditCard{privateStringcardlD;privateIntegerlimit;publicStringownerName;public
publicclassCreditCard{privateStringcardlD;privateIntegerlimit;publicStringownerName;publicvoidsetCardlnformation(StringcardlD,StringownerName,28.Integerlimit){this.cardlD=cardlD;this.ownerName=ownerName;this.limit=limit;}}Whichistrue?()

A.Theclassisfullyencapsulated.

B.Thecodedemonstratespolymorphism.

C.TheownerNamevariablebreaksencapsulation.

D.ThecardlDandlimitvariablesbreakpolymorphism.

E.ThesetCardlnformationmethodbreaksencapsulation.

点击查看答案

第2题

interfaceFoo{}11.classAlphaimplementsFoo{}12.classBetaextendsAlpha{}13.classDeltaextend
10.interfaceFoo{}11.classAlphaimplementsFoo{}12.classBetaextendsAlpha{}13.classDeltaextendsBeta{14.publicstaticvoidmain(String[]args){15.Betax=newBeta();16.//insertcodehere17.}18.}Whichcode,insertedatline16,willcauseajava.lang.ClassCastException?()

A.Alphaa=x;

B.Foof=(Delta)x;

C.Foof=(Alpha)x;

D.Betab=(Beta)(Alpha)x;

点击查看答案

第3题

//somecodehere32.try{33.//somecodehere34.}catch(SomeExceptionse){35.//somecodehere36.}finally{37.//somecodehere38.}Underwhichthreecircumstanceswillthecodeonline37beexecuted?()

A.Theinstancegetsgarbagecollected.

B.Thecodeonline33throwsanexception.

C.Thecodeonline35throwsanexception.

D.Thecodeonline31throwsanexception.

E.Thecodeonline33executessuccessfully.

点击查看答案

第4题

publicclassTest{publicstaticvoidmain(String[]args){intx=5;booleanb1=true;booleanb2=false;i
publicclassTest{publicstaticvoidmain(String[]args){intx=5;booleanb1=true;booleanb2=false;if((x==4)&&!b2)System.out.print(”l);System.out.print(”2);if((b2=true)&&b1)System.out.print(”3);}}Whatistheresult?()

A.2

B.3

C.12

D.23

E.123

F.Compilationfails.

G.Auexceptionalisthrownatruntime.

点击查看答案

第5题

publicinterfaceStatus{12./*insertcodehere*/intMY_VALUE=10;13.}Whichthreearevalidonline12?()

A.final

B.static

C.native

D.public

E.private

F.abstract

G.protected

点击查看答案

第6题

Giventhefollowingcode:1)classParent{2)privateStringname;3)publicParent(){}4)}5)publicclass
Giventhefollowingcode:1)classParent{2)privateStringname;3)publicParent(){}4)}5)publicclassChildextendsParent{6)privateStringdepartment;7)publicChild(){}8)publicStringgetValue(){returnname;}9)publicstaticvoidmain(Stringarg[]){10)Parentp=newParent();11)}12)}Whichlinewillcauseerror?()

A.line3

B.line6

C.line7

D.line8

E.line10

点击查看答案

第7题

AButtonispositionedinaFrame.OnlyheightoftheButtonisaffectedbytheFramewhilethewidthisnot.Whichlayoutmanagershouldbeused?()

A.FlowLayout

B.CardLayout

C.NorthandSouthofBorderLayout

D.EastandWestofBorderLayout

E.GridLayout

点击查看答案

第8题

classParent{Stringone,two;
classParent{

Stringone,two;

publicParent(Stringa,Stringb){

one=a;

two=b;}

publicvoidprint(){System.out.println(one);}}

publicclassChildextendsParent{

publicChild(Stringa,Stringb){

super(a,b);

}

publicvoidprint(){

System.out.println(one+"to"+two);

}

publicstaticvoidmain(Stringarg[]){

Parentp=newParent("south","north");

Parentt=newChild("east","west");

p.print();

t.print();

}

}

Whichofthefollowingiscorrect?()

点击查看答案

第9题

publicclassParent{intchange(){…}}classChildextendsParent{}WhichmethodscanbeaddedintoclassChild?()

A.publicintchange(){}

B.intchang(inti){}

C.privateintchange(){}

D.abstractintchang(){}

点击查看答案

第10题

Whichofthefollowingstatementsarelegal?()

A.longl=4990;

B.inti=4L;

C.floatf=1.1;

D.doubled=34.4;

E.doublet=0.9F;

点击查看答案
下载上学吧APP
客服
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
选择优惠券
优惠券
请选择
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注上学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注上学吧 -
请用微信扫码测试
选择优惠券
确认选择
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,如果您知道正确答案,欢迎您来纠错

上学吧找答案