单项选择题

方框 5 中应填入任务____;Box 5 should be filled with____;
A、在TM库中检索待翻译的句子 Finish editing, adding the updatedsentences to the TM database;
B、完成编辑,添加更新句对到TM库 Merging the split segments;
C、合并分割句段 Deciding how to use the matching translation;
D、决定将如何使用匹配的译文 Outputting those previous matching translations;
E、输出既往的匹配译文 Retrieving sentences to be translated in the TM database;
F、对齐双语对照的文本并制作成翻译记忆库A. Aligning bilingual text and making them into a translation memory;
G、等待译员编辑 Waiting for the translator to edit;
H、匹配结果输出Outputting the match result;

相关考题

以下是两个源程序文件: /* m1.c */                                 ...


单项选择题以下是两个源程序文件:
/* m1.c */                                                        /* m2.c */
         int x=100;                                                        float x;
         int p1(viod);                                                    static main=1;
int main()                                                        int p1()
        {                                                                      {
                x= p1();                                                           int p1=main + (int) x;
                return x;                                                          return p1;
}                                                                      }
对于上述两个源程序文件链接时的符号解析,错误的是(   )。

A.虽然x、main和p1都出现了多次定义,但不会发生链接错误
B.m1中对x的两处引用都与m1中对x的定义绑定
C.m2中的变量p1与函数p1被分配在不同存储区
D.m2中对x的引用与m2中对x的定义绑定