(A) think
(B) am
(C) mean
(D) talk
正确答案:C
解答参考:C。mean:意指,意谓,mean business:固定短语,当真。【译文】不要以为我是在开玩笑,我可是当真的。
第1题:
I’d rather you ________ make any comment on the issue for the time being.
A) don’t B) wouldn’t C) didn’t D) shouldn’t
选C
would rather that……"宁愿……",that从句中用过去时表示现在或将来要做的事。
第2题:
第3题:
下列程序段的时间复杂度是()。 for(i=0;i<n;i++) for(j=0;j<m;j++) for(k=0;k<t;k++) c[i][j]=c[i][j]+a[i][k]*b[k][j];
A.O(m+n+t)
B.O(m*n*t)
C.O(m+n*t)
D.O(m*t+n)
第4题:
-- Ann is in hospital.
-- Oh, really? I __ know. I __ go and visit her.
A. didn’t; am going to B. don’t; would
C. don’t; will D. didn't; will
第5题:
下列程序段的时间复杂度是()。 for(i=0; i<m; i++) for(j=0; j<t; j++) c[i][j]=0; for(i=0; i<m; i++) for(j=0; j<t; j++) for(k=0; k<n; k++) c[i][j]=c[i][j]+a[i][k]*b[k][j];
A.O(m+n+t)
B.O(m+n*t)
C.O(m*t+n)
D.O(m*n*t)