The judges have decided who the prize winners will be, and will ____ the names tomorrow.A、publishB、announceC、claimD、declare

题目
The judges have decided who the prize winners will be, and will ____ the names tomorrow.

A、publish

B、announce

C、claim

D、declare


相似考题
更多“The judges have decided who the prize winners will be, and will ____ the names tomorrow. ”相关问题
  • 第1题:

    Iwouldratheryou(come)tomorrow.


    正确答案:
    came

  • 第2题:

    Their dispute can hardly be peacefully settled.

    A:destroyed
    B:removed
    C:solved
    D:decided

    答案:C
    解析:
    他们的争论几乎不可能和平解决。destroy“破坏”。remove“去除”,如:He removed the dust from the desk.他把书桌上的灰擦掉。solve“解决”;decide“决定”。

  • 第3题:

    It is reported in today′s newspaper thatwhoever helps to catch the robber will be offered a(n) ___________ of $10,000.

    A.award
    B.reward
    C.allowance
    D.prize

    答案:B
    解析:
    考查名词辨析。award“奖品,奖金”,reward“奖励,回报,悬赏金”,allowance“津贴,补贴”, prize“奖品,奖赏,奖金”。句意为“今天的报纸报道,谁能抓住盗贼,将被奖赏一万美金”。根据语境可知B项最符合句意。

  • 第4题:

    She determined to leave the school at once.

    A:tried
    B:attempted
    C:agreed
    D:decided

    答案:D
    解析:
    determine“下定决心” , decide“决定”,例如:He decided not to do that.他决定不干那件事。try“设法”,例如:We are all trying to improve our English.我们正设法提高我们的英语水平。attempt“试图”,例如:We attempted to quit smoking , but failed.我们试图戒烟,但没有成功。agree“同意”,例如:They might not agree with her opinion.他们可能不同意她的意见。

  • 第5题:

    He has made up his mind to give up smoking.

    A:tried
    B:attempted
    C:agreed
    D:decided

    答案:D
    解析:
    make up one's mind:打定主意,决心。decide:决定。例如:Susan has made up her mind that , come what may , she will stay with John.苏珊决心已下,不管发生什么,她都将跟约翰在一起。He decided not to do that.他决定不干那件事。try:设法,例如:We are all trying to improve our English.我们都在设法提高我们的英语水平。attempt:试图,例如:We attempted to quit smoking , but failed.我们试图戒烟,但没有成功。agree:同意,例如:They might not agree with her opinion.他们可能不同意她的意见。故答案为D。

  • 第6题:

    多选题:下面哪个是错误的用python实现存储n个人的姓名?

    A.names1=n*[0] for i in range(n): names1[i]=input('输入{}个人的姓名:'.format(i+1))

    B.names2=[] for i in range(n): names.append(input('输入{}个人的姓名:'.format(i+1)))

    C.names3=[] for i in range(n): name=input('输入{}个人的姓名:'.format(i+1)) names3+=name

    D.names4=[] for i in range(n): names4[i]=input('输入{}个人的姓名:'.format(i+1))

    E.names5=[] for i in range(n): name=input('输入{}个人的姓名:'.format(i+1)) names5+=[name]


    Python 中的变量赋值需要数据类型声明