题目
(10分)在linggle中,如果想知道discuss 和 the issue之间有没有about,应该在linggle的搜索框中输入(),然后回车。A. discuss ?about the issueB. discuss /about the issueC. discuss *about the issueD. discuss #about the issue
(10分)在linggle中,如果想知道discuss 和 the issue之间有没有about,应该在linggle的搜索框中输入(),然后回车。
A. discuss ?about the issue
B. discuss /about the issue
C. discuss *about the issue
D. discuss #about the issue
题目解答
答案
A. discuss ?about the issue
解析
本题考查Linggle语料查询工具的符号用法,核心在于理解不同符号在Linggle中的功能。关键点在于:
?
表示一个未知的单个单词,用于验证特定位置是否存在某个词;- *`` 表示任意数量的单词**(包括零个),用于匹配连续内容;
/
用于分割可能的多个结果;#
用于匹配数字。
题目要求验证discuss
和the issue
之间是否包含about
,因此需用?
锁定位置,直接测试是否存在该词。
选项分析
-
A.
discuss ?about the issue
使用?
表示在discuss
和the issue
之间精确匹配一个单词(即about
)。若Linggle返回结果,则说明存在about
。 -
B.
discuss /about the issue
/
用于分割可能的多个结果,无法验证特定位置是否存在about
,不符合题意。 -
*C. `discuss about the issue
**
*表示匹配任意数量的单词,无法限定必须出现
about`,无法精准验证。 -
D.
discuss #about the issue
#
用于匹配数字,与本题无关。
结论:选项A通过?
直接验证about
是否存在,符合题意。