Mid_Sem_Exam_A_2016
2010年全国职称英语理工类(A级)全真模拟训练
一、选择题1.在下列网络拓扑结构中,中心节点的故障可能造成全网瘫痪的是 c 。
A. 星型拓扑B. 总线型拓扑C. 环型拓扑D. 树型拓扑2.1994年4月20日我国被国际上正式承认为接入Internet的国家,所使用专线的带宽为 d 。
A. 32kbpsB. 64kbpsC. 128kbpsD. 256kbps3.如果要添加一个新的帐号,应选择Outlook Express中的 a 菜单。
A. 文件B. 查看C. 工具D. 邮件4.为了指导计算机网络的互联、互通和互操作,ISO颁布了OSI参考模型,其基本结构分为 c 。
A. 6层B. 5层C. 7层D. 4层5.关于防火墙的功能,说法错误的是 d 。
A. 所有进出网络的通信流必须经过防火墙B. 所有进出网络的通信流必须有安全策略的确认和授权C. 防火墙能保护站点不被任意连接D. 防火墙能够代替防病毒软件6.以下应用领域中,属于典型的多媒体应用的是 b 。
A. CSCW计算机支持协同工作B. 视频会议系统C. 电子表格处理D. 网络远端控制7.网络通信设备中的Hub中文全称是 c 。
A. 网卡B. 中继器C. 服务器D. 集线器8.调制解调器(Modem)的功能是实现 a 。
A. 模拟信号与数字信号的转换B. 数字信号的编码C. 模拟信号的放大D. 数字信号的整形9.保障信息安全最基本、最核心的技术是 a 。
A. 信息加密技术B. 信息确认技术C. 网络控制技术D. 反病毒技术10.以下设备中,不是多媒体计算机中常用的图像输入设备的是 c 。
A. 数码照相机B. 彩色扫描仪C. 条码读写器D. 数码摄像机二、操作题1.Internet应用1、(考生单击窗口下方"打开[internet应用]应用程序"启动IE)请运行Internet Explorer,并完成下面的操作:利用Internet Explorer浏览器提供的搜索功能,选取搜索引擎Google(网址为:/)搜索含有单词”basketball”的页面,将搜索到的第一个网页内容以文本文件的格式保存到考生文件夹下,命名为SS.txt。
AADEBUG2003 XXX1 Instrumenting self-modifying code
AADEBUG2003XXX1 Instrumentingself-modifying codeJonas Maebe∗,Koen De Bosschere∗,1∗ELIS,Ghent University,Sint-Pietersnieuwstraat41,9000Gent,BelgiumABSTRACTAdding small code snippets at key points to existing code fragments is called instrumentation.It is an estab-lished technique to debug certain otherwise hard to solve faults,such as memory management issues and data races.Dynamic instrumentation can already be used to analyse code which is loaded or even generated at run time.With the advent of environments such as the Java Virtual Machine with optimizing Just-In-Time compilers,a new obstacle arises:self-modifying code.In order to instrument this kind of code correctly,one must be able to detect modifications and adapt the instrumentation code accordingly,preferably without incurring a high penalty speedwise.In this paper we propose an innovative technique that uses the hard-ware page protection mechanism of modern processors to detect such modifications.We also show how an instrumentor can adapt the instrumented version depending on the kind of modificiations as well as an experimental evaluation of said techniques.KEYWORDS:dynamic instrumentation;instrumenting self-modifying code1IntroductionInstrumentation is a technique whereby existing code is modified in order to observe or modify its behaviour.It has a lot of different applications,such as profiling,coverage analysis and cache simu-lations.One of its most interesting features is however the ability to perform automatic debugging, or at least assist in debugging complex programs.After all,instrumentation code can intervene in the execution at any point and examine the current state,record it,compare it to previously recorded information and even modify it.Debugging challenges that are extremely suitable for analysis through instrumentation include data race detection[RDB99,RDB01]and memory management checking[Sew02].These are typically problems that are very hard to solve manually.However,since they can be described perfectly using a set of rules(e.g.the memory must be allocated before it is accessed,or no two threads must write to the same memory location without synchronising),they are perfect candidates for automatic verifi-cation.Instrumentation provides the necessary means to insert this verification code with little effort on the side of the developer.The instrumentation can occcur at different stages of the compilation or execution process.When performed prior to the execution,the instrumentation results in changes in the object code on disk, which makes them a property of a program or library.This is called static instrumentation.If the addition of instrumentation code is postponed until the program is loaded in memory,it becomes a property of an execution.In this case,we call it dynamic instrumentation.Examples of stages where static instrumentation can be performed are directly in the source code[Par96],in the assembler output of the compiler[EKKL90],in the compiled objects or programs 1E-mail:{jmaebe,kdb}@elis.UGent.beXXX2JONAS MAEBE,KOEN DE BOSSCHERE (e.g.EEL[LS96],ATOM[SE94],alto[DBD96]).The big advantage of static instrumentation is that it must be done only once,after which one can perform several executions without having to reinstru-ment the code every time.This means that the cost of instrumenting the code can be relatively high without making such a tool practically unusable.The larges disadvantage of static instrumentation is that it requires a complex analysis of the tar-get application to detect all possible execution paths,which is not always possible.Additionally,the user of a static instrumentation tool must know which libraries are loaded at run time by programs he wants to observe,so that he can provide instrumented versions of those.Finally,every time a new type of instrumentation is desired,the application and its libraries must be reinstrumented.Most of the negative points of static instrumentation are solved in its dynamic counterpart.In this case,the instrumentation is not performed in advance,but gradually at run time as more code is executed.Since the instrumentation can continue while the program is running,no prior analysis of all possible execution paths is required.It obviously does mean that the instrumentation must be redone every time the program is executed.This is somewhat offset by having to instrument only the part of the application and its libraries that is covered by a particular execution though.One can even apply dynamic optimization techniques[BDA01]to further reduce this overhead.When using dynamic instrumentation,the code on disk is never modified.This means that a single uninstrumented copy of an application and its libraries suffices when using this technique,no matter how many different types of instrumentation one wants to perform.Another consequence is that the code even does not have to exist on disk.Indeed,since the original code is read from memory and can be instrumented just before it is executed,even dynamically loaded and generated code pose no problems.However,when the program starts modifying this code,the detection and handling of these modifications is not possible using current instrumentation techniques.Yet,being able to instrument self-modifying code becomes increasingly interesting as run time systems that exhibit such behaviour gain more and more popularity.Examples include Java Virtual Machines, environment and emulators with embedded Just-in-Time compilers in general. These environments often employ dynamic optimizing compilers which continuously change the code in memory,mainly for performance reasons.Instrumenting the programs running in such an environment is often very easy.After all,the dynamic compiler or interpreter that processes said programs can do the necessary instrumentation most of the time.On the other hand,observing the interaction of the environments themselves with the applications on top and with the underlying operating system is much more difficult.Never-theless,this ability is of paramount importance when analysing the total workload of a system and debugging and enhancing these virtual machines.Even when starting from a system that can already instrument code on thefly,supporting self-modifying code is a quite complex undertaking.First of all,the original program code must not be changed by the instrumentor,since otherwise program’s own modifications may conflict with these changes later on.Secondly,the instrumentor must be able to detect changes performed by the pro-gram before the modified code is executed,so that it can reinstrument this code in a timely manner. Finally,the reinstrumentation itself must take into account that an instruction may be changed using multiple write operations,so it could be invalid at certain points in time.In this paper we propose a novel technique that can be used to dynamically instrument self-modifying code with an acceptable overhead.We do this by using the hardware page protection facilities of the processor to mark pages that contain code which has been instrumented as read-only.When the program later on attempts to modify instrumented code,we catch the resulting pro-tection faults which enables us to detect those changes and act accordingly.The described method has been experimentally evaluated using the DIOTA(Dynamic Instrumentation,Optimization and Transformation of Applications[MRDB02])framework on the Linux/x86platform by instrumenting a number of JavaGrande[Gro]benchmarks running in the Sun1.4.0Java Virtual Machine.The paper now proceeds with an overview of dynamic instrumentation in general and DIOTA in particular.Next,we show how the detection of modified code is performed and how to reinstru-ment this code.We then present some experimental results of our implementation of the describedINSTRUMENTING SELF-MODIFYING CODE XXX3Figure1:Dynamic instrumentation the DIOTA waytechniques and wrap up with the conclusions and our future plans.2Dynamic instrumentation2.1OverviewDynamic instrumentation can be be done in two ways.One way is modifying the existing code,e.g. by replacing instructions with jumps to routines which contain both instrumentation code and the replaced instruction[MCC+95].This technique is not very usable on systems with variable-length instructions however,as the jump may require more space than the single instruction one wants to replace.If the program later on transfers control to the second instruction that has been replaced, it will end up in the middle of this jump instruction.The technique also wreaks havoc in cases of data-in-code or code-in-data,as modifying the code will cause modifications to the data as well.The other approach is copying the original code into a separate memory block(this is often called cloning)and adding instrumentation code to this copy[BDA01,SKV+03,MRDB02].This requires special handling of control-flow instructions with absolute target addresses,since these addresses must be relocated to the instrumented version of the code.On the positive side,data accesses still occur correctly without any special handling,even in data-in-code situations.The reason is that when the code is executed in the clone,only the program counter(PC)has a different value in an instrumented execution compared to a normal one.This means that when a program uses non-PC-relative addressing modes for data access,these addresses still refer to the original,unmodified copy of the program or data.PC-relative data accesses can be handled at in-strumentation time,as the instrumentor always knows the address of the instruction it is currently instrumenting.This way,it can replace PC-relative memory accesses with absolute memory accesses based on the value the PC would have at that time in a uninstrumented execution.2.2DIOTADIOTA uses the cloning technique together with a cache that keeps track of already translated in-struction blocks.It is implemented as a shared library and thus resides in the same address space as the program it instruments.By making use of the LD_PRELOAD environment variable under Linux, the dynamic linker(ld.so)can be forced to load this library,even though an application is not ex-plicitly linked to it.The init routines of all shared libraries are executed before the program itself is started,providing DIOTA an opportunity to get in control.As shown in Figure1,the instrumentation of a program is performed gradually.First,the instruc-tions at the start of the program are analysed and then copied,along with the desired instrumentation code,to the clone(a block of memory reserved at startup time,also residing in the program’s address space).During this process,direct jumps and calls are followed to their destination.The instrumenta-tion stops when an instruction is encountered of which the destination address cannot be determined unequivocally,such as an indirect jump.XXX4JONAS MAEBE,KOEN DE BOSSCHERECloneOriginal programInstrumentedcodeMarkertableInstrumentedcodeMarkerFigure2:Data structures used by DIOTAAt this point,a trampoline is inserted in the clone.This is a small piece of code which will pass the actual target address to DIOTA every time the corresponding original instruction would be executed. For example,in case of a jump with the target address stored in a register,the trampoline will pass the value of that specific register to DIOTA every time it is executed.When DIOTA is entered via such a trampoline,it will check whether the code at the passed address has already been instrumented.If that is not the case,it is instrumented at that point.Next,the instrumented version is executed.Figure2shows how DIOTA keeps track of which instructions it has already instrumented and where the instrumented version can be found.A marker consisting of illegal opcodes is placed after every block of instrumented code(aligned to a4-byte boundary),followed by the translation table. Such a translation table starts with two32bit addresses:the start of the block in the original code and its counterpart in the clone.Next,pairs of8bit offsets between two successive instructions in the respective blocks are stored,with an escape code to handle cases where the offset is larger than255 bytes(this can occur because we follow direct calls and jumps to their destination).In addition to those tables,an AVL tree is constructed.The keys of its elements are the start and stop addresses of the blocks of original code that have been instrumented.The values are the start addresses of the translation tables of the corresponding instrumented versions.Every instruction is instrumented at most once,so the keys never overlap.This means thatfinding the instrumented version of an instruction boils down tofirst searching for its address in the AVL tree and if found, walking the appropriate translation table.To speed up this process,a small hash table is used which keeps the results of the latest queries.A very useful property of this system is that it also works in reverse:given the address of an instrumented instruction,it is trivial tofind the address of corresponding original instruction.First, the illegal opcodes marker is sought starting from the queried address and next the table is walked just like before until the appropriate pair is found.This ability of doing two-way translations is indispensable for the self-modifying code support and proper exception handling.Since the execution is followed as it progresses,code-in-data and code loaded or generated at run time can be handled without any problems.When a trampoline passes an address to DIOTA of code it has not yet instrumented,it will simply instrument it at that time.It is irrelevant where this code is located,when it appeared in memory and whether or not it doubles as dataDIOTA has several modes of operation,each of which can be used separately,but most can be combined as well.Through the use of so-called backends,the different instrumentation modes can be activated and the instrumentation parameters can be modified.These backends are shared libraries that link against DIOTA and which can ask to intercept calls to arbitrary dynamically linked routines based on name or address,to have a handler called whenever a memory access occurs,when a basic block completes or when a system call is performed(both before and after the system call,with the ability to modify its parameters or return value).Several backends can be used at the same time.INSTRUMENTING SELF-MODIFYING CODE XXX5 Other features of the DIOTA framework include the ability to handle most extensions to the80x86 ISA(such as MMX,3DNow!and SSE)and an extensible and modular design that allows easy im-plementation of additional backends and support for newly introduced instructions.This paper de-scribes the support for instrumenting self-modifying code in DIOTA.For other technical details about DIOTA we refer to[MRDB02].2.3Exception handlingAn aspect that is of paramount importance to the way we handle self-modifying code,is the handling of exceptions(also called signals under Linux).The next section will describe in more detail how we handle the self-modifying code,but since it is based on marking the pages containing code that has been instrumented as read-only,it is clear that every attempt to modify such code will cause a protection fault(or segmentation fault)exception.These exceptions and those caused by other operations must be properly distinguished,in order to make sure that the program still receives signals which are part of the normal program execution while not noticing the other ones.This is especially important since the Java Virtual Machine that we used to evaluate our implementation uses signals for inter-thread communication.When a program starts up,each signal gets a default handler from the operating system.If a program wants to do something different when it receives a certain signal,it can install a signal handler by performing a system call.This system call gets the signal number and the address of the new handler as arguments.Since we want to instrument these user-installed handlers,we have to intercept these system calls.This can be achieved by registering a system call analyser routine with DIOTA.This instructs DIOTA to insert a call to this routine after every system call in the instrumented version of the pro-gram.If such a system call successfully installed a new signal handler,the analyser records this handler and then installs a DIOTA handler instead.Next,when a signal is raised,DIOTA’s handler is activated.One of the arguments passed to a signal handler contains the contents of all processor registers at the time the signal occurred,in-cluding those of the instruction pointer register.Since the program must not be able to notice it is being instrumented by looking at at that value,it is translated from a clone address to an original program address using the translation tables described previously.Finally,the handler is executed under control of DIOTA like any other code fragment.Once the execution arrives at the sig_return or sig_rt_return system call that ends this signal’s execution,DIOTA replaces the instruction pointer in the signal context again.If the code at that address is not yet instrumented,the instruction pointer value in the context is replaced with the address of a trampoline which will transfer control back to DIOTA when returning from the signal’s execution.Otherwise,the clone address corresponding to the already instrumented version is used. 3Detecting modificationsDynamically generated and loaded code can already be handled by a number of existing instrumen-tors[BDA01,MRDB02].The extra difficulty of handling self-modifying code is that the instrumen-tation engine must be able to detect modifications to the code,so that it can reinstrument the new code.Even the reinstrumenting itself is not trivial,since a program may modify an instruction by performing two write operations,which means the intermediate result could be invalid.There are two possible approaches for dealing with code changes.One is to detect the changes as they are made,the other is to check whether code has been modified every time it is executed.Given the fact that in general code is modified far less than it is executed,thefirst approach was chosen.The hardware page protection facilities of the processor are used to detect the changes made page.Once a page contains code that has been instrumented,it will be write-protected.The consequence is thatXXX6JONAS MAEBE,KOEN DE BOSSCHEREFigure3:Exception handling in the context of self-modifying code supportany attempt to modify such code will result in a segmentation fault.An exception handler installed by DIOTA will intercept these signals and take the appropriate action.Since segmentation faults must always be caught when using our technique to support self-modifying code,DIOTA installs a dummy handler at startup time and whenever a program installs the default system handler for this signal(which simply terminates the process if such a signal is raised),or when it tries to ignore it.Apart from that,no changes to the exception handling support of DIOTA have been made,as shown in Figure3.Whenever a protection fault occurs due to the program trying to modify some previously in-strumented code,a naive implementation could unprotect the relevant page,perform the required changes to the instrumented code inside the signal handler,reprotect the page and continue the pro-gram at the next instruction.There are several problems with this approach however:•On a CISC architecture,most instructions can access memory,so decoding the instruction that caused the protection fault(to perform the change that caused the segmentation fault in the handler)can be quite complex.•It is possible that an instruction is modified by means of more than one memory write opera-tion.Trying to reinstrument after thefirst write operation may result in encountering an invalid instruction.•In the context of a JiT-compiler,generally more than one write operation occurs to a particular page.An example is when a page was already partiallyfilled with code which was then exe-cuted and thus instrumented,after which new code is generated and placed on that page as well.A better way is to make a copy of the accessed page,then mark it writable again and let the program resume its execution.This way,it can perform the changes it wanted to do itself.After a while,the instrumentor can compare the contents of the unprotected page and the the buffered copy tofind the changes.So the question then becomes:when is this page checked for changes,how long will it be kept unprotected and how many pages will be kept unprotected at the same time.INSTRUMENTING SELF-MODIFYING CODE XXX7 All parameters are important for performance,since keeping pages unprotected and checking them for changes requires both processing and memory resources.The when-factor is also important for correctness,as the modifications must be incorporated in the clone code before it is executed again.On architectures with a weakly consistent memory model(such as the SPARC and PowerPC), the program must make its code changes permanent by using an instruction that synchronizes the instruction caches of all processors with the current memory contents.These instructions can be intercepted by the instrumentation engine and trigger a comparison of the current contents of a page with the previously buffered contents.On other architectures,heuristics have be used depending on the target application that one wants to instrument to get acceptable performance.For example,when using the Sun JVM1.4.0running on a80x86machine under Linux,we com-pare the previously buffered contents of a page to the current contents whenever the thread that caused the protection fault does one of the following:•It performs a kill system call.This means the modifier thread is sending a signal to another thread,which may indicate that it hasfinished modifying the code and that it tells the other thread that it can continue.•It executes a ret or other instruction that requires a lookup tofind the appropriate instru-mentation code.This is due to the fact that sometimes the modifying and executing threads synchronise using a spinlock.The assumption here is that before the modifying thread clears the spinlock,it will return from the modification routine,thus triggering aflush.Although this method is by no means a guarantee for correct behaviour in the general case,in our experience it always performs correctly in the context of instrumenting code generated by the Sun JVM1.4.0.The unprotected page is protected again when it has been checked N successive times without any changes having been made to it,or when another page has to be unprotected due to a protection fault.Note that this optimisation only really pays off in combination with only checking the page contents in the thread that caused the initial protection fault.The reason is that this ensures that the checking limit is not reached prematurely.Otherwise,the page is protected again too soon and a lot of extra page faults occur,nullifying any potential gains.Finally,it is possible to vary the number of pages that are being kept unprotected at the same time.Possible strategies are keeping just one page unprotected for the whole program in order to minimize resources spent on buffering and comparing contents,keeping one page unprotected per thread,or keeping several pages unprotected per thread to reduce the amount of protection faults. Which strategy performs best depends on the cost of a page fault and the time necessary to do a page compare.4Handling modificationsDifferent code fragments in the clone are often interconnected by direct jumps.For example,when –while instrumenting–we arrive at an instruction which was already instrumented before,we generate a direct jump to this previously instrumented version instead of instrumenting that code again.This not only improves efficiency,but it also makes the instrumentation of modified code much easier,since there is only one location in the clone we have to adapt in case of a code modification.Because of these direct jump interconnections,merely generating an instrumented version of the modified code at a different location in the clone is not enough.Even if every lookup for the in-strumented version of the code in that fragment returns one of the new addresses in the clone,the old code is still reachable via de direct jumps from other fragments.Removing the direct jumps and replacing them with lookups results in a severe slowdown.Another solution would be keeping track of to which other fragments each fragment refers and adapting the direct jumps in case of changes.This requires a lot of bookkeeping however,and chang-XXX8JONAS MAEBE,KOEN DE BOSSCHERE Program Normal Instrumented Slowdown Relative#of Relative# name execution(s)execution(s)protection faults of lookups FFT40.2895.86 2.382305409609 MolDyn22.0365.57 2.985105423174 SparseMatmult24.2991.09 3.753751874669 HeapSort 5.2541.037.82147791700553 LUFact 4.5338.178.43174021655753 SearchBench23.92429.1017.9481446337596 Crypt8.91175.1519.66128456696704 RayTraceBench28.87652.1122.5966118026878Table1:Test results for a number of sequential JavaGrande2.0benchmarksing one fragment may result in a cascade effect,requiring a lot of additional changes elsewhere in the clone.For these reasons,we opted for the following three-part strategy.The optimal way to handle the modifications,is to reinstrument the code in-place.This means that the previously instrumented version of the instructions in the clone are simply replaced by the new ones.This only works if the new code has the same length as(or is shorter than)the old code however,which is not always the case.A second way to handle modifications can be applied when the instrumented version of the previous instruction at that location was larger than the size of an immediate jump.In this case,it is possible to overwrite the previous instrumented version with a jump to the new version.At the end of this new code,another jump can transfer control back to rest of the original instrumentation code.Finally,if there is not enough room for an immediate jump,the last resort isfilling the room originally occupied by the instrumented code with breakpoints.The instrumented version of the new code will simply be placed somewhere else in the code.Whenever the program then arrives at such a breakpoint,DIOTA’s exception handler is entered.This exception handler has access to the address where the breakpoint exception occurred,so it can use the translation table at the end of the block to look up the corresponding original program address.Next,it can lookup where the latest instrumented version of the code at that address is located and transfer control there.5Experimental evaluation5.1General observationsWe evaluated the described techniques by implementing them in the DIOTA framework.The perfor-mance and correctness were verified using a number of tests from the JavaGrande[Gro]benchmark, running under the Sun JVM1.4.0on a machine with two Intel Celeron processors clocked at500MHz. The operating system was Redhat Linux7.3with version2.4.19of the Linux kernel.Several practical implementation issues were encountered.The stock kernel that comes with Red-hat Linux7.3,which is based on version2.4.9of the Linux kernel,contains a number offlaws in the exception handling that cause it to lock up or reboot at random times when a lot of page protection exceptions occur.Another problem is that threads in general only have limited stack space and al-though DIOTA does not require very much,the exception frames together with DIOTA’s overhead were sometimes large enough to overflow the default stacks reserved by the instrumented programs. Therefore,at the start of the main program and at the start of every thread,we now instruct the kernel to execute signal handlers on an alternate stack.DIOTA’s instrumentation engine is not re-entrant and as such is protected by locks.Since a thread can send a signal to another thread at any time,another problem we experienced was that sometimes a thread got a signal while it held the instrumentation lock.If the triggered signal handler was not。
大学英语期中测试 The Mid-Term Test
Mid-term testI. Choose the best that completes the sentences. (15 points)1. Extensive reporting on television has helped to ________ interest in a wide variety sports and activities.A gatherB generateC assembleD yield2. My brother’s plans are very ________ ; he wants to master English, French and Spanish before he is sixteen.A abundantB ambitiousC arbitraryD aggressive3. Computer science is an ________ subject for law students at our university, and many students choose it.A opticalB optionC opponentD optional4. Most broadcasters maintain that TV has been unfairly criticized and argue that the power of the medium is ________.A grantedB impliedC exaggeratedD remedied5. In the Chinese household, grandparents and other relatives play ________ roles in raising children.A insensibleB indispensableC incapableD infinite6. In Britain people ________ four million tons of potatoes every year.A swallowB disposeC consumeD exhaust7. Cancellation of the flight ________ many passengers to spend the night at the airport.A result inB propelC demandD recommend8. Operation which left patients________ and in need of long periods of recovery time now leave them feeling relaxed and comfortable.A exhaustedB abandonedC injuredD deserted9. When we fill in a form, we will usually write down our name, address, ________, etc.A jobB employmentC occupationD profession10. American boys and girls, with ________ and part-time jobs now have an annual purchasing power of four billion dollars.A wagesB salariesC incomesD allowances11. The Car Club couldn’t ________ to meet the demands of all its members.A ensureB guaranteeC assumesD confirm12. They had a fierce ________ as to whether their company should restore the trade relationship which was broken many years ago.A debateB clashC disagreementD contest13. You should ________ being late for your class.A avoidB missC overtakeD leave14. Yong people are not ________ to stand and look at works of art; they want art they can participate in.A conservativeB contentC confidentD generous15. We’d like to________ a table for five for dinner this evening.A preserveB reserveC retainD sustainII Complete the following sentences with phrases or expressions given below. Change the form where necessary.(10 points)1. If I tell the police I was with you that day, will you ________ me ________?2. The Chinese government has ________ been combating drug trafficking.3. She likes everything to be ________ before she starts work.4. I love literature and admire a lot of famous writers, and I like Ernest Hemingway ________.5. Don’t worry for my illness; what I need is________ a few days’ rest.6. The friendly contacts between our two peoples ________ the 2nd century.7. The wealthier emigrants ________ poverty by selling their jewels.8. This candidate does not ________ our company’s philosophy.9. Who is to ________ the company’s business when the boss is away?10. Just think what would happen if every single woman ________ and refused to do housework.III.Reading Comprehension(30%)(2'×15)Directions:In this section, there are 4 passages followed by questions or unfinished statements. For each of them there are four choices marked A, B, C, and D. You should decide on the best choice.PASSAGE 1Another cultural aspect of nonverbal communication is one that you might not think about: space. Every person perceives himself to have a sort of invisible shield surrounding his physical body. When someone comes too close, he feels uncomfortable. When he bumps onto someone, he feels obligated to apologize. But the size of a person’s“ comfort zone” depends on his cultural ethnic origin. For example, in casual conversation, many Americans stand about four feet apart. In other words, they like to keep each othe r“ at arms length”, people in Latin or Arab cultures, in contrast, stand very close to each other, and touch each other often. If someone from one of those cultures stands too close to an American while in conversation, the American may feel uncomfortable and back away.When Americans are talking, they expect others to respond to what they are saying. To Americans, polite conversationalists empathize by displaying expressions of excitement or disgust, shock or sadness. People with a “poker face”, whose emotions are hidden by a deadpan expression, are looked upon with suspicion. Americans also indicate their attentiveness in a conversation by raising their eyebrows, nodding, smiling politely and maintaining good eye contact. Whereas some cultures view direct eye contact as impolite or threatening, Americans see it as a sign of genuineness and honesty. If a person doesn’t look you in the eye, American might say, you should question his motives—or assume that he doesn’t like you. Yet with all the concern for eye contact, Americans still consider staring — especially at strangers —to be rude.1. What the author discussed in the previous section is most probably about.A. classification of nonverbal communicationB. the reasons why people should think about spaceC. the relationship between communication and spaceD. some other cultural aspects of nonverbal communication2. How far people keep to each other while talking is closely associated with their _________ .A. originB. cultureC. customD. nationality3. When an Italian talks to an Arabian on informal occasions,.A. he stands about four feet awayB. “comfort zone” does not existC. keeping close enough is preferredD. communication barriers may emerge4. A “poker face” (Line 3,Para. 2) refers to a face whic h is .A. attentiveB. emotionalC. suspiciousD. expressionless5. In a conversation between friends, Americans regard it as sincere and truthful to .A. maintain direct eye contactB. hide emotions with a deadpan expressionC. display excitement or disgust, shock or sadnessD. raise their eyebrows, nod and smile politelyPASSAGE 2Questions 6 to 10 are based on the following passage.We all know that DNA has the ability to identify individuals but, because it is inherited, there are also regions of the DNA strand which can relate an individual to his or her family (immediate and extended), tribal group and even an entire population. Molecular Genealogy (宗谱学) can use this unique identification provided by the genetic markers to link people together into family trees. Pedigrees (家谱) based on such genetic markers can mean a breakthrough for family trees whereinformation is incomplete or missing due to adoption, illegitimacy or lack of records. There are many communities and populations which have lost precious records due to tragic events such as the fire in the Irish courts during Civil War in 1921 or American slaves for whom many records were never kept in the first place.The main objective of the Molecular Genealogy Research Group is to build a database containing over 100,000 DNA samples from individuals all over the world. These individuals will have provided a pedigree chart of at least four generationsand a small blood sample. Once the database has enough samples to represent the world genetic make-up, it will eventually help in solving many issues regarding genealogies that could not be done by relying only on traditional written records. Theoretically, any individual will someday be able to trace his or her family origins through this database.In the meantime, as the database is being created, molecular genealogy can already verify possible or suspected relationships between individuals“. For example, if two men sharing the same last name believe that they are related, but no written record proves this relationship, we can verify this possibility by collecting a sample of DNA from both and looking for common markers (in this case we can look primarilyat the Y chromosome (染色体)),” explains Ugo A. Perego, a member of the BYU Molecular Genealogy research team.6. People in a large area may possess the same DNA thread becauseA. DNA is characteristic of a regionB. they are beyond doubt of common ancestryC. DNA strand has the ability to identify individualsD. their unique identification can be provided via DNA7. The possible research of family trees is based on the fact thatA. genetics has achieved a breakthroughB. genetic information contained in DNA can be revealed nowC. each individual carries a unique record of who he is and how he is related to othersD. we can use DNA to prove how distant an individual is to a family, a group or a population8. The Molecular Genealogy Research Group is building a database for the purpose ofA. offering assistance in working out genealogy-related problemsB. solving many issues without relying on traditional written recordsC. providing a pedigree chart of at least four generations in the worldD. confirming the assumption that all individuals are of the same origin9. If two men suspected for some reason they have a common ancestor,A. we can decide according to their family treeB.we can find the truth from their genetic markersC. we can compare the differences in their Y chromosomeD. we can look for written records to prove their relationship10. Which of the following CANNOT be inferred from the passage?A. We are a walking, living, breathing record of our ancestorsB. Many American slaves did not know who their ancestors were.C. An adopted child generally lacks enough information to prove his identity.D. Molecular genealogy can be used to prove a relationship between individuals. PASSAGE 3Questions 11 to 15 are based on the following passage.In recent years, teachers of introductory courses in Asian American studies have been facing a dilemma nonexistent a few decades ago, when hardly any texts in that field were available. Today, excellent anthologies(文选)and other introductory texts exist, and books on individual Asian Americans are published almost weekly. Even professors who are experts in the field find it difficult to decide which of these to assign to students; non-experts who teach in related areas and are looking for writings for and by Asian American to include in survey courses are in an even worse position.A complicating factor has been the continuing lack of specialized one-volume reference works on Asian Americans, such as biographical dictionaries or desktop encyclopedias. Such works would enable students taking Asian American studies courses (and professors in related fields) to look up basic information on Asian American individuals, institutions, history, and culture without having to wade through mountains of primary source material. In addition, given such works. Asian American studies professors might feel more free to include more challenging AsianAmerican material in their introductory reading lists, since good reference works allow students to acquire on their own the background information necessary to interpret difficult or unfamiliar material.11. The author is primarily concerned with ______.A. responding to a criticismB. describing a course of studyC. discussing a problemD. evaluating a past course of action12. The “dilemma”(Line 2, Para.1) can best be characterized as being caused by the necessity to make a choice when faced with a ______.A. lack of acceptable alternativesB. lack of strict standards for evaluating alternativesC. preponderance of bad alternatives as compared to goodD. multitude of different alternatives13. Biographical dictionaries and desktop encyclopedias are _____A. primary source materialsB. introductory textsC. excellent anthologiesD. reference materials14. Which of the following is implied about the introductory courses in Asian American studies a few decades ago?A. The range of different textbooks that could be assigned for such courses was extremely limitedB. The texts assigned as readings in such courses were often not very challenging for studentsC. Students often complained about the texts assigned to them in such coursesD. Such courses were offered only at schools whose libraries were rich in primary sources15. According to the passage, the existence of good one-volume reference works about Asian Americans could result in ______.A. increased agreement among professors of Asian American studies regarding the quality of the sources available in their fieldB. an increase in the number of students sighing up for introductory courses in Asian American studiesC. increased accuracy in writings that concern Asian American history and cultureD. the inclusion of a wider range of Asian American material in introductory reading lists in Asian American studiesIV Translate the following paragraph into English. ( 25 points )汉语中“关系”一词,有时可以用来表示“网络”。
Mid-termExam
Mid-termExam期中考试九年级英语试题(总分150分考试时间120分钟)注意事项:1、本试题分第I卷和第II卷两部分。
第I卷1-7页为选择题,95分;第II卷7-10页为⾮选择题,55分;共150分。
2、答第Ⅰ卷前务必将⾃⼰的姓名、考号、考试科⽬涂写在答题卡上。
考试结束,试题和答题卡⼀并收回。
3、第Ⅰ卷每题选出答案后,都必须⽤2B铅笔把答题卡上对应题⽬的答案标号(ABCD)涂⿊。
如需改动,必须先⽤橡⽪擦⼲净,再改涂其它答案。
4、听⼒填表题为第II卷的第四⼤题,在试卷第7页上。
第Ⅰ卷(选择题,共95分)⼀、听⼒选择(共15⼩题,计15分;每⼩题约有8秒钟的答题时间)(⼀)听句⼦,选择正确答语。
每个句⼦只读⼀遍。
()1. A. Yes, I did B. Yes he did C. No, he doesn’t()2. A. Maybe you should take a walk before you going to bed.B. It doesn’t matter.C. I can’t sleep well, either.()3. A. Yes, she is. B. She likes pop music. C. We like her very much.()4. A. I expect so B. No, it isn’t. C. Yes, it is.()5. A.I don’t like it at all. B. By asking teachers for help. C. By bus.(⼆) 听对话及问题,然后选择正确答案。
每段对话及⽂婷听两遍。
()6. A. Yes, she can B. No, she can’t. C. She is not sure.()7. A. Put it in the bank. B. Watch it C. Grow it.()8. A. Fred’s B. Jim’s C. John’s()9. A. Junk food. B. Vegetables C. Junk food and vegetables.()10. A. Math B. English C. Either math or English()11. A. To stay at home. B. To answer the telephone C. To go out.()12. A. He could give food to homeless people.B. He could give away food to homeless people.C. He could give out food at the food bank.()13. A. To become a soccer player. B. To go to college C. Sorry, I don’t know. ()14. A. Lazy. B. Crazy. C. Hardworking.()15. A. They are running. B. They’re waiting for the bus. C. They’re going home. (注意:请同学们翻到第7页第Ⅱ卷第四⼤题,继续做听⼒填表题。
中小学英语教育研究方法线上网课u校园期末考试
中小学英语教育研究方法线上网课u校园期末考试1、12.That is a good way ________ him ________ English. [单选题] *A.to help;forB.helps;withC.to help;with(正确答案)D.helping;in2、We _______ play basketball after school. [单选题] *A. were used toB. used to(正确答案)C. use toD. are used to3、This message is _______. We are all _______ at it. [单选题] *A. surprising; surprisingB. surprised; surprisedC. surprising; surprised(正确答案)D. surprised; surprising4、When you are tired, listen to music and try to _______ yourself. [单选题] *A. supportB. showC. playD. relax(正确答案)5、( ) You had your birthday party the other day,_________ [单选题] *A. hadn't you?B. had you?C. did you?D. didn't you?(正确答案)6、The little boy saved his money ______ he could buy his mother a gift on Mother’s Day.()[单选题] *A. butB. such thatC. in order toD. so that(正确答案)7、The man lost his camera and he ______ it now.()[单选题] *A. foundB. is findingC. is looking forD. looks for(正确答案)8、Will you be able to finish your homework _______? [单选题] *A. by the timeB. in time(正确答案)C. once upon a timeD. out of time9、--Can I _______ your dictionary?--Sorry, I’m using it. [单选题] *A. borrow(正确答案)B. lendC. keepD. return10、This year our school is _____ than it was last year. [单选题] *A. much more beautiful(正确答案)B. much beautifulC. the most beautifulD. beautiful11、_______ after dinner is good for our health. [单选题] *A. WalksB. Walking(正确答案)C. WalkedD. Walk12、I’m sorry there are ______ apples in the fridge. You must go and buy some right now.()[单选题] *A. a littleB. littleC. a fewD. few(正确答案)13、Have you done something _______ on the weekends? [单选题] *A. special(正确答案)B. soreC. convenientD. slim14、You can ask()is on duty there tonight. [单选题] *A. WhatB. whomC. whoever(正确答案)D. whomever15、82.—Is there a bookshop near here?—Yes. Walk ________ the road for five minutes and you'll see one near a big tree. [单选题] *A.toB.along(正确答案)C.ofD.about16、Our school is beautiful. How about _______? [单选题] *A. theirs(正确答案)B. theirC. theyD. them17、While I _____ the morning paper, a headline caught my eye.. [单选题] *A. have readB. was reading(正确答案)C. had readD. am reading18、He was very excited to read the news _____ Mo Yan had won the Nobel Prize for literature [单选题] *A. whichB. whatC. howD. that(正确答案)19、—______ is it from your home to the bookstore?—About 15 kilometers.()[单选题] *A. How far(正确答案)B. How muchC. How longD. How many20、_____he was seriously ill, I wouldn’t have told him the truth. [单选题] *A.If I knewB.Had I known(正确答案)C.Did I knowD.Were I known21、()late for the meeting again, Jack! 一Sorry, I won t. [单选题] *A.Don’tB. Be notC.Don't be(正确答案)D.Not be22、Grandfather lives with us. We all _______ him when he gets ill. [单选题] *A. look after(正确答案)B. look atC. look forD. look like23、There is something wrong with my teeth. I’ve had?a _______. [单选题] *A. toothache(正确答案)B. headacheC. stomachacheD. heartache24、A?pen _______ writing. [单选题] *A. is used toB. used toC. is used for(正确答案)D. used for25、The old woman doesn’t feel _______ though she lives _______. [单选题] *A. alone; lonelyB. alone; aloneC. lonely; lonelyD. lonely; alone(正确答案)26、--Is that the correct spelling?--I don’t know. You can _______ in a dictionary [单选题] *A. look up itB. look it forC. look it up(正确答案)D. look for it27、Generally speaking, it is _______ to ask a woman’s age in western countries. [单选题] *A. possibleC. not polite(正确答案)D. polite28、6.—How can we get to the school?—________ bus. [单选题] *A.ToB.OnC.By(正确答案)D.At29、89.The blackboard is ________ the classroom. [单选题] *A.nextB.betweenC.in front ofD.in the front of(正确答案)30、The language school started a new()to help young learners with reading and writing. [单选题] *A. course(正确答案)B. designC. event。
IntensiveReadingMid-termTest(附答案)(五篇材料)
IntensiveReadingMid-termTest(附答案)(五篇材料)第一篇:Intensive Reading Mid-term Test(附答案)Intensive ReadingMid-term Test26th 10, 2010Part IDictationPart IIFill in the blank with a preposition in each sentence.1.He groped __for__the door handle in the dark.2.My heart went __out___to the families for I too have just lost someone dear to me.3.The man sneaked __about__the place watching for a chance to steal something.4.Journalists who were tipped __off__about the incident raced to the scene.5.As the speaker felt much uneasy, a cold sweat broke _out_on the back of his neck.6.She spent most of her life living __up__to her parents’ ideals.7.The adoption of this policy will relieve the unions __of___a tremendous burden.8.The accountant’s errors involved everyone __in___a great deal of extra work.9.Pressure on study space has crowded __out__new students from many university libraries.10.Huge groups of people gathered at the Hall, calling __for__the resignation of the Minister responsible for the fiasco.11.When the government took office, the inexperienced young hopefuls were pushed __aside__in the scramble for places.12.We can’t hope to catch __up__with the motor launch in front of us;it’s a v ery high-powered one.13.All the formalities had been attended _to___.14.I was so excited to see snow that I was indifferent _to__the cold.15.Mary has derived a good deal of benefit __from__her tuition.16.The old lady was made fun of as she had lavished affection __on__the cruel and naughty boy, Tom Sullivan.17.Newhouses spring __up__almost in a night during the housing boom.18.Most people willingly conform __to__the customs of the society.19.Mr.Walton kept track __of___his business by telephone when he was in hospital.20.He absolutely adhered __to___what he said at the conference: he had not changed his mind in any way.21.Mama had arranged __for___the old lady to come whenever needed.22.You needn’t trouble to wash the dishes;I will see __to__those.23.We have inherited a very confused situation, which we are now trying to straighten __out___.24.As matters stand, I’m not in a position to inquire _about__the reading of the new constitution.25.He often stays __up__after midnight to watch the live broadcast of the Formula 1motor race.26.Point all our aerials upwards.Then we can pick __up__signals for help from the burning plane more clearly.27.After the merge with General Motor, we will be able to compete __with__continental firms in an enlarged market.Part III/ 6Choose one word or phrase that best completes the ughing again, he drew his sword and ____us, hacking wildly.A.clutched atB.charged atC.groped forD.sneaked upon2.How do you skaters manage to ____on the slippery surface all the time?e to your feetB.get to your feetC.rise to your feetD.keep on your feet3.Suddenly, the woman fainted and ____the ground.A.settled ontoB.tipped overC.collapsed ontoD.cracked against4.As variously ____, the Indians numbered from 14 million to 40 million in Co lumbus’s time.A.evaluatedB.assessedC.estimatedD.weighed5.The president observed at the news conference that it was only a ____fluctuation of oil prices.A.momentousB.momentaryC.momentumD.monetary6.He suggested an amendment in the project _____of the recent developments.A.in the lightB.regardlessC.relatingD.relevant to7.You must see the story in its right ____.A.respectiveB.perspectiveC.aspectD.angle8.The government attached top priority ____reforming the legal system.A.overB.onC.uponD.to9.The movie is about a serial killer who ____the police with phone calls.A.interruptedB.hauntedC.disturbedD.taunted10.Chances of ceasefire seem ampler now that the two countries only diverge ____details.A.in the matter ofB.for the matter ofC.with regard ofD.in reference of11.The restaurant’s ____is Italian, not French.A.cuisineB.dishesC.coursesD.recipe12.Mr.Tompson, the ____librarian is going to deliver a speech in the first hall on how to use the on-line catalogue of the university.A.primalB.chiefC.mainD.primary13.According to a latest survey, the ____life span of adult females in China is 72.5 monplace14.A steam engine is the machine that ____heat into energy.A.altersB.changesC.transformsD.converts15.The lake ____its name ____an earlier French explorer who happened to spot the glimmering waves while got lost in the forest.A.derived …fromB.originated …fromC.initiated …fromD.co mmenced …from16.It isn’t acceptable to make too many ____into otherpeople’saffairs.A.investigationsB.inquiriesC.inspectionsD.explorations17.Students, friends and relatives were all present at the funeral to pay their last tribute to the ____teB.formerC.lifelessD.deceased18.According to the weather forecast, which is usually ____, it will snow this afternoon.A.preciseB.exactC.accurateD.perfect19.There is no ____reason why he is promoted over Phil, the workaholic.A.conceivableB.convincedC.imaginableD.credulous Part IVReading comprehensionAfter reading the text, make the best choice for each statement according to what you’ve read.A historic change is taking place in higher education.Professors are being held responsible as never before for how well they serve students.It has become as common in colleges and universities for students to grade professors as for professors to grade students.In fact, student ratings have become the most widely used and, in many cases, the only source of information on teaching effectiveness.In comparing three studies of the same 600 four-year colleges, it was found that the number of colleges using student ratings to evaluate teachers had climbed from 29 percent to 68 percent.No other method of evaluation approached that degree of usage, and other studies have found similar results.One reason that student evaluations of teachers have become so popular is that they are easy to administrate and to score.But they also are easy to abuse.If they are to shed meaningful light on teachers’ performance, the ratings must be used in a way that reflects at least some of what we’ve learned about them from research and from experience.Research and experience have shown us, forexample, that student ratings should never be the only basis for evaluating teaching effectiveness.There is much more to teaching than what is evaluated on student rating forms.When ratings are used, we know that students should not be expected to judge whether the materials used in a course are up to date or how well the teacher knows the subject matter of the course.These judgments require professional background and are best left to the professor’s colleagues.On the other hand, students should be asked to estimate what they’ve learned in a course, and to report on such things as a professor’s ability to communicate at the student’s level, professional beh avior in the classroom, relationship with students, and ability to arouse interest in the subject.1.Which of the following can best summarize the main idea of this passage?A.Student ratings are the only source of information on teaching effectiveness.B.Ratings have become the most widely used source of information.C.Besides student ratings, there are other methods to evaluate teachers.D.Student ratings are very popular and should be properly used.2.Which of the following statements if true according to the passage?A.Student evaluations of teachers are popular because they are extremely accurate.B.In student ratings, students should not be asked questions that require professional background.C.Student ratings can be used under any circumstances.D.All colleges are inclined to use student ratings to evaluate teachers.3.In student ratings all the following questions can be asked except that ____.A.“Can the teacher make himself easily understood?”B.“How does the teacher deal with students?”C.“Is what is taught new?”D.“Are students interested in what is taught?”4.By saying “But they also are easy to abuse”, the author means “____”.A.teachers are easy to be misunderstoodB.teachers are easy to be wrongedC.student ratings can be easily put to wrong useD.student ratings can be easily made use of to attack teachers5.The word “approach”(Para.2)is closest in meaning to “____”.A.stick e e roundD.attach to Part VTranslation1.他的眼神向来冷漠平静。
高三英语信息技术单选题50题
高三英语信息技术单选题50题6.She often _____ documents in the office software.A.editsB.makesC.createsD.designs答案:A。
本题考查动词在信息技术语境中的运用。
“edit”有“编辑”之意,在办公室软件中经常是编辑文档,符合语境。
“makes”通常指制作,范围比较宽泛,不如“edits”具体;“creates”强调创造新的东西,编辑文档不是创造新文档;“designs”主要是设计,与编辑文档的语境不符。
7.He _____ a new folder to store his files.A.buildsB.makesC.createsD.forms答案:C。
“create”有创建之意,创建新文件夹用“creates”比较合适。
“builds”通常用于建造较大的实体物体;“makes”制作的对象比较宽泛,不如“creates”准确;“forms”主要指形成某种形状或结构,不太适合创建文件夹的语境。
8.She _____ a file by mistake and had to restore it.A.deletedB.removedC.lostD.discarded答案:A。
“delete”表示删除,不小心删除了文件符合语境。
“removed”通常指移除某个物体,不一定是删除文件;“lost”是丢失,不一定是主动删除导致的;“discarded”侧重于丢弃不要的东西,不如“deleted”准确。
9.He _____ the file to another location.A.movedB.shiftedC.transferredD.carried答案:C。
“transfer”有转移、传送之意,把文件转移到另一个位置用“transferred”比较恰当。
“moved”和“shifted”比较笼统,没有“transfer”在信息技术语境中那么准确;“carried”通常指携带,不太适合文件转移的语境。
2016研究生学术英语写作期末考试试卷
2016研究生学术英语写作期末考试试卷Part I Recognizing topic sentences (20%)Directions: Read the sentences in each group, and decide which one is the best topic sentence. Write best TS on the line next to it and decide what is wrong with the other sentences, too general, too specific or incomplete? (P.6)Part II Identifying the parts of a topic sentence (20%)Directions: Circle the topic and underline the controlling idea(s) in each of the following sentences.(P.9)Part III Specific supporting details (20%)Directions: Decide which of the following statements is an opinion (O), a fact that needs proof (F-NP), or a specific supporting detail (SSD). (P.40)Part IV Choosing the best paraphrase (20%)Directions: Read the original passages. Choose the best paraphrase from the choices given and mark it “Best.” Mark the others “Too sim.” for too similar, “No cit.” if there is no in-text citation, or “Inc./Inacc.” for incomplete and/or inaccurate information. (P.130)Part V Introductory paragraphs (20%)Directions: Read each of the following sets of sentences and put them in a logical order to form introductory paragraphs. Write the thesis statement last.(P.62)。
新视野大学英语Mid-termexam
demands
demands
7.
0
ladies
latest
8.
0
only
all-important
9.
0
hurt
hurtful
10.
1
distance
distance
Subtotal:5
老师评语:
Part 5 Vocabulary and Structure(每小题: 1分;满分:15分)
小题
得分
disgusting
7.
1
upset
upset
8.
1
offensive
offensive
9.
1
occasionally
occasionally
10.
0
surverle
severely
11.
0
expend
extend
12.
1
inward
inward
13.
1
religious
religious
14.
1
architecture
D
14.
1
D
D
15.
1
C
C
Subtotal:15
老师评语:
Part 4 Spot Dictation(每小题: 1分;满分:10分)
小题
得分
对错
我的答案
客观
1.
1
like
like
2.
1
what's
what's
3.
0
argue
arguing
4.
首医在职研文献检索考试题库
()是人们在认识和改造客观世界的实践中所获得的认识和经验的总和。
(分值:2分)A、信息B、知识C、消息D、情报CNKI跨库检索中不包含下面哪种检索方式()。
(分值:2分)A、简单检索B、期刊导航C、标准检索D、科研基金检索信息素养的内涵包括信息意识、信息能力和()三部分。
(分值:2分)A、信息法律B、信息道德C、信息检索D、信息理念文献定义为:记录有()的一切载体。
(分值:2分)A、信息B、知识C、消息D、情报信息素养教育起源于(),其前称是图书馆利用教育。
(分值:2分)A、英国B、德国C、美国D、法国根据文献中信息含量的多少、内容加工深度的差别,以及功能作用的不同,常将其划分为以下四个级别:一次文献、二次文献、三次文献和()。
(分值:2分)A、零次文献B、四次文献C、灰色文献D、综述医学文献信息检索旨在培养学生的信息意识、信息能力和(),掌握文献信息检索的基本理论、基本知识和基本技能,培养学生的检索、筛选、分析、评价、管理和综合利用文献信息的能力,创新能力和终身学习能力。
(分值:2分)A、信息素养B、信息检索C、信息法律D、信息道德在PUBMED数据库中不能对检索结果按以下哪项排序?(分值:2分)A、Recently AddedB、First AuthorC、Time CitedD、Last Author下列与PUBMED数据库的Clinical Queries疾病无关的是哪项?(分值:2分)A、etiologyB、diagnosisC、adverse reactionD、therapyCBM逻辑运算符的优先级为()。
(分值:2分)A、AND >OR >NOTB、NOT >AND >ORC、NOT >OR >ANDD、OR >AND >NOT下列与PUBMED数据库的主题词检索无关的选项是(分值:2分)A、MeSH Major Topic [MAJR]B、MeSH Subheadings [SH]C、Subset [SB]D、MeSH Terms [MH]对PUBMED数据库中的题录进行主题词标引的依据不正确是哪一个?(分值:2分)A、医学主题词表B、Medical Subject HeadingsC、MeSHD、汉语主题词表在PUBMED数据库中检索综述类文献可以用哪个检索式?(分值:2分)A、Practice Guideline [pt]B、Clinical Trial[pt]C、Editorial [pt]D、Review [pt]在CBM中,二次检索是指在最后一个检索式检索结果的范围内进行进一步查询。
大学英语期中测试 The Mid-Term Test
Mid-term testI. Choose the best that completes the sentences. (15 points)1. Extensive reporting on television has helped to ________ interest in a wide variety sports and activities.A gatherB generateC assembleD yield2. My brother’s plans are very ________ ; he wants to master English, French and Spanish before he is sixteen.A abundantB ambitiousC arbitraryD aggressive3. Computer science is an ________ subject for law students at our university, and many students choose it.A opticalB optionC opponentD optional4. Most broadcasters maintain that TV has been unfairly criticized and argue that the power of the medium is ________.A grantedB impliedC exaggeratedD remedied5. In the Chinese household, grandparents and other relatives play ________ roles in raising children.A insensibleB indispensableC incapableD infinite6. In Britain people ________ four million tons of potatoes every year.A swallowB disposeC consumeD exhaust7. Cancellation of the flight ________ many passengers to spend the night at the airport.A result inB propelC demandD recommend8. Operation which left patients________ and in need of long periods of recovery time now leave them feeling relaxed and comfortable.A exhaustedB abandonedC injuredD deserted9. When we fill in a form, we will usually write down our name, address, ________, etc.A jobB employmentC occupationD profession10. American boys and girls, with ________ and part-time jobs now have an annual purchasing power of four billion dollars.A wagesB salariesC incomesD allowances11. The Car Club couldn’t ________ to meet the demands of all its members.A ensureB guaranteeC assumesD confirm12. They had a fierce ________ as to whether their company should restore the trade relationship which was broken many years ago.A debateB clashC disagreementD contest13. You should ________ being late for your class.A avoidB missC overtakeD leave14. Yong people are not ________ to stand and look at works of art; they want art they can participate in.A conservativeB contentC confidentD generous15. We’d like to________ a table for five for dinner this evening.A preserveB reserveC retainD sustainII Complete the following sentences with phrases or expressions given below. Change the form where necessary.(10 points)1. If I tell the police I was with you that day, will you ________ me ________?2. The Chinese government has ________ been combating drug trafficking.3. She likes everything to be ________ before she starts work.4. I love literature and admire a lot of famous writers, and I like Ernest Hemingway ________.5. Don’t worry for my illness; what I need is________ a few days’ rest.6. The friendly contacts between our two peoples ________ the 2nd century.7. The wealthier emigrants ________ poverty by selling their jewels.8. This candidate does not ________ our company’s philosophy.9. Who is to ________ the company’s business when the boss is away?10. Just think what would happen if every single woman ________ and refused to do housework.III.Reading Comprehension(30%)(2'×15)Directions:In this section, there are 4 passages followed by questions or unfinished statements. For each of them there are four choices marked A, B, C, and D. You should decide on the best choice.PASSAGE 1Another cultural aspect of nonverbal communication is one that you might not think about: space. Every person perceives himself to have a sort of invisible shield surrounding his physical body. When someone comes too close, he feels uncomfortable. When he bumps onto someone, he feels obligated to apologize. But the size of a person’s“ comfort zone” depends on his cultural ethnic origin. For example, in casual conversation, many Americans stand about four feet apart. In other words, they like to keep each othe r“ at arms length”, people in Latin or Arab cultures, in contrast, stand very close to each other, and touch each other often. If someone from one of those cultures stands too close to an American while in conversation, the American may feel uncomfortable and back away.When Americans are talking, they expect others to respond to what they are saying. To Americans, polite conversationalists empathize by displaying expressions of excitement or disgust, shock or sadness. People with a “poker face”, whose emotions are hidden by a deadpan expression, are looked upon with suspicion. Americans also indicate their attentiveness in a conversation by raising their eyebrows, nodding, smiling politely and maintaining good eye contact. Whereas some cultures view direct eye contact as impolite or threatening, Americans see it as a sign of genuineness and honesty. If a person doesn’t look you in the eye, American might say, you should question his motives—or assume that he doesn’t like you. Yet with all the concern for eye contact, Americans still consider staring — especially at strangers —to be rude.1. What the author discussed in the previous section is most probably about.A. classification of nonverbal communicationB. the reasons why people should think about spaceC. the relationship between communication and spaceD. some other cultural aspects of nonverbal communication2. How far people keep to each other while talking is closely associated with their _________ .A. originB. cultureC. customD. nationality3. When an Italian talks to an Arabian on informal occasions,.A. he stands about four feet awayB. “comfort zone” does not existC. keeping close enough is preferredD. communication barriers may emerge4. A “poker face” (Line 3,Para. 2) refers to a face whic h is .A. attentiveB. emotionalC. suspiciousD. expressionless5. In a conversation between friends, Americans regard it as sincere and truthful to .A. maintain direct eye contactB. hide emotions with a deadpan expressionC. display excitement or disgust, shock or sadnessD. raise their eyebrows, nod and smile politelyPASSAGE 2Questions 6 to 10 are based on the following passage.We all know that DNA has the ability to identify individuals but, because it is inherited, there are also regions of the DNA strand which can relate an individual to his or her family (immediate and extended), tribal group and even an entire population. Molecular Genealogy (宗谱学) can use this unique identification provided by the genetic markers to link people together into family trees. Pedigrees (家谱) based on such genetic markers can mean a breakthrough for family trees whereinformation is incomplete or missing due to adoption, illegitimacy or lack of records. There are many communities and populations which have lost precious records due to tragic events such as the fire in the Irish courts during Civil War in 1921 or American slaves for whom many records were never kept in the first place.The main objective of the Molecular Genealogy Research Group is to build a database containing over 100,000 DNA samples from individuals all over the world. These individuals will have provided a pedigree chart of at least four generationsand a small blood sample. Once the database has enough samples to represent the world genetic make-up, it will eventually help in solving many issues regarding genealogies that could not be done by relying only on traditional written records. Theoretically, any individual will someday be able to trace his or her family origins through this database.In the meantime, as the database is being created, molecular genealogy can already verify possible or suspected relationships between individuals“. For example, if two men sharing the same last name believe that they are related, but no written record proves this relationship, we can verify this possibility by collecting a sample of DNA from both and looking for common markers (in this case we can look primarilyat the Y chromosome (染色体)),” explains Ugo A. Perego, a member of the BYU Molecular Genealogy research team.6. People in a large area may possess the same DNA thread becauseA. DNA is characteristic of a regionB. they are beyond doubt of common ancestryC. DNA strand has the ability to identify individualsD. their unique identification can be provided via DNA7. The possible research of family trees is based on the fact thatA. genetics has achieved a breakthroughB. genetic information contained in DNA can be revealed nowC. each individual carries a unique record of who he is and how he is related to othersD. we can use DNA to prove how distant an individual is to a family, a group or a population8. The Molecular Genealogy Research Group is building a database for the purpose ofA. offering assistance in working out genealogy-related problemsB. solving many issues without relying on traditional written recordsC. providing a pedigree chart of at least four generations in the worldD. confirming the assumption that all individuals are of the same origin9. If two men suspected for some reason they have a common ancestor,A. we can decide according to their family treeB.we can find the truth from their genetic markersC. we can compare the differences in their Y chromosomeD. we can look for written records to prove their relationship10. Which of the following CANNOT be inferred from the passage?A. We are a walking, living, breathing record of our ancestorsB. Many American slaves did not know who their ancestors were.C. An adopted child generally lacks enough information to prove his identity.D. Molecular genealogy can be used to prove a relationship between individuals. PASSAGE 3Questions 11 to 15 are based on the following passage.In recent years, teachers of introductory courses in Asian American studies have been facing a dilemma nonexistent a few decades ago, when hardly any texts in that field were available. Today, excellent anthologies(文选)and other introductory texts exist, and books on individual Asian Americans are published almost weekly. Even professors who are experts in the field find it difficult to decide which of these to assign to students; non-experts who teach in related areas and are looking for writings for and by Asian American to include in survey courses are in an even worse position.A complicating factor has been the continuing lack of specialized one-volume reference works on Asian Americans, such as biographical dictionaries or desktop encyclopedias. Such works would enable students taking Asian American studies courses (and professors in related fields) to look up basic information on Asian American individuals, institutions, history, and culture without having to wade through mountains of primary source material. In addition, given such works. Asian American studies professors might feel more free to include more challenging AsianAmerican material in their introductory reading lists, since good reference works allow students to acquire on their own the background information necessary to interpret difficult or unfamiliar material.11. The author is primarily concerned with ______.A. responding to a criticismB. describing a course of studyC. discussing a problemD. evaluating a past course of action12. The “dilemma”(Line 2, Para.1) can best be characterized as being caused by the necessity to make a choice when faced with a ______.A. lack of acceptable alternativesB. lack of strict standards for evaluating alternativesC. preponderance of bad alternatives as compared to goodD. multitude of different alternatives13. Biographical dictionaries and desktop encyclopedias are _____A. primary source materialsB. introductory textsC. excellent anthologiesD. reference materials14. Which of the following is implied about the introductory courses in Asian American studies a few decades ago?A. The range of different textbooks that could be assigned for such courses was extremely limitedB. The texts assigned as readings in such courses were often not very challenging for studentsC. Students often complained about the texts assigned to them in such coursesD. Such courses were offered only at schools whose libraries were rich in primary sources15. According to the passage, the existence of good one-volume reference works about Asian Americans could result in ______.A. increased agreement among professors of Asian American studies regarding the quality of the sources available in their fieldB. an increase in the number of students sighing up for introductory courses in Asian American studiesC. increased accuracy in writings that concern Asian American history and cultureD. the inclusion of a wider range of Asian American material in introductory reading lists in Asian American studiesIV Translate the following paragraph into English. ( 25 points )汉语中“关系”一词,有时可以用来表示“网络”。
Mid_Sem_Exam_B_2015
CIVL3612/9612 - Mid-Semester Exam 6. Flow over a circular cylinder can be simulated by superposition of (a) uniform flow and a vortex (b) uniform flow and a doublet (c) uniform flow and a sink (d) uniform flow and a source 7. → − The incompressible continuity equation ∇ · V = 0 applies (a) only to steady flow (b) only to unsteady flow (c) both steady and unsteady flow 8. The stream function ψ can be defined for a flow only if the flow is (a) steady, incompressible and two-dimensional (b) two-dimensional (c) steady and incompressible 9.
Write your answer in the space provided 1. In a steady flow, (a) Convective acceleration equals zero (b) Local acceleration equals zero (c) Total acceleration equals zero 2. If enough information in Eulerian form is available, Lagrangian information can be derived from the Eulerian data, and vice versa. This statement is (a) True (b) False 3. In an incompressible flow (a) The volume and shape of a fluid element remains unchanged (b) The volume of a fluid element remains constant but the shape can change (c) only the volume can change 4. → − If ∇ × V = 0 then the flow is (a) Incompressible (b) Irrotational (c) Inviscid (d) Irresponsible 5. Two distinct potential flows can be combined by superposition because (a) they are irrotational flows (b) they are inviscid flows (c) they are governed by linear partial differential equation
Mid-term Test1 王庆鹏 魏明涛
Part 2 Vocabulary and Grammar第二部分词汇与语法I. Complete the sentences with proper words according to the given meanings. The first letters are given.(根据英语解释填入所缺单词完成句子,首字母已给出)26. My new dress is s________ (look like something very much) to the one you have.27. Yesterday I sent you a parcel by air-mail.I e________(put something inside a letter or parcel)our latest book for you to read and give some advice.28. The a________ (very old) Chinese people were so clever that they invented compass andpaper.29. The new salesgirl is a________(with no mistakes) at adding bills.30. We must not take dangerous goods a________(onto a ship or a plane).II. Fill in the blanks with the given words in their proper-forms. (词性转换)31. Who was the first ________for the system of numbers from l to 9? (invent)32. The boy is four________ tall. (foot)33. Congratulations! The progress you've made is really ________(amaze).34. The ________of the car are down this season. (sell)35. He worked hard and ________in inventing the machine. (successful)36. Antonio Vivaldi is one of Wendy's favourite ________. (violin)37. Violin is a kind of wooden________(music) instrument with strings and a bowl.38. Do you have a ________(busy) of your own?III. Choose the best answer. (选择最恰当的答案)( ) 39. Greece is________ European country. It's in ________south part of Europe.A. the ... theB. a ... TheC. /...theD. A... /( ) 40. Could Nancy solve that difficult maths problem by________?A. sheB. herC. hersD. herself( ) 41. About twice a week9 my father ________ from school.A. picks me upB. picks meC. picks up meD. collect me( ) 42. On his way ________, he met his classmate.A. to homeB. to thereC. to parkD. to school( ) 43. ——Can you understand me?——Sorry, I can ________ understand what you have said.A. hardlyB. almostC. nearlyD. easily( ) 44. We'd like to know ________ about your school life.A. some thingB. any thingsC. somethingD. somethings( ) 45. My brother didn't like the T-shirt in the past. He thought it made him ________ short.A. lookB. looksC. to lookD. looked( ) 46. It's lucky that all my family members ________A. is safeB. is safetyC. are safeD. are safety( ) 47. ________foreigners will come to visit Shanghai during World Exp0 2010. .A. MuchB. Quite a lotC. A great deal ofD. A great number of ( ) 48. There were many different ways of ________numbers in this village.A. to writeB. writesC. wroteD. writing( ) 49. About ________of the workers in the factory were born in the .A. two-thirds ... 1970B. two-thirds ... 1970sC. two-third ... 1970D. two-third ... 1970s( ) 50. - --How long will Philip stay here?---- For two ________weeks till he leaves for another town.A. manyB. muchC. moreD. most( ) 51. He jumped into the river to save the little boy ________ he heard the cry for help'.'A. thoughB. as soon asC. beforeD. Until( ) 52. I don't know Sam's telephone number. Will you please ________ in your address book for me?A. look up itB. look it upC. look for itD. look at it( ) 53. The electric fan can hardly blow away the terrible smell in the hall, ________?A. can itB. can't itC. does itD. doesn't it( ) 54. - --Shall we make a pizza by ourselves instead of buying one?----________A. The same to you.B. Don't worry.C. That's a good idea.D. So did L( ) 55. When we write an English letter, we usually put the date ________ .A. under the addressB. at the end of the letterC. returned back toD. returned to( ) 56. We gave the police ________ information about the thieves.A. one moreB. some moreC. a few usefulD. many moreIV. Rewrite the sentences as required. (改变句型)57. I was having dinner at my friend's home this time last night. (改为一般疑问句)________ ________having dinner at your friend's home this time last night?58. David is a very careful accountant. (改成感叹句)________ ________David does his accountant work!59. Linda won the first prize with the help of the teacher (对划线部分提问)________ ________Linda win the first prize?60. Mary hoped that she would achieve an "A" in the physics test. (改成简单句)Mary hoped ________ ________an "A" in the physics test.61. When I stayed in the town, I visited some schools.(保持原意)________ my ________in the town, I visited some schools.62. My father sometimes teaches me how to deal with trouble. (用yesterday改写)My father ________ me how to________with trouble yesterday.63. The manager is very busy. He has no time to make a phone call to his clients. (合并成一句)The manager is________to ________a phone call to his clients.Part 3 Reading and Writing(第三部分阅读与写作)I.Reading comprehension.(阅读理解)A.True or False.(判断下列句子是否符合短文内容,符合的用“r’表示,不符合的用“P表示)Leaders get a taste of British food at its bestBRITISH food doesn't have a great image around the world. Visitors to the country enjoy the famous sights of London, love the beauty of the countryside, but they often can't take the food. When they get back home, they tell their friends: "Lovely country, but the food stinks(让人讨厌)!”Things are different now. Or at least that's what celebrity British chef(明星厨师), Jamie Oliver, wants the world to think. The G20 summit(峰会)of world leaders was held in London on April 2. The meeting was to discuss the world financial crisis(金融危机)and find solutions to the problem.Oliver was asked to prepare the meal for the VIPS. What did he serve them up? The meat of the moment in Britain is lamb(羊肉).The world leaders ate delicious shoulder cuts from Wales. The food was prepared by Oliver and the team of young workers from his London restaurant, Fifteen.Fifteen is a charitable(慈善的)effort by the 33-year-old Oliver. He hired and trained 15 young people from poor backgrounds to run it. It's part of his plan to improve the Standard(标准)of British food and do something for society as well.Let's just hope the world leaders will enjoy their meal!( ) 64. Most visitors can't enjoy the British food.( ) 65. Nobody likes going to the countryside of Britain.( ) 66. The G20 summit of world leaders was a charitable meeting.( ) 67. Oliver owns fifteen restaurants in London.( ) 68. As a celebrity chef, Oliver showed his responsibility for the society.B.Choose the best answer.(根据短文内容,选择最恰当的答案,用A,B,C或D表示)GONE WITH THE WINDAuthor: Margaret Mitchell¥25 (in bookstores) ¥18 (online)Gone With the Wind is a best-seller, which tells a story thathappened in the American Civil War(美国内战). Scarlett O’Hara is awoman in the story who is full of energy. She is strong and saves herfamily but is very selfish at the same time.◆ A LITTLE PRINCESSAuthor: Frances Hodgson Burnett¥18.3 (online)Motherless Sara Crewe was sent home from India to school atMiss Minchin’s.Her father was very rich and she lived a rich andcomfortable life. Then her father died and Sara lost everything. Shehad to learn to do with her changed life. Her strong character made herable to fight successfully against her poverty(贫穷) and the scorn(嘲笑) of her fellows(伙伴). It’s an excellent book with 4 tapes(磁带) forchildren.◆PETER PANAuthor: J.M Barrie¥15 (in bookstores) ¥12 (online)It is a children’s story full of imagination and adventures(冒险),which is about Wendy, John, and Michael Darling’s adventures inNever-Never Land with Peter Pan, the boy who would not grow up. Thechildren are happy and lovely. (with 2 tapes)◆UNCLE TOM’S CAB INAuthor: Harriet Beecher Stowe¥20 (in bookstores)The most famous novel in American history, Uncle Tom’s Cabintalked about the struggle between free states and slave(奴隶) statesduring the American Civil War and is as powerful today as when it firstcame out 150 years ago.◆THE SECRET GARDENAuthor: Frances Hodgson Burnett¥35 (in bookstores) ¥30 (online)Mary Lennox, a sickly orphan(孤儿), finds herself in her uncle’sdark house. Why are so many rooms locked? Why is one of the gardenslocked? And what is that crying she hears at night? Through the powerof hope, friendship, and the magic of nature, the brave girl brings thehouse and a long-lost garden back to life.( )69. All of the following books have children as their main characters except _________.A. PETER PANB. GONE WITH THE WINDC. A LITTLE PRINCESSD. THE SECRET GARDEN( )70. We can know from the passage that _________.A. there are only three books with tapesB. we can buy 5 kinds of the above books in bookstoresC. two of the above books are written by Frances Hodgson BurnettD. THE SECRET GARDEN is ¥5 cheaper in bookstores than online( )71. If you buy THE SECRET GARDEN and PETER PAN online, you have to pay _______A. ¥30B. ¥12C. ¥50D. ¥42( )72. Mary brings the house and a long-lost garden back to life with the help of ________.a. the power of hopeb. friendshipc. her uncled. nature’s magicA. a, b, cB. a, c, dC. b, c, dD. a, b, d( )73.Which book talked about the struggle between free states and slave (效隶)states during the American Civil War?A. PETER PANB. GONE WITH THE WINDC. UNCLE TOM'S CABIND. THE SECRET GARDEN( ) 74. You can buy UNCLE TOM'S CABIN ________.A. onlineB. in supermarketsC. in bookstoresD. in shopping malls( )75. Which of the following about the books is mentioned(提到) in this passage?A. What Sara did to help her fellows.B. Why Peter Pan wouldn’t grow up.C. What kind of woman Scarlett is.D. How Marry Lennox came into her uncle’s house.C. Read the passage and choose the best words or expressions to complete the passage.We get 24 hours a day, no more, no less. How to properly manage one's time can be a challenge. To be a successful employer or employee, you must be responsible for your job, and be 76 to make important decisions under deadline c鼓后期限) pressure(压力).It's important to learn proper time management and to organize your _ 77 . Here are some practical tips that will help you manage your time better.1. Plan your schedule according to _ 78 _, and stick to it.2. Arrange extra time between tasks: Do not make your schedule too tight. When a meetingis delayed, successive plans are likely to be put _ 79 0r cut off. This can easily cause stress(紧张).3. As telecommunication and net working technologies are greatly improved, it is moreconvenient for people to communicate with each other through e-mail, telephones and mobile phones,4. Take full advantage of communication technology to solve problems without 80 time.5. Don't be lazy. Those who want perfect results often work 81 under great pressure.Take short breaks. Close your eyes and concentrate your mind. Look out of a window for five minutes or take a walk to help you relax.( ) 76. A. enable B. able C. disable D. ought( ) 77. A. homework B. work C. responsible D. company( ) 78. A. easy B. necessary C. importance D. facts( ) 79. A. on B. off C. out D. up( ) 80. A. using B. saving C. taking D. wasting( ) 81. A. more B. more slowly C. harder D. hurriedlyD.Read the .passage and fill in the blanks with proper words.(在短文空格内填入适当的词,使其内容通顺,每空限填一词,首字母已给)Most Beiling middle school students are having a special holiday this summer. They aretraining hard i 82 of going out with friends or traveling. They will p__83 a group display in a big parade in Tian'anmen Square on O 84 1st to mark the 60th birthday of the country.They w _85 white hats, T-shirts and dark-blue trousers. Their hats and T-shirts are p 86 with a red logo, the number "60". They train in the early morning or in the late afternoon to avoid the summer h 87 .During the first week, they p__88 standing and squatting. Then they moved on to the group display. They make beautiful patterns with colored sheets in the shape of flowers. What a fantastic sight that would be!E. Answer the questions.(根据短文内容回答下列问题)Today, roller skating is easy and funny. But many years ago, it wasn't easy at all.Before 1750, people never tried skating on wheels. That changed because of a man named Joseph Merlin. Merlin's work was making instruments. In his free time he liked to play the violin. Merlin was a man with many new ideas and many dreams. People called him a dreamer.One day Merlin received an invitation to go to an important party. He was very pleased and a little excited. As the day of the party came near, Merlin began to think. He wanted to find a way to make a wonderful entrance at the party. Merlin had an idea. He thought that he would attract a lot of attention if he could skate into the room.Merlin tried difficult ways to make himself roll. Finally, he decided to put two wheels under each shoe. These were the first roller skate shoes. Merlin was very proud of them. He dreamed of arriving at the party and skating into the room while playing the violin. He was sure that everyone would be very surprised.On the night of the party Merlin rolled into the room, playing his violin. Everyone was really surprised to see him. There was just one problem. Merlin had no way to stop his roller skating. He rolled on, playing the violin. Then: with all eyes on him, Merlin hit into a huge mirror on the wall. The mirror broke into many pieces with a very loud noiseNobody forgot Merlin's wonderful entrance after that,89. When did people try skating on wheels? '____________________________________________________________90. Why did people call Merlin a dreamer?____________________________________________________________91. An important party made Merlin think of skating on wheels, didn't it?____________________________________________________________92. What was Merlin's problem after he rolled into the room?____________________________________________________________93, How did Merlin st'op himself?____________________________________________________________94. What do you think of Merlin and his invention?____________________________________________________________II. Writing.(怍文)95. Write a passage of at least fifty words about the topic "My Ideal School Life".Necessary points: (1) What school is your ideal school?.(2) Why do you like this school?(3) What will you do to study happily in this school?You may begin like this:Recently, we did a survey in our school on what an ideal school life should be like . . . .。
广告调查常用语简录
广告调查常用语简录AApplied research -------------------------------------应用型调查Attitude----------------------------------------------态度Allowable sampling error------------------------------允许抽样误差Analysis of variance (ANOVA)------------------------方差分析Attention span----------------------------------------注意力集中A priori segmentation---------------------------------先期市场细分Ad positioning statement tests------------------------广告定位宣传测试Ad concept testing------------------------------------广告概念测试Audience rating---------------------------------------收视率Ad tracking research----------------------------------广告跟踪调查BBasic research----------------------------------------基础性调查Balanced scales---------------------------------------平衡量表Bivariate techniques----------------------------------二元变量法Bivariate regression analysis-------------------------二元变量回归分析CConsumer orientation----------------------------------消费者导向Custom, or Ad hoc, marketingresearch firms----------------------------------------定制市场调查公司Causal studies----------------------------------------因果性研究Concomitant variation---------------------------------相随变化Cartoon tests-----------------------------------------漫画测试法Consumer drawings-------------------------------------消费者绘图Computer-assisted telephoneinterviewing(CATI)----------------------------------电脑辅助电话调查Content analysis--------------------------------------内容分析Causal research---------------------------------------因果调查Concomitant variation---------------------------------相关关系Contamination-----------------------------------------干扰Comparative scales------------------------------------比较性量表Constant sum scales-----------------------------------固定总数量表Closed-ended questions--------------------------------封闭式问题Call record sheets------------------------------------通话纪录单Census------------------------------------------------普查Cluster samples---------------------------------------整群抽样Convenience samples-----------------------------------便利抽样Central limit theorem---------------------------------中心极限定理Confidence level--------------------------------------置信度Coding------------------------------------------------编码Crosstablulation--------------------------------------交互分组表Coefficient of determination--------------------------可决系数Correlation analysis----------------------------------相关分析Collinearity------------------------------------------共线性Causation---------------------------------------------因果关系Cluster analysis--------------------------------------聚类分析Conjoint analysis-------------------------------------联合分析Consumer Satisfaction---------------------------------消费者满意度Communication-----------------------------------------沟通DDescriptive function----------------------------------描述功能Diagnostic function-----------------------------------诊断功能Descriptive studies-----------------------------------描述性研究Dependent variable------------------------------------因变量Database marketing------------------------------------数据库营销Database management system----------------------------数据库管理系统Discussion guide--------------------------------------讨论提纲Depth interview---------------------------------------深度访谈法Door-to-door interviewing-----------------------------入户访问Direct computer interviewing--------------------------电脑直接访问Disguised observation---------------------------------掩饰观察Dichotomous questions---------------------------------二项式问题Discriminate score------------------------------------判别分Discriminate coefficient------------------------------判别系数Downward communication--------------------------------下行沟通EExploratory research----------------------------------试探性调查Experiments-------------------------------------------实验Evaluative research-----------------------------------评估性调查Executive interviewing--------------------------------经理访谈Experiment--------------------------------------------实验法External validity-------------------------------------外在有效性Editing-----------------------------------------------编辑Error check routines----------------------------------错误检查程序Executive summary-------------------------------------执行性摘要Ethics------------------------------------------------伦理Field service firms----------------------------------实地调查公司Focus group interview(FGI)-------------------------焦点小组访谈法Focus group facility---------------------------------焦点小组测试室Focus group moderator--------------------------------焦点访谈主持人Frame error------------------------------------------抽样框误差Finite population correction factor------------------有限总体修正指数Factor analysis--------------------------------------因子分析Factor loadings--------------------------------------因子载荷GGoal orientation-------------------------------------目标导向Group dynamics---------------------------------------群体动力HHypothesis-------------------------------------------假设Humanistic inquiry-----------------------------------人文调查IIndependent variable---------------------------------自变量Internal database -----------------------------------内部数据库Interviewer error------------------------------------访问员误差Incidence rate---------------------------------------发生率Interval scales--------------------------------------等距量表Itemized rating scales-------------------------------列举评比量表Interviewer's instructions---------------------------调查员说明Interval estimates-----------------------------------区间估计Intelligent data entry-------------------------------智能数据录入JJudgment samples-------------------------------------判断抽样LLongitudinal study-----------------------------------纵向研究Likert scales----------------------------------------利克特量表Low ball pricing-------------------------------------虚报价格Marketing--------------------------------------------营销;行销Marketing concept------------------------------------市场营销观念Marketing mix----------------------------------------营销组合Marketing research-----------------------------------市场调查Marketing strategy-----------------------------------营销战略Marketing research problem---------------------------市场调查问题Marketing research objective-------------------------市场调查目标Management decision problem--------------------------管理决策问题Measurement------------------------------------------测量Measurement error------------------------------------测量误差Measurement instrument error-------------------------测量工具误差Mall intercept interviewing--------------------------街上拦截法Mail panels------------------------------------------固定邮寄样本调查Multidimensional scaling-----------------------------多维量表Multi-choice question--------------------------------多项选择题Machine cleaning of data-----------------------------数据自动清理Marginal Report--------------------------------------边际报告Mean-------------------------------------------------均值Median-----------------------------------------------中位数Mode-------------------------------------------------众数Multivariate analysis--------------------------------多变量分析Multiple regression analysis-------------------------多元回归分析Market segmentation----------------------------------市场细分NNonprobability samples-------------------------------非随机样本Nonresponses bias------------------------------------拒访误差Nominal scales---------------------------------------类别量表Nonbalanced scales-----------------------------------非平衡量表Normal distribution----------------------------------正态分布Noise------------------------------------------------噪音OObservation research---------------------------------观察调查法Open observation-------------------------------------共开观察One-way mirror observation---------------------------单向镜观察法Ordinal scales---------------------------------------顺序量表Open-ended questions---------------------------------开放式问题Optical scanning-------------------------------------光学扫描录入One-way frequency table------------------------------单向频数表On-air testing---------------------------------------实际播放测试PPredictive function----------------------------------预测功能Programmatic research--------------------------------计划性调查Probability samples----------------------------------随机样本Primary data-----------------------------------------原始资料Projective techniques--------------------------------投射法Photo sort-------------------------------------------照片归类法Population specification error-----------------------调查对象范围误差Processing error-------------------------------------处理过程误差People reader----------------------------------------阅读器Pupil meter------------------------------------------测瞳仪Purchase intent scales-------------------------------购买意向量表Paired comparison scales-----------------------------配对比较量表Pretest----------------------------------------------预先测试Population-------------------------------------------总体Proportional allocation------------------------------按比例分配Point estimates--------------------------------------点估计Population standard deviation------------------------总体的标准差Presentation software--------------------------------提案软件Profession-------------------------------------------职业Professionalism--------------------------------------专业水平Product positioning research-------------------------产品定位调查Post hoc segmentation--------------------------------后期市场细分Product prototype tests------------------------------产品原型测试Product pricing research-----------------------------产品定价研究Packaging tests--------------------------------------包装测试Product concept testing------------------------------产品概念测试QQualitative research---------------------------------定性调查Quantitative research--------------------------------定量调查Questionnaire----------------------------------------问卷Quota samples----------------------------------------配额抽样RResearch request-------------------------------------调查申请Response bias----------------------------------------回答误差Random error(random sampling error)----------------随机(抽样)误差Ratio scales-----------------------------------------等比量表Rule-------------------------------------------------规则Rank-order scales------------------------------------等级顺序量表Random digit dialing---------------------------------随机数字拨号Range------------------------------------------------全距Regression coefficients------------------------------回归系数Research management----------------------------------调查管理Reengineering----------------------------------------再造SSystem orientation-----------------------------------系统导向Syndicated service research firms--------------------辛迪加服务调查公司Strategic partnering---------------------------------战略伙伴关系Spurious association---------------------------------虚假联系Survey research--------------------------------------询问调查Selective research-----------------------------------选择性调查Secondary data---------------------------------------二手资料Sentence and story completion------------------------句子与故事完成法Self-administered questionnaire----------------------自我管理问卷Systematic error-------------------------------------系统误差Selection error--------------------------------------抽选误差Structured observation-------------------------------结构性观察Shopper patterns-------------------------------------购买者模式Shopper behavior research----------------------------购买者行为研究Simulated Test Marketing(STM)----------------------模拟市场测试Scaling----------------------------------------------量表Semantic difference----------------------------------语意差别法Staple scales----------------------------------------中心量表Survey objectives------------------------------------询问目标Screeners--------------------------------------------过滤性问题Scaled-response question-----------------------------量表式问题Supervisor's instructions----------------------------管理这说明Sample-----------------------------------------------样本Sample frame-----------------------------------------抽样框Simple random sampling-------------------------------简单随机抽样Systematic sampling----------------------------------等距抽样(系统抽样)Snowball samples-------------------------------------滚雪球抽样Stratified samples-----------------------------------分层抽样Sample distribution----------------------------------样本分布Sampling distribution of the sample mean-------------样本平均数的抽样分布Standard error of the mean---------------------------平均数的标准误差Sampling distribution of the population--------------比例抽样分布Standard normal distribution-------------------------标准正态分布Standard deviation-----------------------------------标准差Skip pattern------------------------------------------跳跃方式Selective perception----------------------------------选择性知觉Single-number research--------------------------------单一调查数据TTemporal sequence-------------------------------------时间序列Telephone focus groups--------------------------------电话焦点访谈法Two-way focus groups----------------------------------双向焦点访谈法Third-person techniques-------------------------------第三人称法UUnstructured observation------------------------------非结构性观察Unidimensional scaling--------------------------------一维量表Upward communication----------------------------------上行沟通Unstructured segmentation-----------------------------随意细分VVariable----------------------------------------------变量Variance ---------------------------------------------方差Validation--------------------------------------------确认WWord association tests--------------------------------语句联想法。
2016《新模式英语1》期末考试A卷及答案
2015~2016学年度第一学期15计算机班、15商务班、15机电班《新模式英语1》期末考试卷A考核方式:理论闭卷考核时间:100分钟一、单选.(每题1分,共15分)1、 __________________ your books.A openB opensC Open2 、 __________________ the paperA ReadsB readingC Read3 、 __________________ the teacherA Listen toB listen toC Listens to4、 __________________ your nameAOpen B sit down C Write5、 __________________ a piece of paperA Take outB openC Listen6、 __________________ a studentA Stand upB HelpC Sit down7、 We __________________16 years old.A amB isC are8、 She __________________from San Diego.A amB isC are9、 You __________________ married.A amB isC are10、 Jennifer and I __________________ from the U.S.A amB isC are11、 The students __________________ from Cuba.A amB isC are12、 John __________________ 6’tall.A hasB is13、 Yuuki __________________ three auntsA haveB has.14、 We __________________ for books at the bookkstore.A shopB shops15、 Armand __________________ for flowers at the flower shop. 班级学号姓名成绩A shop B shops二、完形填空(共15分,每小题1.5分)阅读下面的短文,掌握其大意,然后从短文后各题所给的A、B、C、D四个选项中,选择最佳选项。
mid exam
Mid-term Examination Paper for Grade 2003(To be finished within one hour. Be sure to put all your answers on the ANSWER SHEET)Class ___________ Name _________ Score_________I.Vocabulary (20%)A.Spell the following words with the help of their meanings and the first letters:1.fr_____________ v. defeat(one’s effort)2. th____________ a. careful and complete3. co____________ v. cause to work together4. com____________ n. state of being devoted to sth.5. rh______________ n. a regular pattern of sounds that come again and again6.co______________ a. always having the same attitudes, quality, etc.7.p_____________ v. hit sb. or sth. hard with fists8.ph____________ a. of the body rather than the mind or soul9.fa______________ a. most liked10.de_____________ ad. without doubt, clearlyplete each of the following sentences with the proper form of the wordgiven in brackets:11.(forget) We went to a beautiful town and spent a(n) ____________ day.12. ( peace) I want my children to be brought up in a __________ world.13.(health) This book is not _________ reading for children.14. (complain) He made a _________ to the local police about the terrible noise fromthe next door.15. (present) I have been asked to give a short ________ on the aims of the plan.16. (consciously) John has a(n) ________ habit of tapping his fingers on the desk.17. (wake) The children are still ____________, waiting for their mother to comeback.18. (explain) Is there any _______ for his strange way of doing things?19. (envy) She will always be ________ of her sister’s beauty.20. (worth) He felt himself quite ________ of her.II. There are 60 incomplete sentences in this part. For each sentence there are four choices marked A, B, C, and D. Choose the ONE that best completes the sentence. (60%)1.Over a third of the world population was estimated to have no _______ to thehealth service.A. assessmentB. assignmentC. exceptionD. access2.In Australia the Asians made their influence ______ in businesses large and small.A. feelingB. feelC. feltD. to be felt3.Nuclear science should be developed to benefit the people ______ harm them.A. more thanB. other thanC. rather thanD. better than4.Very few scientists _______ completely new answers to the world’s problems.A. come up withB. come outC. come aroundD. come up to5.________ for an explanation of the social customs of this country, I woulddefinitely find it difficult.A. If askedB. If askingC. AskingD. Asked6.This is a subject ________ we might argue for a long time.A. whichB. about whichC. whatD. about that7. Although he is talkative, he is ________ to tell us anything about his family.A. willingB. reluctantC. alertD. complacent8.Those who _______ hearing the story again come over and add themselves to theaudience.A. joined inB. felt likeC. tended toD. sat on9._____ the secret is known to all, nobody will be interested in him any more.a. before B. Once C. Although D. Unless10.We are aware that, _______ the situation will get worse.A. if not dealing with carefullyB. if dealt not carefully withC. if not carefully dealt withD. if not carefully dealing withst night, we caught a thief ________ John’s bike.A. when stealingB. that he stoleC. to stealD. stealing12.It is vital that you ______ quickly to whatever is asked.A. respondB. respondedC. will respondD. are responding13.We have all learnt a lot from the ______.A. three month’s training courseB. three-month training courseC. three-month-training courseD. three-month’s training course14.However much ______, it will be worth the money.A. does the dictionary costB. the dictionary costsC. the dictionary will costD. costs the dictionary15.Neither the revolution in manufacture nor that in agriculture _______ without thebrilliant inventions in transportation and communication.A. could have proceededB. should have proceededC. ought to have proceededD. must have proceeded16.A man of words and not of deeds is _______ a garden full of weeds.A. just asB. just likeC. alikeD. as if17.I had a lot of trouble ______ the car _____ this morning.A. to get, startedB. to get, startingC. getting startedD. getting , starting18.She’ fainted. Throw some water on her face and she may _____.A. come toB. come backC. come outD. come up19.This milk must be bad; it’s ______ a nasty smell.A. givingB. giving awayC. giving offD. sending off20.He feels ______ to be a supermarket manager.A. it challengedB. challengingC. that challengingD. it challenging21.When I feel very tired of serving the customers, _______ is a smile from them”.A. all what is neededB. that what is neededC. what all is neededD. all that is needed22._________, her heart was beating faster and faster.A.Listening to the coming footstepsB.As she listened to the coming footstepsC.When listening to the coming footstepsD.To the coming footsteps as she listened23.This sentence is extremely difficult ______.A. to understand itB. to understandC. for me to understand itD. to have understood24.That night many people watched the ______ object in the sky with great interest.A. bright unknown flyingB. unknown bright flyingC. flying unknown brightD. unknown flying bright25._______, the idea of working under a woman frustrated him.A. Wanting the job very muchB. Though he wanted the job very muchC. When wanting the job very muchD. Wanted the job very much26.When you have finished reading the novel, you will find the hero _______.A. a person too perfect to be not trueB. a too perfect person to be trueC. too perfect a person to be trueD. too perfect a person to be not true27._______, we decided to leave at once, as we didn’t want to risk missing the lastbus.A. Being pretty lateB. It being pretty lateC. As it being pretty lateD. It was being pretty late28.He won’t feel tired this morning if he _______ to bed immediately after you toldhim so.A. wentB. would goC. had goneD. would have gone29._________, water should be regarded with caution as it can be dangerous.A. Beautiful as it isB. It is beautifulC. As it is beautifulD. Beautiful it is30.______, I might have ended up dead.A. Were he not to come to the rescueB. Should he not come to the rescueC. Had he not come to the rescueD. If he did not come to the rescue31.At first I thought that math problem would be rather difficult, but it ______ to befairly easy.A. turned outB. turned upC. turned onD. turned over32.I have been looking at the letter for half an hour, but I still can’t _______ thesignature.A. write downB. make outC. find outD. watch over33._______ makes men different from the other animals is that they can think andspeak.A. ThatB. The thingC. AllD. What34.Look at this room. Never in my life _______ such a mess.A. do I seeB. I seeC. have I seenD. I have seen35.I have to _______ my expenditure to my income.A. treatedB. adjustedC. adoptedD. remedied36.Every time I read Chairman Mao’s “On Practice”, I derive fresh ______ from itspages.A. advantageB. benefitC. profitD. value37.The ________ rain has destroyed the crop of the year.A. continuousB. constantC. continualD. frequently38.She __________ to the compliment with a smile.A. answeredB. repliedC. respondedD. turned39.Online learning greatly _______ the interest of the public.A. aroseB. arousedC. raisedD. roused40.With the population explosion, scientists will have to _________ new methods ofincreasing the world’s food supply.A. lead toB. carry outC. come up withD. stick to41. You don’t have to tell him! He is fully ______ the danger.A. sure ofB. aware ofC. blind toD. confident of42.Overwork often _______ illness.A. results fromB. depends onC. leads toD. breaks into43.You look very tired. You ______ too hard these days.A. could have workedB. ought to have workedC. should have workedD. must have worked44.Many animals _______ green plants for their food.A. carry outB. base onC. depend onD. look for45.European students seldom live on campus. ________, they live at home and travelto classes.A. InsteadB. For exampleC. What’s moreD. However46.These are the decisions you have to weigh _______.A. when to choose a college to attendB. when choosing a college to attendC. a college chosen to attendD. a college you choose to attend47.Either walking to school or washing dishes after a meal _________ I hate most.A. are whatB. are thatC. is whatD. is that48.He talked so much during the chess match that he _______ the game.A. distracted me fromB. kept me fromC. prevented me fromD. stopped me from49.A voice _______ the program to announce the election results.A. broke intoB. broke offC. cut downD. cut out50.She talked to him for a long time and _______ him into accepting that job.A. persuadedB. dissuadedC. overcameD. conquered51.Don’t talk about her son’s behavior at school. It’s a(n) ________ subject to her.A. awkwardB. embarrassingC. nervousD. disgraced52.Mooncakes are still the food for the Mid-Autumn Festival in China, ______ theywere decades ago.A. thatB. sinceC. asD. which53.His family found it hard to ________ into the local community after they movedto the city.A. associateB. assimilateC. diveD. contact54.I am able to _________ others and bridge the gap between my language andculture and theirs.A. reach forB. reach out forC. gain access toD. reach out to55.The senator’s son __________ his father’s name when ran for mayor.A. traded forB. exchanged forC. traded onD. turned down56.In a time of social reform, people’s state of mind tends to keep _______ with therapid changes of society.A. stepB. progressC. paceD. touch57.Only under special circumstances _______ to take up tests.A. are freshmen permittedB. freshmen are permittedC. permitted are freshmenD. are permitted freshmen58.Louis was asked to _______ the man who stole her purse.A. confirmB. recognizeC. defyD. identify59.These goods are ________ for export, though a few of them may be sold on homemarket.A. essentiallyB. completelyC. necessarilyD. remarkably60.After _________ relations for more than 20 years, China and the U.S.reestablished their diplomatic ties in 1972.A. breaking offB. breaking inC. breaking intoD. breaking out of II.Put the following sentences into proper English (20%)1.生活中并非所有的事情都值得我们冒险.2.会上该教授对人类当前对这门科学所了解的现状作了完整的陈述3.父亲极力注意不让我的许多业余时间白白浪费.4.这种产品在投放市场前必须进行数次严格测试.5.这两国一向友好相处, 几百年没有发生过战争.KeyA. 1. frustrate 2. thorough 3. coordinate 4. commitment5. rhythm6. consistent7. punch8. physical9.favorite 10. definitelyB. 11. unforgettable 12. peaceful 13. healthy 14. complaint15. presentation 16. unconscious 17. awake 18. explanation 19. envious 20. unworthyII.1. D2.C3.C4. A5. A6. B7. B8.B 9B. 10. C 11. D 12.A 13. B 14. B 15. A 16. B 17. C 18. A 19. C 20. D.21. D 22. B 23. B 24. A 25. B 26. C 27. B 28. C 29. A 30. C 31. A 32. B 33.D 34. C 35. B 36. B 37. C 38. C 39. B 40. C 41. B 42. C 43. D 44. C 45. A 46. B 47. C 48. A 49. A 50. A 51. B 52. C 53. B 54. D 55.C 56. C 57. A 58. D 59. A 60. A III.1.Not everything in life is worth our risk.2.At the meeting the professor made a complete presentation of the present status ofhuman knowledge of science.3.Father saw to it that much of my spare time was not wasted.4.This type of product must be subjected to a number of severe tests before cominginto the market.5.These two countries have been friendly and remained at peace for hundreds ofyears.。
住院医师规范化培训选修课3.其他信息资源检索考试答案
1、对Google的描述,以下是错误的是()?*C2、以下哪个词是胃肿瘤在MeSH中的规范表达()?*D3、()是主题词检索入口?*D4、在科技评价中被广泛使用的数据库是()?*C5、下面不可以缩小检索结果范围的是()?*D6、以下哪项不是循证医学期刊的特点()?*D7、《中国生物医学文献数据库》(CBMDisc)收录的文献起源于()年?*B8、在循证医学中,被认为是最高级别的证据的是()?*A9、Pubmed自动语词转换功能需要将检索词在哪个词表中匹配()?*E10、CBMDisc中的“二次检索”表示()运算?*A11、网络检索工具的目录检索途径较适用于查找()?*D12、以下哪个词不是MeSH中的副主题词()?*D13、下列哪项不是Intervention的内容()?*D14、在PubMed中检索Smith AD 发表在Journal of Trauma杂志上的文章,应该检索()?*C15、以下属中文数据库的有()?*B16、构建临床问题的国际通用PICO原则,P是()?*A17、在MY NCBI中增加F1000的filter,在先哪个选项中搜索()?*B18、我国现行的医学查新咨询工作包括()?*D19、下面哪个数据库是引文数据库()?*D20、Pubmed中标示为indexed for MEDLINE的记录表示()?*B21、文章题名检索在FILTERS选项中限定()?*D22、以下哪个选项不是Cochrane 系统评价的特点()?*D23、以下对元搜索引擎描述是错误的是()?*A24、CBMDisc中要了解某种刊物的出版信息,可以点击()?*D25、网络检索工具按工作原理可分为搜索引擎、目录和()?*B26、分类途径的检索标识是()?*B27、目前,MeSH共有主题词()?*B28、中国生物医学文献数据库的英文缩写是()?*B29、查找原始文献需要依据文献外表特征中的()?*C30、下列哪项描述是错误的()?*B31、CBMDisc中的对主题词进行加权检索能够()?*B。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
2
Q2
Velocity Potential - Stream function
f (x, y ) = xA y + By A+1 , A ≥ 0, B ≥ 0
(20 points)
A function possibly describing a two-dimensional flow is given as
→ − V = vr e ˆ ˆ ˆ r + vθ e θ + vz e z
Polar
→ − Divergence (dot product) of a Vector, V → − ∂u ∂v ∂w ∇· V = + + ∂x ∂y ∂z → − ∇× V = Cartesian
2
∂ 2ψ ∂x∂y
2
,
where ∇2 is the Laplacian operator. The above equation can be non-dimensionalized using reference length L, reference velocity U and reference pressure ρU 2 . Determine the functional form of reference stream-function ψ0 .
CIVL3612/9612 - Mid-Semester Exam
4
Q4
Potential flow over a half-body
(20 points)
The bottom of a river has a 4 m high bump that approximates a Rankine half-body, as in the figure. The pressure at point B on the bottom is 130 kPa, and the river velocity is 2.5 m/s. Use inviscid theory equations provided, estimate the pressure at point A on the bump, which is 2 m high in elevation. For water at 20◦ C, ρ = 998 kg/m3 .
OR
Determine velocity profile An infinitely long, solid, vertical cylinder of radius R is located in an infinite mass of viscous incompressible fluid. Consider the flow in which the cylinder is rotating about a fixed axis with constant angular velocity, ω . Neglect body forces and assume that the flow is axisymmetric.
CIVL 3612/9612 - Fluid Mechanics, Semester 1 2016 Mid-Semester Exam - TUESDAY Last name First name SID University email Instructions 1. The exam will last 1 hour and 50 minutes, inclusive of 5 minutes reading time. 2. Don’t forget to write your name on this page as well as your student number. 3. This is a closed book exam. You are NOT allowed to bring additional material of any kind. 4. Relevant equations to solve the problems are at the back of this booklet. 5. A standard scientific calculator is permitted. No graphical or programmable calculators are allowed. Similarly, phones, tablets or computers are strictly not allowed. 6. Read the questions carefully and start with the easiest problem. 7. Clearly and neatly show each step of your solution in the space provided. If your final answer is incorrect, you may receive partial points if your method is deemed to be correct. 8. If you have the correct answer without showing each step of your solution, you will receive a mark of zero. 9. Do NOT remove any pages from this booklet. If you need extra pages to write answer, ask a tutor for blank pages. 10. Use FRONT AND BACK of this answer booklet. 11. Good luck. For examiners only: @.au
(a) Simplify the Navier-Stokes equations stating all assumptions clearly (b) State the proper boundary conditions. (c) Derive an expression for the velocity distribution. (d) Determine the only non-zero component of shear stress in this flow. Where is it maximum?
x 2 − a0 γ+1 t
(15 points)
A one-dimensional unsteady flow is given by the following velocity u=
and density field ρ = ρ0 γ−1 x 1 2 + γ + 1 t a0 γ + 1
2 γ −1
5
Q5
Navier-Stokes equations
(25 points)
Determine pressure distribution A two-dimensional flow field for is given as u = Kx, v = −Ky, w = 0, K = constant.
(a) Neglect gravity and show that the velocity field is an exact solution to the incompressible Navier-Stokes equations. (b) Compute the pressure field p(x, y ) and relate it to the absolute velocity V 2 = u2 + v 2 . Interpret the result. (c) Briefly state how your approach to solve this problem will change if gravity is not neglected and z is ‘up’ (gx = 0, gy = 0, gz = −g )? Limit your answer to 2-3 sentences.
Inviscid theory for half-body Stream function = U r sin θ + m θ 2π Half-width = πb b= m 2πU Equation of surface: r = b(π − θ) sin θ
CIVL3612/9612 - Mid-Semester Exam
Determine (1) A and B for f (x, y ) to be a valid velocity potential, i.e. φ = f (x, y ). (2) A and B for f (x, y ) to be a valid stream function, i.e. ψ = f (x, y ). (3) If A = 0 and φ = f (x, y ), sketch at least two distinct streamlines.
CIVL3612/9612 - Mid-Semester Exam
3
Q3
Solve ONLY ONE of the following
(20 points)
Non-dimensional governing equation The Pressure-Poisson Equation (PPE) relating pressure (p) and stream function (ψ ) in a two-dimensional incompressible flow is given as ∂ 2ψ ∂ 2ψ ∇ p = 2ρ − ∂x2 ∂y 2
OR
Froude Number Similarity An open channel with a rectangular cross-section has a 8 m width and 2 m depth with water flowing at 5 m3 /s. A model is designed to discharge 1/1024 that of the prototype. (a) Find width and depth of the model using Froude number similarity. (b) Is Reynolds number similarity achieved for tests in (a) if the working fluid is the same for model and prototype? Why?