(Everybody) (has arrived.) (It’s) time we (shall start).( )
A:Everybody B:has arrived C:It’s D:shall start
You should (check) the air in the (tires) (as) you (start on) a long automobile trip.
A:check B:tires C:as D:start
"I suspect that your business will start that way too." in the last paragraph means ______. ( )
A:I doubt you will start a business in the same way B:I don't believe your business will succeed if you start that way C:I think it is likely you start a business that way D:I have no idea if you will start a business that way
" When is the concert supposed to start"
"It ______ now.
A:is about starting B:was about to start C:is about to start D:was about starting
START
(A) MOV AH, 0 ; 设初值
(B) ADD BX,AX ; 第一次求和
(C) AL
(D) INC DI ; 移动地址让上个数的所得结果和下个数相加
(E) BX ; 保存数据[解析] 此题是一个求和的问题,NEXT中用循环指令求和。先设一个初值为0,让它和内存中存储的第一个数据相加,然后让所得结果和下一个数相加,直到循环结束为止。
START
(A) MOV AH, 0 ; 设初值
(B) SI ; 向下移动地址,对下一个数据进行计算
(C) J ; 判断数据是否超出该行的范围
(D) B ; 保存所求的数据,下移两个单位是因为数据为字的形式
(E) LOOPA[解析] 程序的功能是求出每行所有数据的和,该功能在LOP2中完成。首先从矩阵第一行第一列的数据开始算起,和该行的下一列数据求和,直到判断下个数据的计算个数超过 2时,说明该行结束。然后保存该行计算完的和,注意,保存的数据应该是字的形式。
在匹配器(Matcher)类中,用于寻找下一个模式匹配串的方法是
A:static boolean matches() B:boolean matcher.find() C:mtmatcher.start() D:int matcher.end()