第一阶段在线作业 文档
中石油北京17秋Java语言程序设计第一次在线作业
中石油北京17秋Java语言程序设计第一次在线作业第一次在线作业单选题(共30道题)展开收起1.(2.5分)编译Java Application源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为A、.javaB、.classC、.htmlD、.exe正确答案:B2.(2.5分).Java程序的执行过程中用到一套JDK工具,其中java.exe是指A、Java文档生成器B、Java解释器C、Java编译器D、Java类分解器正确答案:B3.(2.5分)Java语言具有许多优点和特点,下列选项中,哪个反映了Java程序并行机制的特点A、安全性B、多线程C、跨平台D、可移植正确答案:B4.(2.5分)Java语言是_____年由______公司第一次正式发布的,________被誉为Java之父A、1996;XXX;Bill Joe;B、1995;Sun;Bruce Eckel;C、1996;XXX;Anders HejlsbergD、1995; Sun; XXX Gosling精确谜底:D5.(2.5分)关于Java Application和Applet的说法中,精确的是_________A、都包含main()方法B、都通过“appletviewer”命令执行C、都通过“javac”命令编译D、都嵌入在HTML文件中执行正确答案:C6.(2.5分)下列哪个是面向大型企业级用管理专用构件的应用平台A、J2EEB、J2MEC、J2SED、J2DE精确谜底:A7.(2.5分)下列对Java源程序结构的叙述中,错误的是A、import语句必须在所有类定义之前B、接口定义允许或多个C、Java Application中的public class类定义允许或多个D、package语句允许或多个正确答案:C8.(2.5分)下列对Java语言的叙述中,错误的是A、Java的虚拟机解释执行字节码B、JDK的库文件目录是binC、Java的类是对具有相同行为对象的一种抽象D、Java中的垃圾回收机制是一个系统级的线程正确答案:B9.(2.5分)下列Java源程序结构中前三种语句的次序,正确的是A、import, package, public classB、import必为首,其他不限C、public class, import ,packageD、package, import , public class正确答案:D10.(2.5分).在Java中,属于整数类型变量的是A、singleB、doubleC、byteD、char精确谜底:C11.( 2.5分)下列语句片段inta=10,b=4,c=20,d=6;System.out.println(a++*b+c*--d);的成效为A、144B、28C、140D、不能执行正确答案:C12.(2.5分)下列语句片段:inta=-67,b=116,c=78;intd=~a|b&c;System.out.println(d);的结果为A、70B、67C、78D、56正确答案:A13.(2.5分)给出下面代码:public class test{ static int a[] = new int[10]; public static voidmain(String args[]) { System.out.println(a[10]); } }那个选项是精确的A、编译时将发生毛病B、编译时正确,运行时将产生错误C、输出零D、输出空正确答案:B14.(2.5分)下面哪些选项是精确的main方法申明?A、public main(String args[])B、public static void main(String args[])C、private static void main(String args[])D、void main()正确答案:B15.(2.5分)System类在哪个包中( )A、java.utilB、java.ioC、java.awtD、ng正确答案:D16.(2.5分)下列代码哪几行会出错: ( ) 1) public void modify() { 2} int I, j, k; 3} I=100; 4} while(I>0){ 5} j= I * 2; 6} System.out.println (" The value of j is " + j ); 7) k=k + 1; 8) I--; 9) }10)}A、line 4B、line 6C、line 7D、line 8正确答案:C17.(2.5分)指出正确的表达式A、byte b=128;B、XXX;C、long l=0xfffL;D、float d=0.9239d;正确答案:C18.(2.5分)在Java中,不属于整数类型变量的是A、doubleB、longC、intD、byte精确谜底:A19.(2.5分)Java变量中,以下不属于复合类型的数据类型是A、类B、字符型C、数组型D、接口精确谜底:B20.(2.5分)下面的语句片断输出成效是什么?intscore=1;switch(score){(" Fail," ); (" Error," ); case 1: System.out.print(" Good," );case 2: System.out.print(" Best" ); break; }A、没有输出B、Good,C、Good,BestD、Error,Good,Best正确答案:C21.(2.5分)下面哪个是合法的标识符_______A、$personsB、2UsersC、*pointD、this正确答案:A22.(2.5分)下列布尔变量定义中,正确并且规范的是:A、XXX;B、boolean canceled= false;C、boolean CANCELED= false;D、boolean canceled= FALSE;精确谜底:B23.(2.5分)数组中各个元素的数据类型是A、相同的B、分歧的C、部分相同的D、任意的精确谜底:A24.(2.5分)下列语句中执行跳转功能的语句是A、for语句B、while语句C、continue语句D、switch语句正确答案:C25.(2.5分)按次执行下列步伐语句后,则b的值是String a=" Hello" ; String b=a.substring(0,2);A、HelloB、helloC、HeD、null正确答案:C26.(2.5分)下列的哪个选项可以正确用以表示八进制值8?A、0x8B、0x10C、8D、10正确答案:D27.(2.5分)下列的哪个赋值语句是不精确的?A、float f = 11.1;B、double d = 5.3E12;C、float d = 3.14f ;D、double f=11.1E10f;正确答案:A28.(2.5分)下列的哪个赋值语句是精确的?A、char a=" 12" ;B、int a=12.0;C、int a=12.0f;D、int a=(int)12.0;正确答案:D29.(2.5分)switch语句中表达式(expression)的值不允许用的类型是A、byteB、intC、booleanD、char精确谜底:C30.(2.5分)下列关键字中能够表示常量的是A、finalB、defaultC、privateD、XXX正确答案:A判断题(共10道题)展开收起31.(2.5分)Java语言是不区分大小写精确毛病正确答案:错误32.(2.5分)Java语言不含指针和析构方法,所以Java程序只有在结束运行才释放占用的内存正确毛病正确答案:错误33.(2.5分)Java程序一般应当含有main方法,因为它是所有Java程序执行的入口正确错误正确答案:错误34.(2.5分)数组、类和接口都是引用数据类型正确错误正确答案:正确35.(2.5分)定义完数组后,我们能够根据实际需要,再动态调整数组大小精确错误正确答案:错误36.(2.5分)Java语言中一个Char类型的数据占用2个字节大小的内存空间正确毛病正确答案:正确37.(2.5分)编译语句Double aDouble=37.2D不会出现编译毛病正确错误正确答案:正确38.(2.5分)if(true){int i=17;} System.out.println(i);运转此步伐的成效是输出17精确错误正确答案:错误39.(2.5分)float x=26f; int y=26; int z=x/y;以上语句能正常编译和运行正确错误正确答案:错误40.(2.5分)int[] a={1,2,3,4}; System.out.println(a.length());以上语句运行的结果是显示4正确错误。
东师小学语文教学论20春在线作业1
东师小学语文教学论20春在线作业1小学语文教学论20春在线作业1题目试卷总分:100 得分:100一、单选题(共10 道试题,共30 分)1.应认真细读,揣摩探索,甚至有时需要咬文嚼字,结合联想和想象,加深对文本理解,进而形成自己对文本的判断和评价。
A.默读B.朗读C.精读D.略读2.按(),语文综合性学习可分为国际理解、环境教育、信息教育、福利教育。
A.活动形式B.课题性质C.活动的时间与空间D.资源利用情况3.对周围事物有好奇心,并且还能对感兴趣的内容提出问题,结合课内外阅读,共同讨论;结合语文学习,观察大自然,用口头或者图文等方式来表达自己观察的;热心参加校园、社区活动。
结合活动,用口头或者图文等方式表达自己的见闻和想法.”这是语文综合性第()学段的目标。
A.二B.一C.三D.初中4.运用要()注意的问题:要明确目标、要重视动机的激发、要指导自学方法。
A.背诵法B.欣赏法C.讲解法D.自学法5.新中国成立之后,“国语”改成为了(),从命名上就克服了重文轻语的片面性,使课程名称更加科学、规范。
它体现的听说读写并重的思想引导小学语文教学走上综合训练的道路。
A.国文B.语言C.语文D.中文6.()就是研究者利用发展变化的观点,对各个历史时期的语文教学情况作分析比较的一种研究方法。
A.实地观察法B.现状调查法C.历史比较法D.访谈法7.百家姓以“赵钱孙李”开始的,后人判断是()代人的作品。
A.唐B.宋C.秦D.明8.狭义的语文,它的根本的特性就是它的A.整体性B.应用性C.个体性D.工具性9.按照(),语文综合性学习可分为国际理解、环境教育、信息教育、福利教育。
A.活动形式B.课题性质C.活动的时间与空间D.资源利用情况10.引导启示型语文教学方法是源于()的“愤启—悱发”思想。
A.荀子B.孔子C.孟子D.老子二、多选题(共10 道试题,共30 分)11.《全日制义务教育语文课程标准(实验稿)》对写作的界定是:“写作是运用语言文字进行表达和交流的重要方式,是认识世界、认识自我、进行创造性表述的过程。
[0181]《语言学导论》 在线作业及参考答案
[0181]《语言学导论》第1批作业[单选题]When language is used for establishing an atmosphere or maintaining social contact rather than for exchanging information or ideas, it serves a _____ function.A:expressiveB:evocativeC:performativeD:phatic参考答案:D[判断题]The distinction between competence and performance was proposed by F. de Saussure.参考答案:错误[单选题]_____ is the study of meaning in language.A:SyntaxB:Applied linguisticsC:MorphologyD:Semantics参考答案:D[单选题]By _____, we mean language can refer to contexts removed from the immediate situations of the speaker.A:cultural transmissionB: interchangeabilityC:displacementD:creativity参考答案:C[单选题]Which of the following statements is FALSE:A:Language is just for communication.B:Language is one of many ways in which we experience the world.C: Language is a sign system.D:Language is arbitrary and conventional.参考答案:A[单选题]Of the following sounds, ______ is a rounded vowel.A:[au]B: [u:]C:[ju:]D:[e]参考答案:B[单选题]There are ______ morphemes in the word "policemen".A: twoB:threeC:fourD:five参考答案:B[单选题]The syllabic structure of the word "children" is ______.A:CVCCVCB:CCVCCCVCC:CCVCCVCD:CVVCCVC参考答案:A[单选题]_____ are produced when the nasal passage is opened by lowering the soft palate ant the back of the throat and the air is allowed to pass through it.A:Semi-vowelsB:AffricatesC:NasalsD:Glides参考答案:C[单选题]_____ studies the changes in language and language use with respect to social factors.A:SociolinguisticsB:Comparative linguisticsC:SyntaxD:Computational linguistics参考答案:A[单选题]A ______ is any morpheme or combination of morphemes to which an affix can be added.A:rootB:free morphemeC:stemD:suffix参考答案:C[单选题]Which one of the following statements does not account for the primacy of speech over writing in linguistic analysis? _______A:Speech existed long before writing systems came into being.B:Speech is more complex than writing.C:Genetically children learn to speak before learning to write.D: Written forms just represent in this way or that the speech sounds.参考答案:B[单选题]Foreign language learners' errors may be caused by ________.A:borrowing patterns from the mother tongueB:extending patterns form the target language, e.g. by analogyC:expressing meanings using the words and grammar which are already knownD:all the above three参考答案:D[单选题]Language serves the ________ function when it is used to express the speaker's feeling or attitude or to arouse a certain feeling or attitude in the hearer.A: phaticB:informativeC:emotiveD:directive参考答案:C[单选题]Linguistics is generally defined as the scientific study of language.A:FalseB:True参考答案:B[判断题]Modern linguistics is mostly prescriptive, but sometimes descriptive.参考答案:错误[单选题]If a linguistic study describes and analyzes the language people actually use, it is said to be ______.A:prescriptiveB:analyticC:descriptiveD:linguistic参考答案:C[单选题]Modern linguistics regards the written language as _____.A:primaryB:betterC:secondaryD:unchangeable参考答案:C[单选题]Language is said to be arbitrary because there is no logical connection between _____ and meanings.A:senseB:soundsC:objectsD:ideas参考答案:B[单选题]Which of the following is not a design feature of human language?A:ArbitrarinessB:DisplacementC:DualityD:Meaningfulness参考答案:D[判断题]A diachronic study of language is the description of language at some point in time.参考答案:错误[判断题]Modern linguistics is different from traditional grammar.参考答案:正确[单选题]The branch of linguistic study called _____ is concerned with how speakers use the sentences of a language to achieve effective and successful communication.A:sociolinguisticsB:pragmaticsC:syntaxD:computational linguistics参考答案:B第2批作业[判断题]A person's social backgrounds do not exert a shaping influence on his choice of linguistic features.参考答案:错误[判断题]Componential analysis is a way in which the meaning of a word can be dissected into meaning components, called semantic features.参考答案:正确[判断题]The standard language is a better language than nonstandard languages.参考答案:错误[判断题]Derivation refers to the process by which new words are formed by the addition of affixes to the roots, stems, or words.参考答案:正确[判断题]Pragmatics treats the meaning of language as something intrinsic and inherent.参考答案:错误[判断题]The distinction between competence and performance is proposed by Halliday.参考答案:错误[判断题]Bilingualism and diglossia mean the same thing.参考答案:错误[判断题]Hyponymy refers to the phenomenon that words having different meanings have the same form.参考答案:错误[判断题]What essentially distinguishes semantics and pragmatics is whether in the study of meaning the context of use is considered.参考答案:正确[判断题]“alive” and “dead” are complementary antonyms.参考答案:正确[判断题]Language use varies from one speech community to another, from one regional group to another, from one social group to another, and even from one individual to another.参考答案:正确[判断题]Both semantics and pragmatics study how speakers of a language use sentences to effect successful communication.参考答案:错误[判断题]Some languages are inferior, or superior, to other languages.参考答案:错误[判断题]For the vast majority of children, language development occurs spontaneously and requires little conscious instruction on the part of adults.参考答案:正确[判断题]Observations of children in different language areas of the world reveal that the developmental stages are similar, possibly universal, whatever the nature of the input.参考答案:正确[判断题]Pidgins are linguistically inferior to standard languages.参考答案:错误[判断题]The kind of name or term speakers use to call or refer to someone may indicate something of their social relationship to or personal feelings about that individual.参考答案:正确[判断题]“Smog” is a word formed by the word-forming process called acronymy.参考答案:错误[判断题]The Cooperative Principle is advanced by Paul Grice.参考答案:正确[判断题]Two speakers of the same language or dialect use their language or dialect in the same way.参考答案:错误第3批作业[填空题]The _______ relation is a relation holding between elements replaceable with each other at a particular place in a structure, or between one element present and the others absent.参考答案:paradigmatic[填空题]"Poor John" and "ran away" are the _____ constituents of the sentence "Poor John ran away".参考答案:immediate[填空题]Michael A. K. Halliday has developed the ______ grammar.参考答案:systemic-functional[填空题]The transformational-generative grammar was proposed by the American linguist Noam ______.参考答案:Chomsky[填空题]The word "brunch" is formed by way of _____ from "breakfast" and "lunch".参考答案:blending[填空题]_______ is the study of teh formation of sentences in a language.参考答案:Syntax[填空题]____ is the smallest unit of language in terms of relationship between expression and content.参考答案:Morpheme[填空题]A ____ is any morpheme or combination of morphemes to which an affix can be added.参考答案:stem[填空题]Morphemes that may constitute words by themselves are ______.参考答案:free morphemes[填空题]A ____ is the base form of a word that cannot further be analyzed without total loss of identity.参考答案:root[填空题]______ affixes do not change the word class of the word they attach to.参考答案:Inflectional[填空题]"WTO" is an ______ made up from teh first letters of the name of the organization "World Trade Organization".参考答案:acronym第4批作业[判断题]All normal children have equal ability to acquire their first language.参考答案:正确[单选题]In first language acquisition, imitation plays ___.A:a minor roleB:a significant roleC:a basic roleD: no role参考答案:A[单选题]The syllabic structure of the word "ac hieved” is ______.A:VCCVCCB:VCVCCC:VCVVCVCD:VCCVCVC参考答案:B[单选题]_______are bound morphemes because they cannot be used as separate words.A:RootsB:StemsC:AffixesD:Compounds参考答案:C[单选题]The relation between the two words "buy” and "sell” can be described as____.A: gradable antonymyB:converse antonymyC:complementary antonymyD:synonymy参考答案:B[单选题]Many Chinese English learners may, at the beginning stage, produce "mans” and "photoes” as the plural forms of "man” and "photo”. This i s most likely the result of _______ in the process of foreign language learning.A:Negative transferB:OvergeneralizationC:Positive transferD:mother tongue interference参考答案:B[单选题]Which of the following qualities is not the requirement of a good test? _______.A:ObjectivityB:ReliabilityC:ValidityD:Both A and C参考答案:A[单选题]Which of the following statements about machine translation is likely to be wrong?_______.A: Machine translation has always been a chief concern in computational linguistics.B:There are areas where machine translation surpasses human translations.C:Sooner or later, machine translation will replace human translation completely.D:In some areas, human translations surpasses machine translation.参考答案:C[单选题]Teaching culture in our language classes can _______.A:get the students familiar with cultural differencesB:help the students transcend their own culture and see things as the members of the target culture willC:emphasize the inseparability of understanding language and understanding culture through various classroom practicesD:All of the above.参考答案:D[单选题]According to Grice's theory, a conversational implicature arises when the cooperative principle and its maxims are _______.A:strictly observedB:secretly and deliberately violatedC:blatantly or apparently violatedD:Both A and B参考答案:C[单选题]The sounds produced without the vocal cords vibrating are ____ sounds.A:voicelessB:voicedC:vowelD:consonantal参考答案:A[单选题]Since /p/ and /b/ are phonetically similar, occur in the same environments and they can distinguish meaning, they are said to be _____.A:in phonemic contrastB:in complementary distributionC:the allophonesD:minimal pair参考答案:A[单选题]The sound /f/ is ____.A:voiced palatal affricateB:voiced alveolar stopC:voiceless velar fricativeD:voiceless labiodental fricative参考答案:D[单选题]The meaning carried by the inflectional morpheme is _____.A:lexicalB:morphemicC:grammaticalD:semantic参考答案:C[单选题]____ is a voiced alveolar stop.A:/z/B:/d/C:/k/D:/b/参考答案:B[单选题]The assimilation rule assimilates one sound to another by "copying” a feature of a sequential phoneme, thus making the two phones ______.A:identicalB:sameC:exactly alikeD:similar参考答案:D[单选题]A ____ vowel is one that is produced with the front part of the tongue maintaining the highest position.A:backB:centralC:frontD:middle参考答案:C[单选题]_____ are often thought to be the smallest meaningful units of language by the linguists.A:WordsB:MorphemesC:PhonemesD:Sentences参考答案:B[单选题]Bound morphemes are those that ____.A: have to be used independentlyB:can not be combined with other morphemesC:can stand as words on their ownD: have to be combined with other morphemes参考答案:D[判断题]The statement "His car is yellow" entails the statement "He has a car".参考答案:错误[判断题]Sense is concerned with the relationship between the linguistic element and thenon-linguistic world of experience, while the reference deals with the inherent meaning of the linguistic form.参考答案:错误[单选题]Language serves the _______ function when it is used to talk about language itself.A:recreationalB:metalingualC:phaticD:performative参考答案:B[单选题]The Cooperative Principle that language users are believed to follow was initially proposed by_________.A:GriceB: AustinC:ChomskyD:Saussure参考答案:A。
《计算机应用基础》第1阶段在线作业
《计算机应用基础》第1阶段在线作业在当今数字化的时代,计算机已经成为我们生活和工作中不可或缺的工具。
无论是处理日常事务、获取信息,还是进行专业的工作和创作,都离不开计算机的应用。
《计算机应用基础》这门课程为我们打开了计算机世界的大门,让我们初步掌握计算机的基本操作和应用技能。
接下来,让我们一起走进这门课程的第 1 阶段在线作业。
第1 阶段的在线作业通常涵盖了计算机的一些基础知识和基本操作。
首先,我们会接触到计算机的硬件组成部分。
了解计算机的硬件,就像是了解一座房子的架构一样重要。
计算机的硬件包括中央处理器(CPU)、内存、硬盘、显卡、显示器等等。
CPU 是计算机的大脑,负责处理各种计算任务;内存则像是短期的记忆仓库,用于暂时存储正在运行的程序和数据;硬盘则是长期的存储设备,保存着我们的文件、文档、图片和视频等。
在作业中,可能会要求我们识别不同硬件的功能和特点。
比如,区分机械硬盘和固态硬盘的差异,了解不同类型的显卡对于图形处理能力的影响。
这不仅有助于我们在购买计算机时做出明智的选择,还能让我们更好地理解计算机的性能和工作原理。
操作系统是计算机的灵魂。
Windows 操作系统是我们最为常见和熟悉的之一。
在作业中,我们会学习到如何进行文件管理。
从创建、复制、移动、删除文件和文件夹,到设置文件和文件夹的属性,这些操作看似简单,但却是我们日常使用计算机时最频繁的操作。
熟练掌握文件管理,能够让我们的工作和学习更加高效有序。
另外,文字处理也是第 1 阶段的重要内容。
像 Microsoft Word 这样的文字处理软件,是我们撰写文章、报告、作业的得力助手。
学会设置字体、字号、颜色,调整段落格式,插入图片、表格等元素,能够让我们的文档更加美观和专业。
在作业中,可能会要求我们按照特定的格式和要求完成一篇文档的编辑,这不仅考验我们对软件功能的掌握,还锻炼了我们的排版和审美能力。
还有计算机网络的基础知识。
我们生活在一个互联互通的世界,了解网络的基本概念和原理至关重要。
201509管道完整性管理油气储运工程在线作业文档
第一阶段在线作业单选题(共15道题)收起1。
(2.5分)新墨西哥州Carlsbad天然气管道爆炸事故原因是:•A、外腐蚀•B、内腐蚀•C、挖掘损伤•D、应力腐蚀我的答案:B 此题得分:2。
5分2。
(2.5分) 华盛顿州Bellingham汽油管道事故原因是:•A、外腐蚀•B、内腐蚀•C、挖掘损伤•D、应力腐蚀我的答案:C 此题得分:2。
5分3。
(2.5分) 密歇根州Marshall原油管道泄漏事故原因是:•A、外腐蚀•B、内腐蚀•C、挖掘损伤•40329 9D89 鶉36311 8DD7 跗,23724 5CAC 岬[27465 6B49 歉30591 777F 睿••D、应力腐蚀我的答案:D 此题得分:2.5分4。
(2。
5分)管道完整性是指:•A、管道承受内压的能力•B、管道承受载荷和保持安全运行的能力•C、管道承受地面占压载荷的能力•D、管道抵抗第三方破坏的能力我的答案:B 此题得分:2。
5分5。
(2。
5分)以下哪一内容中需进行管道的资料的分析与整合.•A、数据管理•B、高后果区识别•C、风险评价•D、完整性评价我的答案:C 此题得分:2.5分6。
(2。
5分)PDCA循环式指:•A、“改进—计划-实施-检查”•B、“计划-实施—检查—改进"•C、“计划—检查-实施—改进"•26126 660E 明39436 9A0C 騌!yD30506 772A 眪25957 6565 敥••D、“实施—检查—计划—改进”我的答案:B 此题得分:2。
5分7。
(2.5分)管道在土壤中的应力腐蚀的形式有几种。
•A、1•B、2•C、3•D、4我的答案:A 此题得分:2.5分8。
(2。
5分) 与时间有关的危害管道的因素是:•A、腐蚀•B、第三方破坏•C、土体移动•D、焊接缺陷我的答案:A 此题得分:2。
5分9.(2.5分)与时间无关的危害管道的因素是:•A、腐蚀•B、应力腐蚀•C、土体移动•25510 63A6 掦21492 53F4 叴•。
吉大18春学期《社交礼仪》在线作业一-0007
吉大18春学期《社交礼仪》在线作业一-0007
美国社会学家在把腾尼斯的社区概念翻译成英文时,强调了社区的A:人口素质
B:地域性
C:活动类型
D:文化特征
E:规模设施
答案:B
家庭访视的时间一般在
A:15分钟以内
B:30分钟以内
C:45分钟以内
D:60分钟以内
E:90分钟以内
答案:B
社区护士的主要角色不包括
A:照顾者
B:教导者
C:治疗者
D:协调者
E:研究者
答案:B
社区卫生服务主要的服务方式有以下各种,其中一项不完整
A:主动上门服务
B:开设家庭病床
C:方便就近诊疗
D:医疗与预防保健相结合E:向上级医院单向转诊
答案:E
社区护理起源于
A:18世纪,美国
B:18世纪,英国
C:18世纪,日本
D:19世纪中期,日本
E:19世纪中期,英国
答案:E
以下哪项不是护理伦理的原则A:自主原则
B:行善原则
C:公平原则
D:不伤害原则
E:公正原则
答案:C
社区人口特征评估,不包括A:人口的自然增长率
B:人口增长率
C:总抚养率
D:婴儿死亡率。
地大《高等数学(一)》在线作业一-0007.33EF5BB9-057A-456A-B1D6-068436839ABE(总8页)
B:正确
答案:A
B:1
C:2
D:3
答案:B
函数y=
B:1
C:2
D:3
答案:B
y=x+arctanx的单调增区间为
A:(0,+∞)
B:(-∞,+∞)
C:(-∞,0)
D:(0,1)
答案:B
对一个函数先求不定积分再求微分,两者的作用抵消后只差一个常数。
A:错误
B:正确
答案:A
一元函数可导必连续,连续必可导。
地大《高等数学(一)》在线作业一-0007
∫(1/(√x (1+x))) dx
A:等于-2arccot√x+C
B:等于1/((2/3)x^(3/2)+(2/5)x^(5/2))+C
C:等于(1/2)arctan√x+C
D:等于2√xln(1+x)+C
答案:A
g(x)=1+x,x不等0时,f[g(x)]=(2-x)/x,则f‘(0)=( )
A:2
B:-2
C:1
D:-1
答案:B
∫{(e^x-1)/(e^x+1)}dx 等于( )
A:(e^x-1)/(e^x+1)+C
B:(e^x-x)ln(e^x+1)+C
C:x-2ln(e^x+1)+C
D:2ln(e^x+1)-x+C
答案:D
微分方程y'+y=x+1的一个特解是( )
A:x+y=0
B:x-y=0
A:错误
B:正确
答案:A
周期函数有无数个周期
最新中国石油大学大学语文第一阶段在线作业
第一阶段在线作业单选题 (共20道题)收起1.(2.5分)“富贵不能淫章”中,居天下之(),立天下之(),行天下之();在括号中填入正确顺序的选项()。
∙A、安居、正位、大道∙B、广居、安居、正位∙C、广居、正位、大道∙D、正位、大道、广居我的答案:C 此题得分:2.5分2.(2.5分)选择下列恰当的句子填空:孟子曰:“民为贵,社稷次之,君为轻。
(),”∙A、是故得乎丘民而为天子∙B、诸侯危社稷,则变置∙C、得乎诸侯为大夫∙D、变置社稷我的答案:A 此题得分:2.5分3.(2.5分)“得道多助,失道寡助”的修辞手法是()。
∙A、对偶∙B、排比∙C、比喻∙D、顶真我的答案:A 此题得分:2.5分4.(2.5分)《苏武传》集中描写了苏武奉命出使匈奴,以及在异国()年的种种遭遇和表现。
∙A、十八∙B、十九∙C、九∙D、十我的答案:B 此题得分:2.5分5.(2.5分)评价《史记》为“史家之绝唱,无韵之离骚”的人是()。
∙A、韩愈∙B、毛泽东∙C、鲁迅∙D、方苞我的答案:C 此题得分:2.5分6.(2.5分)唐代擅长写《无题》诗的诗人是()。
∙A、李白∙B、王昌龄∙C、李商隐∙D、刘禹锡我的答案:C 此题得分:2.5分7.(2.5分)杜甫诗歌的风格是()。
∙A、沉郁顿挫∙B、飘逸奔放∙C、清新淡雅∙D、通俗易懂我的答案:A 此题得分:2.5分8.(2.5分)选择正确的选项完成原诗句:《春江花月夜》诗句:(),江月年年只相似。
∙A、江天一色无纤尘∙B、江畔何人初见月∙C、江水流春去欲尽∙D、人生代代无穷已我的答案:D 此题得分:2.5分9.(2.5分)选择正确的选项完成原诗句:《过故人庄》诗句:开轩面场圃,()。
∙A、邀我至田家∙B、绿树村边合∙C、把酒话桑麻∙D、还来就菊花我的答案:C 此题得分:2.5分10.(2.5分)选择正确的选项完成原诗句:《走马川行奉送出师西征》诗句:一川碎石大如斗,()。
∙A、随风满地石乱走∙B、轮台九月风夜吼∙C、半夜军行戈相拨∙D、将军金甲夜不脱我的答案:A 此题得分:2.5分11.(2.5分)文学作品中表现的,“可以向往追求却永远达不到追求目标”的一种意境被称为( )。
江南大学普通心理学网络教育在线作业答案
普通心理学第一阶段显示答案一、单选题( 每题1分共20道小题总分值20分下列选项中有且仅有一个正确答案,请在答题卷中填涂。
)1“一心两用”,这是注意的()。
A. 广度B. 稳定性C. 分配D. 转移2人为地有目的地控制和改变某种条件,使被试产生所要研究的某种心理现象而后分析,以得出心理活动发生的原因或起作用的规律性的方法,称之为()。
A. 观察法B. 实验法C. 调查法D. 测验法3在动物界,最低级的动物是()。
A. 节肢动物B. 原生动物C. 环节动物D. 爬行动物4“一目十行,一览无余”,这是()品质好。
A. 注意的广度B. 注意的稳定性C. 注意的分配D. 注意的转移5平衡觉又叫()。
B. 机体觉C. 静觉D. 内脏觉6“仁者见仁,智者见智”,这主要是因为人的心理具有()。
A. 客观性B. 社会性C. 主观性D. 自发性7狼孩之所以心理上与正常儿童有本质区别,主要原因是()。
A. 遗传因素B. 缺乏营养C. 受狼的影响D. 脱离社会环境8看见一面红旗,人们马上能认出它,这种心理活动是()。
A. 知觉B. 感觉C. 色觉D. 视觉9下列属于理论心理学的是()。
A. 普通心理学B. 教育心理学C. 广告心理学D. 管理心理学10有预定目的而无需意志努力的注意,称之为()。
B. 有意注意C. 有意后注意D. 随意注意11谈梅止渴属于()。
A. 无条件反射B. 非条件反射C. 第一信号系统D. 第二信号系统12心理学的研究对象是()。
A. 心理过程B. 心理现象C. 认知过程D. 个性心理13()被称为“生命中枢”。
A. 延脑B. 脑桥C. 中脑D. 间脑14感受性与感觉阈限是()。
A. 正比关系B. 反比关系C. 无一定关系D. 完全无关15注意的两个基本特性是()。
A. 指向性与选择性B. 紧张性与选择性C. 紧张性与集中性D. 指向性与集中性16能引起人的感觉的刺激物的最小量,这称之为()。
最新公共社交礼仪在线作业与答案优秀文档
公共社交礼仪第一阶段在线作业单选题 (共20道题)展开收起1.(2.5分)“拙荆”是指? A、自己的妻子? B、别人的妻子? C、自己的女儿? D、别人的女儿我的答案:A 此题得分: 2.5分2.(2.5分)在正式场合,男士应该穿的裤装是? A、牛仔裤? B、休闲裤? C、长度适宜的西裤我的答案:C 此题得分: 2.5分3.(2.5分)在正式场合,女士应该穿的衣装是? A、超短裙? B、套装? C、连衣裙我的答案:B 此题得分: 2.5分4.(2.5分)“钻石婚”是指结婚已经? A、45年? B、50年? C、55年? D、60年我的答案:D 此题得分: 2.5分5.(2.5分)正确的入座顺序是? A、小辈优先? B、平辈优先? C、长辈优先我的答案:C 此题得分: 2.5分6.(2.5分)进入无人管理的电梯时应比客人? A、同时进? B、先进? C、后进我的答案:B 此题得分: 2.5分7.(2.5分)社交界域的距离为? A、15厘米以内? B、15—75厘米之间? C、75—210厘米之间? D、210厘米以外我的答案:C 此题得分: 2.5分8.(2.5分)梧桐的含义是? A、长寿? B、长久? C、爱情? D、友谊我的答案:C 此题得分: 2.5分9.(2.5分)壮族自己的传统节日有? A、春节? B、端午节? C、中秋节? D、对歌节我的答案:D 此题得分: 2.5分10.(2.5分)我国民间习惯以多少岁为中寿? A、100岁? B、80岁? C、60岁我的答案:B 此题得分: 2.5分11.(2.5分)当外国领导人来访时,在机场要向其献鲜花,但忌讳用? A、白色的花? B、红色的花? C、黄色的花? D、紫色的花我的答案:C 此题得分: 2.5分12.(2.5分)目前国际上公认的衣着标准TPO原则中的O是指? A、Obey? B、Object? C、Observe我的答案:B 此题得分: 2.5分13.(2.5分)在英国、澳大利亚等国翘起大拇指的手势是指? A、夸奖? B、老爷子? C、拦车搭乘? D、滚蛋我的答案:C 此题得分: 2.5分14.(2.5分)出于礼貌给人写信时不应用哪种笔? A、钢笔? B、毛笔? C、签字笔? D、铅笔我的答案:D 此题得分: 2.5分15.(2.5分)“拥抱礼”是国际上的一种涉外礼仪,通行于? A、亚洲? B、欧美? C、非洲我的答案:B 此题得分: 2.5分16.(2.5分)如果要祝贺友人的开业庆典应送? A、花束? B、盆花? C、花篮? D、插花我的答案:C 此题得分: 2.5分17.(2.5分)标准的中餐最先上的菜应是? A、冷盘? B、热炒? C、主菜? D、点心我的答案:A 此题得分: 2.5分18.(2.5分)西班牙的国花是? A、玫瑰? B、郁金香? C、石榴? D、鸢尾花我的答案:C 此题得分: 2.5分19.(2.5分)“开斋节”是哪个宗教的节日? A、佛教? B、道教? C、基督教? D、伊斯兰教我的答案:D 此题得分: 2.5分20.(2.5分)“黄金之国”是哪个国家的别称? A、委内瑞拉? B、哥伦比亚? C、智利? D、巴西我的答案:B 此题得分: 2.5分多选题 (共20道题)展开收起21.(2.5分)在社交场合要根据哪些因素来选择发型? A、脸型? B、身材? C、职业? D、年龄? E、环境我的答案:ABCDE 此题得分:2.5分22.(2.5分)致意的形式有? A、起立? B、举手? C、点头? D、微笑? E、寒暄我的答案:ABC 此题得分:2.5分? A、代替通话? B、代替便函? C、代替请柬? D、便于通知我的答案:BCD 此题得分:2.5分24.(2.5分)以目的的不同为标准划分的拜访类型有? A、商业拜访? B、政治拜访? C、情感拜访? D、礼节性拜访? E、公务拜访我的答案:ABE 此题得分:0.0分25.(2.5分)以接待对象为标准划分的接待类型有? A、公务接待? B、商务接待? C、上访接待? D、消费接待? E、朋友接待我的答案:ABCDE 此题得分:2.5分26.(2.5分)社交场合中的待客礼仪有? A、敬茶递烟? B、交换名片? C、谈话? D、陪访我的答案:ABCD 此题得分:2.5分? A、及时接电话? B、自报家门? C、如果对方打错立即挂断? D、大声回答? E、后于对方挂断我的答案:ABE 此题得分:2.5分28.(2.5分)社交场合馈赠礼仪要注意? A、礼品的包装? B、赠礼的场合? C、赠礼时的态度动作? D、赠礼的时间我的答案:ABCD 此题得分:2.5分29.(2.5分)藏族的传统节日有? A、春节? B、开斋节? C、雪顿节? D、沐浴节我的答案:CD 此题得分: 2.5分30.(2.5分)加拿大又被称为? A、枫叶之国? B、万湖之国? C、冰球之乡? D、雪山之国我的答案:ABC 此题得分:2.5分31.(2.5分)绿色的象征意义是? A、和平? B、生命? C、青春? D、朴素我的答案:ABC 此题得分:2.5分32.(2.5分)基督教的主要节日有? A、圣诞节? B、复活节? C、受难节? D、主显节我的答案:ABCD 此题得分:2.5分33.(2.5分)请柬的内容包括? A、抬头? B、正文? C、尾语? D、落款? E、附言我的答案:ABCDE 此题得分:2.5分34.(2.5分)求职信要? A、简明扼要? B、内容清楚? C、文字简练? D、特点突出我的答案:ABCD 此题得分:2.5分35.(2.5分)社交场合中的交谈礼仪有? A、态度诚恳? B、语言亲切? C、注意聆听? D、礼貌周到? E、出言不逊我的答案:ABCD 此题得分:2.5分36.(2.5分)洗礼是成为基督徒的重要仪式,其方式有? A、注水洗礼? B、浸礼? C、点水礼? D、敷油礼我的答案:ABC 此题得分:2.5分37.(2.5分)常见的涉外会面礼仪有? A、鞠躬礼? B、合十礼? C、拥抱礼? D、亲吻礼我的答案:BCD 此题得分:2.5分38.(2.5分)自我介绍的分寸有? A、注意时间? B、讲究态度? C、力求真实? D、详尽繁复我的答案:ABC 此题得分:2.5分39.(2.5分)《周礼》中的“九仪”包括? A、受职? B、受服? C、受位? D、受器? E、赐官我的答案:ABCDE 此题得分:2.5分40.(2.5分)西餐的正餐程序花样繁多,一般有以下几种? A、开胃菜? B、面包? C、汤? D、主菜? E、点心我的答案:ABCDE 此题得分:2.5分第二阶段在线作业单选题 (共20道题)收起1.(2.5分)在正式场合,女士不化妆会被认为是不礼貌的,要是活动时间长了,应适当补妆,通常要在()补妆。
第1次作业 (1)
江苏开放大学
形成性考核作业学号:
姓名:
课程名称:计算机应用基础评阅教师:
第 1 次任务
共 3 次任务
作业内容:
Word 制作创业计划书
实践目标:
学习综合使用Word各种编排功能制作文档。
实践内容:
使用Word制作一个创业计划书,要求设计封面,内容有表格来介绍创业计划进程,用图片来介绍创业内容,不同的章节模块使用分页,设计好不同章节不同的页眉、页脚,使用文本框、艺术字等来美化文档表现形式。
实践操作:
参照课程参考教材项目实训内容,设计制作文档。
实验报告:
将制作好的文档内容放入本文档作业内容部分,作为课程第1次作业提交学习平台。
作业内容:
作业完成时间:年月日评阅意见:
评阅得分:
评阅教师:
评阅时间:年月日。
油气储运工程专业英语第一、二、三阶段在线作业
第一阶段在线作业单选题 (共13道题)1.(2.5分) The individual phases (gas, , liquid water, and solids) should be separated from each other as early as practical.∙ A、liquid hydrocarbon∙ B、free water∙ C、sludge∙ D、bubbles我的答案:A 此题得分:2.5分2.(2.5分) is the mainly compound in natural gas.∙ A、Oxygen∙ B、Methane∙ C、Ethane∙ D、Propane我的答案:B 此题得分:2.5分3.(2.5分) H2S and CO2 are very corrosive when is present.∙ A、liquid water∙ B、air∙ C、oxygen∙ D、bubbles我的答案:A 此题得分:2.5分4.(2.5分) H2S and CO2 are short for .∙ A、hydrogen sulfide and carbon dioxide∙ B、hydrogen sulfur and carbon oxygen∙ C、hydrogen sulfide and carbon oxygen∙ D、hydrogen sulfur and carbon dioxide我的答案:A 此题得分:2.5分5.(2.5分) Sweet gas refers to the gas containing .∙ A、ethane∙ B、CO2∙ C、H2S∙ D、water vapor我的答案:B 此题得分:2.5分6.(2.5分) are built in vertical, horizontal and spherical designs.∙ A、SeparatorsB、Heater-treaters∙ C、Towers∙ D、Meters我的答案:A 此题得分:2.5分7.(2.5分) The size of heat-treater is dependent upon the of oil and water to be handled.∙ A、pressure∙ B、temperature∙ C、volume∙ D、composition我的答案:C 此题得分:2.5分8.(2.5分) An emulsion is a combination of two immiscible .∙ A、solids∙ B、liquids∙ C、waters∙ D、gases我的答案:B 此题得分:2.5分9.(2.5分) For the formation of a stable emulsion, the liquids must be .∙ A、mixedB、dispersed∙ C、free∙ D、immiscible我的答案:D 此题得分:2.5分10.(2.5分) There must be sufficient to disperse one liquid as droplets in the other for the formation of a stable emulsion.∙ A、agitation∙ B、mixing∙ C、flowing∙ D、bubbles我的答案:A 此题得分:2.5分11.(2.5分) There must be an for the formation of a stable emulsion.∙ A、demulsifier∙ B、salt∙ C、emulsifier∙ D、 water我的答案:C 此题得分:2.5分12.(2.5分) In W/O emulsion, is the dispersed phase.∙ A、demulsifierB、oil∙ C、emulsifier∙ D、 water我的答案:D 此题得分:2.5分13.(2.5分) Hydrate inhibitors is used to lower of water vapor and thus prevent hydrate formation in flow lines.∙ A、pressure∙ B、temperature∙ C、flow rate∙ D、freezing point我的答案:D 此题得分:2.5分多选题 (共13道题)展开收起14.(2.5分) The non-hydrocarbons may contain .∙ A、carbon∙ B、oxygen∙ C、sulfur∙ D、nitrogen我的答案:ABCD 此题得分:2.5分15.(2.5分) The non-hydrocarbon contaminants must be removed as much as feasible for .∙ A、storage∙ B、transport∙ C、reinjection∙ D、disposal我的答案:ABCD 此题得分:2.5分16.(2.5分) Dehydration of produced oil involves .∙ A、residence time∙ B、chemical addition∙ C、heat∙ D、electrostatic fields我的答案:ABCD 此题得分:2.5分17.(2.5分) Types of equipment used for removing oil and solids during produced water treatment include .∙ A、oil skimmer tanks∙ B、plate coalescers∙ C、air flotation tanks∙ D、hydrocyclones我的答案:ABCD 此题得分:2.5分18.(2.5分) The separation of natural gas from liquids and/or impurities in a separator combines .∙ A、gravity∙ B、time∙ C、mechanical processes∙ D、chemicals我的答案:ABCD 此题得分:2.5分19.(2.5分) For separation of well-stream fluids, the operating pressure of separator is dependent upon .∙ A、the pressure of the gas sales line∙ B、the flowing pressure of the well∙ C、flow rate∙ D、operating pressure我的答案:ABD 此题得分:2.5分20.(2.5分) During oil treating, must be removed before selling the oil.∙ A、Liquid hydrocarbon∙ B、gas∙ C、water∙ D、sediment我的答案:BCD 此题得分:2.5分21.(2.5分) In an emulsion,the liquid that is broken up into droplets is known as the .∙ A、discontinuous phase∙ B、dispersed phase∙ C、internal phase∙ D、continuous phase我的答案:ABC 此题得分:2.5分22.(2.5分) Whether an emulsion is tight or loose depends on several factors,including .∙ A、the properties of the oil and water∙ B、the percentage of oil and water in the emulsion∙ C、the type and amount of emulsifier present∙ D、the pressure and temperature of emulsion我的答案:ABC 此题得分:2.5分23.(2.5分) Refining of water-bearing crude can cause severe problems.∙ A、leakage∙ B、pollution∙ C、corrosion∙ D、plugging我的答案:CD 此题得分:2.5分24.(2.5分) Sour gas may contain .∙ A、sulfur compounds∙ B、CO2∙ C、H2S∙ D、water vapor我的答案:AC 此题得分:2.5分25.(2.5分) The aim of removal of acid gases includes that .∙ A、they will cause corrosion problems∙ B、they will cause plugging∙ C、they have no heating value∙ D、H2S is lethal in very small quantities我的答案:ACD 此题得分:2.5分26.(2.5分) For gas sweetening process, which ones are right?∙ A、In batch processes, the reactant can be regenerated.∙ B、The aqueous amine solutions can be regenerated.∙ C、The physical solvents can be regenerated with heat.∙ D、Direct oxidation to sulfur practically eliminates H2S emissions.我的答案:BD 此题得分:2.5分判断题 (共14道题)展开收起27.(2.5分) Oil is the blood of industry.∙正确∙错误我的答案:正确此题得分:2.5分28.(2.5分) Dehydration of produced oil is required to reduce the water content to a value acceptable for transportation or sales.∙正确∙错误我的答案:正确此题得分:2.5分29.(2.5分) The major goal of oil removal from produced water is to prevent reservoir plugging.∙正确∙错误我的答案:正确此题得分:2.5分30.(2.5分) LNG is natural gas liquids.∙正确∙错误我的答案:错误此题得分:2.5分31.(2.5分) The equipment most widely used for separation of well-stream gas from free liquids is referred to as a separator.∙正确∙错误我的答案:正确此题得分:2.5分32.(2.5分) Heater-treaters can be vertical, horizontal or spherical in design.∙正确∙错误我的答案:错误此题得分:2.5分33.(2.5分) In an emulsion, liquids do not mix together under normal conditions.∙正确∙错误我的答案:正确此题得分:2.5分34.(2.5分) API is short for American Petroleum Institute.∙正确∙错误我的答案:正确此题得分:2.5分35.(2.5分) The viscosity of crude oil decreases as the water content is increased.∙正确∙错误我的答案:错误此题得分:2.5分36.(2.5分) W/O emulsion is also called regular or normal emulsion.∙正确∙错误我的答案:正确此题得分:2.5分37.(2.5分) Degassing should be done prior to emulsion treating.∙正确∙错误我的答案:正确此题得分:2.5分38.(2.5分) Dehydration of natural gas includes: absorption and adsorption.∙正确∙错误我的答案:正确此题得分:2.5分39.(2.5分) In absorption, the desiccant is liquid.∙正确∙错误我的答案:正确此题得分:2.5分40.(2.5分) In adsorption, the desiccant is liquid.∙正确∙错误我的答案:错误此题得分:2.5分第二阶段在线作业单选题 (共13道题)1.(2.5分) In pumping any liquid, the goal is to add energy to the liquid to cause it to move through a pipeline by overcoming the resistance of friction and changes in .∙ A、speed∙ B、flow∙ C、site∙ D、elevation我的答案:D 此题得分:2.5分2.(2.5分) Positive displacement pumps are used for volumes and when required pumping pressure is .∙ A、Small, moderate∙ B、Large, high∙ C、Large, moderate∙ D、Small, high我的答案:D 此题得分:2.5分3.(2.5分) In general, when large volume of liquid to be pumped and pressures are moderate, which equipment will be chosen?∙ A、centrifugal pumps∙ B、centrifugal compressors∙ C、positive displacement pumps∙ D、reciprocating compressors我的答案:A 此题得分:2.5分4.(2.5分) When pumps are connected in parallel, each pump operates at approximately .∙ A、same suction pressure and different discharge pressure ∙ B、same suction and discharge pressure∙ C、different suction and discharge pressure∙ D、different suction pressure and same discharge pressure 我的答案:B 此题得分:2.5分5.(2.5分) In a centrifugal unit, rotates.∙ A、diffuser∙ B、housing∙ C、impeller∙ D、rod我的答案:C 此题得分:2.5分6.(2.5分) For tight line operation, which one is right?∙ A、One station pumps directly into the suction side of the pumps at the next station and no tankage is open to the suctionmanifold at the intermediate station.∙ B、One station pumps directly into the tankage at the next station and no tankage is open to the suction manifold at theintermediate station.∙ C、One station pumps directly into the suction side of the pumps at the next station and a small tank is open to the suction manifold at the intermediate station.∙ D、One station pumps directly into the tankage at the nextstation and a small tank is open to the suction manifold at theintermediate station.我的答案:A 此题得分:2.5分7.(2.5分) If compressor cylinders of a single integral reciprocating compressors unit are operated in parallel, each cylinder operates with .∙ A、different suction and discharge pressure∙ B、different suction pressure and same discharge pressure ∙ C、same suction pressure and different discharge pressure ∙ D、same suction and discharge pressure我的答案:D 此题得分:2.5分8.(2.5分) In centrifugal compressors, energy is added to the gas by impeller .∙ A、confining∙ B、rotating∙ C、compressing∙ D、burning我的答案:B 此题得分:2.5分9.(2.5分) In centrifugal compressors, energy is added to the gas .∙ A、by confining the gas and then compressing∙ B、by the rotation of an impeller∙ C、by confining the gas∙ D、by compressing the gas我的答案:B 此题得分:2.5分10.(2.5分) Depending on the type of gas, may also be needed between compression stages to remove any liquids condensed by interstage cooling.∙ A、meters∙ B、heat exchanger∙ C、separators∙ D、tower我的答案:C 此题得分:2.5分11.(2.5分) In liquid pipeline, Pigs and sphere travel .∙ A、at higher velocity than liquid in the pipeline∙ B、awhile, then stop∙ C、at lower velocity than liquid in the pipeline∙ D、at about constant velocity我的答案:D 此题得分:2.5分12.(2.5分) Pipelines are often pigged first .∙ A、during construction∙ B、during ordinal operation∙ C、during testing following construction∙ D、after connection我的答案:C 此题得分:2.5分13.(2.5分) A pig launcher may be required .∙ A、at the end of the segment being pigged and at the end ofa station∙ B、at the beginning of the segment being pigged and at the beginning of a station∙ C、at the beginning of the segment being pigged and at the end of a station∙ D、at the end of the segment being pigged and at the beginning of a station我的答案:C 此题得分:2.5分多选题 (共12道题)展开收起14.(2.5分) The size of flowlines required varies according to .∙ A、the capacity of the well being served∙ B、the temperature∙ C、the length of the line∙ D、the pressure available at the producing well我的答案:ACD 此题得分:2.5分15.(2.5分) This network of crude trunk lines comprises a wide variety of pipe .∙ A、locations∙ B、sizes∙ C、capacities∙ D、pressures我的答案:BC 此题得分:2.5分16.(2.5分) Pumping station must also be spaced along the pipeline to maintain pipeline pressure at the level required to overcome .∙ A、friction∙ B、leakage∙ C、changes in elevation∙ D、other pressure losses我的答案:ACD 此题得分:2.5分17.(2.5分) In selecting the station site, which should be considered?∙ A、Type of pump∙ B、Environmental protection∙ C、Safety considerations∙ D、Engineering design criteria我的答案:BCD 此题得分:2.5分18.(2.5分) Products shipped include .∙ A、several grades of gasoline∙ B、aviation gasoline∙ C、diesel∙ D、home heating oils我的答案:ABCD 此题得分:2.5分19.(2.5分) Equipment in an individual station varies in both size and type, depending on .∙ A、the volume of fluid being handled and its properties∙ B、the size of the pipeline system∙ C、the type of monitoring and control used∙ D、the remoteness of the station我的答案:ABCD 此题得分:2.5分20.(2.5分) In a pumping station, the main items are .∙ A、Pumps∙ B、drivers∙ C、meters∙ D、pipes我的答案:AB 此题得分:2.5分21.(2.5分) The characteristics of oil & gas pipeline systems include:∙ A、Lower transportation costs∙ B、Increase the ease of operation∙ C、Decrease evaporation loss∙ D、Decrease transportation time我的答案:ABCD 此题得分:2.5分22.(2.5分) adds energy to the flowing fluid to cause it to move through the pipeline.∙ A、Pumps∙ B、Compressors∙ C、Pigs∙ D、Meters我的答案:AB 此题得分:2.5分23.(2.5分) Volume that reciprocating compressor unit can compress under given conditions depends on:∙ A、size of cylinder∙ B、length of the piston stroke∙ C、clearance volume within the cylinder∙ D、temperature and pressure of gas flow我的答案:ABC 此题得分:2.5分24.(2.5分) The type of information gathered by smart pigs includes .∙ A、pipeline diameter∙ B、bends∙ C、temperature and pressure∙ D、corrosion我的答案:ABCD 此题得分:2.5分25.(2.5分) Pipeline pigging is done to .∙ A、periodically remove wax, dirt, and water from the pipeline∙ B、separate products to reduce the amount of interface between different types of crude oil or refined products.∙ C、control liquids in a pipeline∙ D、inspect pipelines for defects我的答案:ABCD 此题得分:2.5分判断题 (共15道题)展开收起26.(2.5分) Gathering lines are the first link in the transportation chain from producing well to consumer.∙正确∙错误我的答案:错误此题得分:2.5分27.(2.5分) The originating station is usually most complex.∙正确∙错误我的答案:正确此题得分:2.5分28.(2.5分) Pumps are required only at the beginning of the trunk line.∙正确∙错误我的答案:错误此题得分:2.5分29.(2.5分) Crude trunk lines operate at the same pressure as field-gathering systems.∙正确∙错误我的答案:错误此题得分:2.5分30.(2.5分) Crude trunk lines are made of steel.∙正确∙错误我的答案:正确此题得分:2.5分31.(2.5分) In general, gas pipelines operate at the same pressures as crude lines.∙正确∙错误我的答案:错误此题得分:2.5分32.(2.5分) Much of the line pipe used today is manufactured according to specifications of API.∙正确∙错误我的答案:正确此题得分:2.5分33.(2.5分) Seamless steel pipe is made with a longitudinal weld by hot working lengths of steel to produce pipe of the desired size and properties.∙正确∙错误34.(2.5分) Reciprocating compressors have more moving parts and lower mechanical efficiencies than centrifugal compressors.∙正确∙错误我的答案:正确此题得分:2.5分35.(2.5分) The number of booster stations is constant in liquids pipeline systems.∙正确∙错误我的答案:错误此题得分:2.5分36.(2.5分) When pumps are connected in parallel, the total flow volume is handled by each pump.∙正确∙错误我的答案:错误此题得分:2.5分37.(2.5分) Liquids and gases are compressible.∙正确∙错误38.(2.5分) The output from a centrifugal compressor is smoother than reciprocating compressors.∙正确∙错误我的答案:正确此题得分:2.5分39.(2.5分) Interstage cooling between compression stages can be done by air cooling, by cooling with water, or by exchanging heat with inlet gas.∙正确∙错误我的答案:正确此题得分:2.5分40.(2.5分) Barrel diameter is the same as pipeline.∙正确∙错误我的答案:错误此题得分:2.5分第三阶段在线作业单选题 (共10道题)1.(2.5分) If the refinery is supplied by tanker, days of storage is recommended.∙ A、30-32∙ B、32-35∙ C、6∙ D、16-18我的答案:B 此题得分:2.5分2.(2.5分) Natural gas demand is highly dependent on .∙ A、weather∙ B、regulation∙ C、production∙ D、compressor我的答案:A 此题得分:2.5分3.(2.5分) Because LNG must be stored at very low temperatures to maintain it in a liquid state, is one of the most important elements of LNG storage design�.∙ A、temperature∙ B、pressure∙ C、insulation∙ D、shape我的答案:C 此题得分:2.5分4.(2.5分) For fixed-roof tank, which one is right?∙ A、For cone-roof tanks, they don’t have cylindrical shells.∙ B、For cone-roof tanks, the top is made in the form of a shallow cone.∙ C、Umbrella-roof tanks are usually constructed to diameters larger than 60ft.∙ D、For umbrella-roof tanks, there are column supports that must be run to the bottom of the tank.我的答案:B 此题得分:2.5分5.(2.5分) For floating-roof tanks, they have a cover that floatson the surface of the .∙ A、liquid∙ B、pipeline∙ C、gas∙ D、shell我的答案:A 此题得分:2.5分6.(2.5分) The floating cover or roof is a disk structure that has sufficient to ensure that the roof will float under all expected conditions.∙ A、weight∙ B、diameter∙ C、buoyancy∙ D、pressure我的答案:C 此题得分:2.5分7.(2.5分) Corrosion is usually the most severe at the .∙ A、bottom∙ B、top∙ C、shell∙ D、interface我的答案:A 此题得分:2.5分8.(2.5分) It is necessary to dry natural gas pipelines, .∙ A、after hydrostatic testing∙ B、when the line is put into service∙ C、following pipeline construction∙ D、before hydrostatic testing我的答案:A 此题得分:2.5分9.(2.5分) During hydrostatic testing, fill the line with water and subjecting it to a pressure to check for leaks.∙ A、greater than the design operating pressure∙ B、the same as the design operating pressure∙ C、lower than the design operating pressure∙ D、the same as the allowable pressure我的答案:A 此题得分:2.5分10.(2.5分) Metering problem is more complicated in gas lines since corrections are more important.∙ A、temperature∙ B、pressure∙ C、temperature and pressure∙ D、volume我的答案:C 此题得分:2.5分多选题 (共13道题)展开收起11.(2.5分) Factors help determine the amount of storage a refinery needs for both feedstock and products include:∙ A、product delivery∙ B、refinery complexity∙ C、seasonal demand∙ D、turnarounds我的答案:ABCD 此题得分:2.5分12.(2.5分) At tanker terminals, the amount of storage depends on:∙ A、the amount and type of product handled∙ B、the number, capacity, and type of tanker berths∙ C、expected periods of downtime∙ D、the number and size of ships using the terminal�我的答案:ABCD 此题得分:2.5分13.(2.5分) Considerations involved in designing large crude storage tanks include:∙ A、integrity of the foundation∙ B、safety∙ C、maintenance requirements and ease of maintenance∙ D、operating efficiency我的答案:ABCD 此题得分:2.5分14.(2.5分) For EFR, which ones are right?∙ A、The design conditions of the external floating roof are more severe.∙ B、Pontoon roof is simply a steel deck with an annular compartment that provides buoyancy.∙ C、Double-deck roofs are strong and durable roofs.∙ D、Pontoon roofs are suitable for large diameter tanks.我的答案:ABC 此题得分:2.5分15.(2.5分) For IFR, which ones are right?∙ A、IFR is covered by a fixed roof on top of the tank.∙ B、Pan roofs are simple sheet-steel disks with the edge turned up for buoyancy.∙ C、Bulkhead pan roof has open annular compartments at the periphery to prevent the roof from sinking.∙ D、Skin and pontoon roofs are usually constructed of an aluminum skin supported on a series of tubular aluminum pontoons.我的答案:ABCD 此题得分:2.5分16.(2.5分) For floating roof, it can .∙ A、reduce emissions from the storage of volatile organic compounds∙ B、reduce the potential for vapor space explosions∙ C、eliminate the possibility of boilover phenomenon∙ D、be constructed of steel我的答案:ABC 此题得分:2.5分17.(2.5分) For double-deck roof, which ones are right?∙ A、It is the heaviest but most durable construction of all the roofs.∙ B、It is most economic for small diameters up to about 30ft and very large diameter from about 200 to over 300ft.∙ C、It maintains good rigidity under normal conditions.∙ D、It is much better insulated from solar heat gain�.我的答案:ABCD 此题得分:2.5分18.(2.5分) PV Valves are often referred to as .∙ A、pressure vacuum vent valves∙ B、pressure volume valves∙ C、breather valves∙ D、conservation valves�我的答案:ACD 此题得分:2.5分19.(2.5分) For actual installation of pipeline, which ones are right?∙ A、Applying coating and wrapping to the exterior of the pipe should be done after welding.∙ B、Testing pipeline for leak is the last step.∙ C、Width of the pipeline ditch varies according to the size of the pipeline.∙ D、Backfilling of the ditch on top of the pipeline can be done with the soil excavated from the ditch.我的答案:ABCD 此题得分:2.5分20.(2.5分) About corrosion, which are right?∙ A、Corrosion of iron and steel is a natural process.∙ B、Iron is not stable in its refined state.∙ C、Corrosion is selective and concentrated.∙ D、The basic corrosion mechanism of iron underground is electrochemical�.我的答案:ABCD 此题得分:2.5分21.(2.5分) In selecting product for coatings, which should beconsidered?∙ A、Elasticity∙ B、Hardness∙ C、Adherence∙ D、Ease of application我的答案:ABCD 此题得分:2.5分22.(2.5分) For gas metering, which ones are right?∙ A、The utilization range of a differential pressure meter is relatively narrow.∙ B、Positive-displacement meter has a direct reading of volumes.∙ C、For turbine-type meters, mechanical friction in the turbine must be minimal.∙ D、Mass-flow meters directly measure the mass of the fluid passing through the meter.我的答案:ABCD 此题得分:2.5分23.(2.5分) For liquid metering, which ones are right?∙ A、A pipeline meter must be sturdy enough.∙ B、The parts in the positive-displacement meters have to be very precisely machined.∙ C、The products through positive-displacement meters must be filtered.∙ D、Compared with PD meters of equal output, turbine meters are much less bulky, sturdier and of simpler design.我的答案:ABCD 此题得分:2.5分判断题 (共17道题)展开收起24.(2.5分) The capacity of individual storage tanks orfacilities varies widely.∙正确∙错误我的答案:正确此题得分:2.5分25.(2.5分) If products are delivered continuously to a pipeline, storage needs will be reduced.∙正确∙错误我的答案:正确此题得分:2.5分26.(2.5分) A refinery must have storage for crude to feed the refinery and the products it manufactures.∙正确∙错误我的答案:正确此题得分:2.5分27.(2.5分)Natural gas can’t be stored in depletedoil-producing formations.∙正确∙错误我的答案:错误此题得分:2.5分28.(2.5分) Low-pressure tanks mean tanks designed for a lower pressure than atmospheric tanks�.∙正确∙错误我的答案:错误此题得分:2.5分29.(2.5分) Almost all tanks are cylindrical on the shell portion.∙正确∙错误我的答案:正确此题得分:2.5分30.(2.5分) IFR is open on top of the tank.∙正确∙错误我的答案:错误此题得分:2.5分31.(2.5分) Flat-bottom tank is used for tanks less than 60-200 ft in diameter.∙正确∙错误我的答案:错误此题得分:2.5分32.(2.5分) The internal floating roofs may be constructed of steel or aluminum or plastic�.∙正确∙错误我的答案:正确此题得分:2.5分33.(2.5分) Extensive testing of welders and the welds they produce is not important for the construction of alllong-distance petroleum pipelines.∙正确∙错误我的答案:错误此题得分:2.5分34.(2.5分) Most offshore pipelines are not buried below seabed.∙正确∙错误我的答案:错误此题得分:2.5分35.(2.5分) Corrosion is distributed�over the entire metal surface.∙正确∙错误我的答案:错误此题得分:2.5分36.(2.5分) Electrolytic corrosion may be rapid and intensive�.∙正确∙错误我的答案:正确此题得分:2.5分37.(2.5分) Insulation of pipeline from soil with a suitable coating is enough.∙正确∙错误我的答案:错误此题得分:2.5分38.(2.5分) For refined hydrocarbon storage tanks, bottom pitting and general corrosion are less severe than crude oil tanks.∙正确∙错误我的答案:正确此题得分:2.5分39.(2.5分) Metering liquid-carry lines requires even higher accuracy than gas pipelines.∙正确∙错误我的答案:正确此题得分:2.5分40.(2.5分) The meters must be calibrated under the actual working conditions.∙正确∙错误我的答案:正确此题得分:2.5分。
《计算机应用基础》第1阶段在线作业
《计算机应用基础》第1阶段在线作业计算机应用基础第1阶段在线作业计算机应用基础是一门关于计算机基本原理和应用的课程,通过学习这门课程,我们可以了解计算机的工作原理、常见应用软件以及计算机在不同领域的应用。
在线作业是课程学习的重要组成部分,通过在线作业的完成,我们可以巩固所学的知识,提升实践能力。
本文将介绍计算机应用基础第1阶段在线作业的内容和要求。
第1阶段在线作业主要包括以下几个方面的内容:1. 计算机基础知识概述在这个部分,我们需要回顾计算机的基本概念、组成部分和工作原理。
了解计算机的硬件和软件组成,掌握计算机的层次结构和工作原理,对于后续的学习和应用都非常重要。
2. 操作系统操作系统是计算机的核心软件之一,它负责管理计算机的资源,提供用户与计算机硬件之间的接口。
在这个部分,我们需要学习操作系统的基本概念、功能和特点,熟悉常见的操作系统类型和使用方法。
3. 常见应用软件除了操作系统,计算机还有许多其他的常见应用软件,比如办公软件、图像处理软件、多媒体软件等。
在这个部分,我们需要学习这些软件的基本功能和使用方法,掌握它们在实际工作中的应用。
4. 网络基础计算机网络是连接多台计算机的系统,它可以实现计算机之间的信息交换和资源共享。
在这个部分,我们需要了解计算机网络的基本概念和工作原理,熟悉网络的组成和相关技术,以及网络安全和常见的网络问题。
5. 数据库基础数据库是用于存储和管理数据的系统,它在各种应用场景中都有广泛的应用。
在这个部分,我们需要学习数据库的基本概念和组成,了解数据库管理系统的功能和特点,以及数据库的设计和查询方法。
完成这些作业的要求如下:1. 仔细阅读每个作业的题目和要求,确保理解作业的内容和目标。
2. 根据作业要求,进行相关的学习和实践。
可以参考教材、课堂笔记和网络资源,但需要注意避免抄袭和剽窃行为。
3. 在线作业一般要求以电子文档的形式提交,可以使用常见的办公软件如Microsoft Word或者使用在线编辑器。
中国石油大学(北京)计算机应用基础CJ成教在线作业及答案
计算机应用基础CJ(成教)在线作业计算机应用基础第一阶段在线作业单选题1.下列设备组中,完全属于输出设备的一组是()A、喷墨打印机,显示器,键盘B、激光打印机,键盘,鼠标器C、键盘,鼠标器,扫描仪D、打印机,绘图仪,显示器正确答案:D2.显示器的主要技术指标之一是()A、分辨率B、亮度C、彩色D、对比度正确答案:A3.下列关于ASCIl编码的叙述中,正确的是()A、一个字符的标准ASCⅡ码占一个字节,其最高二进制位总为1B、所有大写英文字母的ASCⅡ码值都小于小写英文字母‘a’的ASCⅡ码值C、所有大写英文字母的ASCⅡ码值都大于小写英文字母‘a’的ASCⅡ码值D、标准ASCⅡ码表有256个不同的字符编码正确答案:B4.冯·诺伊曼体系结构的核心设计思想是()。
A、存储程序原理B、计算机中的数据以二进制表示C、计算机硬件由五大部件组成D、程序设计正确答案:A5.计算机中用来保存程序和数据,以及运算的中间结果和最后结果的装置是()。
A、RAMB、ROMC、内存和外存D、高速缓存正确答案:C6.下列各数中最小的是()。
A、十进制数25B、二进制数10101C、八进制数26D、十六进制数1A正确答案:B7.以下字符的ASCII码值最大的是()。
A、5B、6C、AD、a正确答案:D8.衡量计算机的主要技术指标有()。
A、外设、内存容量、体积B、语言、外设、速度C、软件、速度、重量D、主频、字长、内存容量正确答案:D9.利用计算机来模仿人的高级思维活动称为()。
A、数据处理B、过程控制C、计算机辅助设计D、人工智能正确答案:D10.在Windows中不属于控制面板操作的是()。
A、更改桌面背景B、添加新硬件C、造字D、调整鼠标的使用设置正确答案:C11.第一台全数字电子计算机()于1946年诞生。
A、EDVACB、ENIACC、EDSACD、银河I正确答案:B12.以电子管为部件的计算机是()计算机。
地大《大学英语(四)》在线作业一-答案100
A can
B must
C might
D should
【答案】:C
6. _____ today, he would get there by Friday.
【选项】:
A Would he leave
B Was he leaving
C Were he to leave
【选项】:
A that
B how
C such
D so
【答案】:B
17. He treated me as though/as if _____ his own son.
【选项】:
A I am
B I would be
C I was
D I were
【答案】:D
18. Are you still thinking about yesterday’s game?
【选项】:
A If
B Unless
【答案】:A
11. ______ he use your bike?
Certainly. Here is the key.
【选项】:
A Shall
B Must
C Will
D Does
【答案】:A
12. This machine, ______for many years, is still working perfectly.
D that
【答案】:D
15. Not only I but also David and Iris ______ fond of playing basketball.
第一次作业模板
“信息技术支持的教学环节优化”课程作业模板说明:信息技术支持导入、讲授、评价等环节优化的三项作业,可以是同一节课中不同环节的技术应用,也可以是不同课中相应环节的技术应用。
作者信息
信息技术支持的导入环节优化(一)
第一步:设计前的分析
第二步:技术支持的导入设计
说明:在这一步里,请将你在导入环节上要说的话,预估的时间,所采用的信息技术支持(请具体说明如何利用信息技术来优化导入效果,并截取重要画面,链接相应的文档)呈现在下表中。
信息技术支持的讲授环节优化(二)
第一步:设计前的分析
第二步:技术支持的讲授设计
说明:在这一步里,请你在下表左栏简述讲授环节的主要教学活动(一至二个),并在下表
信息技术支持的评价优化(三)
第一步:设计前的分析
说明:请根据本节课的教学过程,针对一至两个具体的教学活动进行评价设计,在表格呈现您设计此项评价的目的、所采用的评价方法、及需使用的信息技术工具。
(注:两个评价设
第二步:技术支持的评价设计
说明:在这一步里,请将你在该环节的教学、评价目的、评价方法和评价工具呈现在下表中。
在“评价工具”一栏中,除量规外,其他均需信息技术的支持(请具体说明如何利用信息技。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
第1题接受主义美学是西方美学思潮之一,20世纪60年代产生于以下哪国
您的答案:C
题目分数:0.5
此题得分:0.5
批注:接受主义美学是由康茨坦斯大学文艺学教授尧斯在1967年提
出的。
第2题名作《画家之母》的作者是
您的答案:A
题目分数:0.5
此题得分:0.5
批注:丢勒的《画家之母》是非常有名的一副素描作品。
美术史上有多
位画家曾描绘过自己的母亲,但选项中三人没有这个题材的作品。
第3题关于艺术欣赏性质的说法下列错误的是
您的答案:C
题目分数:0.5
此题得分:0.5
批注:艺术欣赏有不可言传性、不可言传性、主观差异性。
第4题关于中世纪艺术,错误的表达是
您的答案:B
题目分数:0.5
此题得分:0.5
批注:中世纪艺术表现题材紧密围绕宗教,认为神与人是对立的。
第5题艺术史上第一位画家是
您的答案:C
题目分数:0.5
此题得分:0.5
批注:他属于文艺复兴早期的一个代表人物。
第6题以下那幅是乔托的作品
您的答案:A
题目分数:0.5
此题得分:0.5
批注:《胜利女神》是雕塑作品,与题干不符,直接排除;《圣三位一体》是中世纪时期作品。
第7题达芬奇的老师是
您的答案:B
题目分数:0.5
此题得分:0.5
批注:达芬奇和他的老师合作过一张《基督受洗》。
第8题哪个作品不是达芬奇的作品
您的答案:A
题目分数:0.5
此题得分:0.5
批注:《大卫》是米开朗基罗的雕塑。
第9题米开朗琪罗的晚年作品是
您的答案:B
题目分数:0.5
此题得分:0.5
批注:除《美第奇陵墓的雕像》外,其他三项均属其创作盛期作品。
第10题威尼斯画派开始把什么作为艺术表现对象
您的答案:D
题目分数:0.5
此题得分:0.5
批注:威尼斯画派最早开始描绘风景。
第11题世界上第一幅油画作品是
您的答案:D
题目分数:0.5
此题得分:0.5
批注:《根特祭坛画》、《阿尔诺芬尼夫妇像》的作者最早发明油画,在这之前的技法是坦培拉或湿壁画等。
第12题勃鲁盖尔的作品都是表现什么题材?
您的答案:C
题目分数:0.5
此题得分:0.5
批注:勃鲁盖尔16世纪尼德兰地区最伟大的画家,他出生于一个贫困
的农民家庭,他的作品基本分为这样几种:一、采用民间故事里所描写的人与恶魔战斗的情节,来隐喻他所生活的时代政治;二、以选择恰当的圣经故事为绘画题材,影射西班牙反动统治和尼德兰人民革命事件,这方面往往采用夸张方法;三、表现民间习俗场面与农民生活方式,来披露他对农民的感情。
第13题《劫夺吕西普斯的女儿》的作者是
您的答案:A
题目分数:0.5
此题得分:0.5
批注:该画作者还画过《圣乔治屠龙》、《美惠三女神》。
第14题《侏儒塞巴斯蒂安》的作者是
您的答案:B
题目分数:0.5
此题得分:0.5
批注:作者是西班牙巴洛克艺术最杰出的代表人物。
第15题《浴后的狄安娜》属于哪个时期的作品?
您的答案:C
题目分数:0.5
此题得分:0.5
批注:《浴后的狄安娜》风格纤巧、精美、浮华、繁琐。
第16题艺术欣赏的本质是对艺术作品空虚空白不确定性的填补。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:艺术欣赏的本质是对艺术作品空虚空白不确定性的填补,即艺术接受。
第17题史前绘画题材大多是动物,因为原始人把动物奉为神灵。
您的答案:错误
题目分数:0.5
此题得分:0.5
批注:史前绘画之所以题材多是动物,都是狩猎的对象,由狩猎社会决定的,带有巫术性质。
第18题文字产生之前的艺术叫史前艺术。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:“史前艺术”,史前艺术就是文字产生以前的艺术。
我们平常所说的艺术是指文明社会的艺术,是指文字产生以后的艺术。
所以史前艺术我们也叫做“准艺术”。
第19题《蒂奥多拉皇后和她的侍从》是中世纪时期的作品。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:《查丁尼大帝和他的侍从》与《蒂奥多拉皇后和她的侍从》是拜占庭教堂中的镶嵌壁画。
第20题《拉奥孔》是文艺复兴时期的重要作品。
您的答案:错误
题目分数:0.5
此题得分:0.5
批注:《拉奥孔》是古希腊雕塑。
第21题《著名画家、雕塑家、建筑家传》的作者是瓦萨里。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:瓦萨里是文艺复兴时期画家、美术史家。
第22题达芬奇出生在意大利的芬奇镇。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:他出生的地方因为他而命名。
第23题达芬奇是欧洲油画的创始人。
您的答案:错误
题目分数:0.5
批注:北欧文艺复兴出现了欧洲最早的油画。
第24题《大卫》、《创造亚当》的作者是达芬奇。
您的答案:错误
题目分数:0.5
此题得分:0.5
批注:雕塑《大卫》和西斯廷天顶壁画(《创造亚当》是其中一个场景)作者都是同一人,他的作品气势大,注重男性的刚毅的美。
第25题《雅典学院》是拉斐尔的代表作之一。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:《雅典学院》的作者擅长画圣母像,绘画风格秀美、圆润、柔和。
第26题威尼斯画派的提香代表作为《熟睡的维纳斯》。
您的答案:错误
题目分数:0.5
此题得分:0.5
批注:《熟睡的维纳斯》作者是乔尔乔内。
第27题凡·埃克兄弟的代表作是《阿尔诺芬尼夫妇像》。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:《阿尔诺芬尼夫妇像》的作者发明了油画。
第28题《西门家的晚宴》作者是委罗内塞。
您的答案:正确
题目分数:0.5
此题得分:0.5
批注:作者就是委罗内塞,这幅画表现的其实就是最后的晚餐。
第29题《基督受洗》是达芬奇和委罗基奥合作完成的唯一一张画。
您的答案:正确
题目分数:0.5
批注:该画是委罗基奥生病期间让学生达芬奇参与完成的,由于达芬奇才华出众使委罗基奥最终选择放弃绘画。
第30题卡拉瓦乔主张为了美可以牺牲真实。
您的答案:错误
题目分数:0.5
此题得分:0.5
批注:恰恰相反,卡拉瓦乔是个写实主义者,他主张无情的真实,为了真实可以牺牲美。
第31题关于艺术欣赏,哪些说法是正确的?
您的答案:A,D,E
题目分数:0.5
此题得分:0.5
批注:B、E选项矛盾,可排除掉一个。
同时艺术欣赏不是对艺术家创作动机的恢复。
第32题文艺复兴三杰是哪几位?
您的答案:A,B,D
题目分数:0.5
此题得分:0.5
批注:文艺复兴三杰达芬奇、米开朗琪罗、拉斐尔。
第33题米开朗基罗的代表作有
您的答案:B,C,D
题目分数:0.5
此题得分:0.5
批注:《维纳斯的诞生》和《春》都是波提切利的作品,所以排除A和E。
第34题以下哪些是拉斐尔的作品?
您的答案:A,B,E
题目分数:0.5
此题得分:0.5
批注:拉斐尔的作品大多以圣母为题材,干扰项《岩间圣母》是达芬奇所作。
而《垂死的奴隶》是米开朗琪罗的雕塑。
第35题意大利文艺复兴主要有哪几个画派?
您的答案:B,D,E
此题得分:0.5
批注:巡回画派是19世纪俄罗斯最重要的画派。
巴比松是法国19世纪的风景画派。
第36题以下那些是提香的作品?
您的答案:B,C,D
题目分数:0.5
此题得分:0.5
批注:《尼罗岛的维纳斯》和《拉奥孔》都是古希腊的雕塑,作者不详。
第37题以下哪两幅是乔托的作品?
您的答案:A,E
题目分数:0.5
此题得分:0.5
批注:乔托是中世纪到文艺复兴过度时期的一名画家,他的题材紧密围绕宗教,所以排除掉两个古希腊神话题材的作品,剩下的三个选项中有一个是文艺复兴三杰米开朗基罗的作品,也排除,剩下两个就是答案。
第38题以下哪两幅不是勃鲁盖尔的作品?
您的答案:B,D
题目分数:0.5
此题得分:0.5
批注:勃鲁盖尔表现的题材基本都是农民生活,或以农民生活表现寓言,排除两个宗教题材作品的选项。
第39题哪些不是鲁本斯的作品?
您的答案:A,B,C,E
题目分数:0.5
此题得分:0.5
批注:《阿尔诺芬尼夫妇像》和《根特祭坛画》都是凡艾克作品,还有一个选项的作品作者是达芬奇。
第40题画《浴后的狄安娜》的画家还画了什么作品?您的答案:B,E
题目分数:0.5
此题得分:0.5
批注:布歇深得蓬巴度夫人欣赏,为她画过画像。
布歇并没有到过中国,是他根据自己的想象画的心目中的中国场景。
《任性的女人》作者华托、
《荡秋千》作者弗拉格纳尔。
作业总得分:20.0
作业总批注:。