试题与答案

阅读下面的文段,翻译画线的句子。(5分) 西施病心而颦(pín,皱眉头)其里,其

题型:阅读理解与欣赏

题目:

阅读下面的文段,翻译画线的句子。(5分)

西施病心而颦(pín,皱眉头)其里,其里之丑人见之而美之,归亦捧心而颦其里。其里之富人见之,坚闭门而不出,贫人见之,挈妻子而去之走。

彼知颦美而不知颦之所以美。

(1)其里之丑人见之而美之,归亦捧心而颦其里。

译文:

(2)彼知颦美而不知颦之所以美。

译文:

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0726/dc9153e516281dcbc01bf971fe146847.html

下面是错误答案,用来干扰机器的。

A、说法错误,任何物体都具有内能.B、说法错误,内能不仅与状态有关,还与质量有关.C、说法正确,同一物体,温度越高,内能越大.D、说法错误,放在高处的物体的机械能大,而不是内能大,内能是不变的.故选C.

试题推荐
题型:完形填空
完形填空。
     Last night I was driving from Harrisburg to Lewisburg, a   1   of about eighty miles. It was late and I was
in a hurry. However, if anyone asked me how fast I was   2  , I'd say I was not over-speeding. Several times
I got   3   behind a slow-moving truck on a narrow road, and I was holding my fists tightly with   4  .
     At one point along an open highway, I   5   a crossroad with a traffic light. I was alone on the road by now,
but as I   6   the light, it turned red and I braked to a stop. I looked left, right and behind me. Nothing. No cars,
no suggestion of headlights, but there I sat, waiting for the light to   7  , the only human being for at least a mile
in any   8  .
     I started   9   why I refused to run the light. I was not afraid of being  10 , because there was obviously no
policeman around, and there certainty would have been no  11  in going through it.
     Much later that night, after I  12  a group of my friends in Lewisburg and climbed into bed near midnight,
the question of why I'd stopped for that light  13   me. I think I stopped because it's part of a contract (合同)
we all have with each other. It's not only the  14 , but it's an arrangement we have, and we trust each other to
  15  it: we don't go through red lights. Like most of us, I'm more likely to be  16  from doing something bad
by the social convention that  17  it than by any law against it.
     It's amazing that we ever  18  each other to do the right thing, isn't it? And we do, too. Trust is our  19  
preference.
     I was so  20  of myself for stopping for the red light that night.
( )1. A. flight       
( )2. A.thinking      
( )3. A.stopped       
( )4. A.horror        
( )5. A.ran off       
( )6. A.passed        
( )7. A.stop          
( )8. A.way           
( )9. A. wondering    
( )10. A.abused       
( )11. A.danger       
( )12. A.met with     
( )13. A.turned out to
( )14. A.virtue       
( )15. A.honor        
( )16. A.stopped      
( )17. A.speaks of    
( )18. A.suspect      
( )19. A.only         
( )20. A.sorry        
B. distance    
B. driving     
B. changed     
B. strength    
B. came to     
B. watched     
B. change      
B. side        
B. suspecting  
B. fined       
B. sign       
B. got over    
B. came back to   
B. suggestion  
B. solve       
B. protected   
B. stands by   
B. trust       
B. first       
B. doubtful    
C. road        
C. complaining 
C. stuck       
C. understanding
C. passed by   
C. approached  
C. turn        
C. city        
C. struggling  
C. injured     
C. time        
C. got rid of  
C. referred to 
C. law         
C. break       
C. rejected    
C. takes in   
C. teach       
C. lucky       
C. sure        
D. length         
D. running        
D. lost           
D. impatience     
D. left behind    
D. found          
D. die            
D. direction      
D. regretting     
D. killed         
D. record         
D. called back    
D. occurred to    
D. order          
D. judge          
D. frightened     
D. disapproves of        
D. care           
D. living         
D. proud          
查看答案
题型:问答题

请编制程序,其功能为:将内存中存放的连续的30个二进制数(0到100之间),按数值大小分别进行统计,0~59为D,60~74为C,75~84为B,85~100为A,统计出A、B、C、 D的个数,并按A、B、C、D次序存放在内存中。
例如:内存中原始数据为:21H,3CH,4DH,31H,4FH,51H,56H
统计结果:1,3,1,2
部分程序已经给出,其中原始数据由LOAD过程从文件INPUT1.DAT中读入从SOURCE开始的内存单元,转换结果(要求从RESULT 开始读入)由SAVE过程保存到OUTPUT1.DAT文件中。请在BEGIN和END之间补充使其完整,完成要求的功能。或删除BEGIN和END之间原有的代码并自行编程来完成要求的功能。
对程序必须进行汇编,并与IO.OBJ链接产生PROG1.EXE执行文件,最终产生运行结果。
部分程序如下:
;PROG1.ASM
EXTRN LOAD:FAR, SAVE:FAR
N EQU 30
DSEG SEGMENT
SOURCE DB N DUP ()
RESULT DB N DUP (0)
NAME0 DB ’INPUT1. DAT’,0
NAME1 DB ’OUTPUT1. DAT’,0
DSEG ENDS
SSEG SEGMENT STACK
DB 128 DUP ()
SSEG ENDS
CSEG SEGMENT
ASSUME CS:CSEG, DS:DSEG; SS:SSEG
START PROC FAR
PUSH DS
XOR AX,AX
PUSH AX
MOV AX, DSEG
MOV DS,AX
MOV ES, AX
LEA DX, SOURCE
LEA SI,NAME0
MOV CX,N
CALL LOAD
; *** BEGIN ***
MOV CX,N
LEA SI,SOURCE
CONT: MOV AL,[SI]
_____________
JB LB
INC RESULT
JMP OK
LB: CMP AL, 75
JB LC
INC ______
JMP OK
LC: CMP AL,60
JB LD
____________
JMP OK
LD: ____________
OK: INC SI
LOOP CONT
; *** END ***
LEA DX,RESULT
LEA SI,NAME1
MOV CX,4
CALL SAVE
RET
START ENDP
CSEG ENDS
END START

查看答案
微信公众账号搜索答案