【单选题】【消耗次数:1】
What meaning is referred to if we say the meaning of “dog” is friendship and loyalty?
denotative meaning
connotative meaning
literal meaning
labeled meaning.
参考答案:
复制
纠错
相关题目
【单选题】 What meaning is referred to if we say the meaning of “dog” is an animal with four legs and a tail, often kept as a pet or trained for work?
①  denotative meaning
②  connotative meaning
③  extended meaning
④  inspired meaning.
【单选题】 ____, the more you are aware of content and meaning.
①  The more words you are familiar to
②  The more words you are familiar with
③  You are familiar to more words
④  You are familiar with more words
【单选题】 Its a such cold winter day! Here cold takes the []meaning.
①  denotative
②  connotative
【单选题】 The thunderbolt frightened the sleeping baby. Here thunderbolt takes [] meaning.
①  denotative
②  connotative
【单选题】 Kirsten is the mother of her students. Here mother takes the [] meaning.
①  denotative
②  connotative
【单选题】 The writer rushed his book into print. Here rush takes the [] meaning.
①  denotative
②  connotative
【单选题】 He was the Emperor of the Berlin Olympics in 1936. here emperor takes the [] meaning.
①  denotative
②  connotative
【单选题】 They thought I was a smuggler. What is the meaning of the word smuggler?( )
①  小偷
②  咨询师
③  走私犯
④  警察
【单选题】 Housekeeping, may I come in? what is the meaning of the word “housekeeping”?
①  夜床服务
②  洗衣服务
③  送餐服务
④  客房服务
【单选题】 The chinese meaning of the word geography is ( )
①  生物
②  地理
③  物理
④  哲学
随机题目
【单选题】 执行以下语句后b的值为( )。 Int a=5,b=6,w=1,x=2,y=3,z=4; (a=wx)(b=y
①  6
②  0
③  1
④  4
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=4,b=3,c=5,t=0; if(aa=b;b=t; if(aa=c;c=t; printf(%d,%d,%d\n,a,b,c); }
①  5,1,3
②  4,5,6
③  5,0,3
④  3,4,7
【单选题】 下述程序的运行结果( )。 #includevoid main() { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); }
①  a=2,b=1
②  a=1,b=2
③  a=0,b=1
④  a=1,b=0
【单选题】 下述程序的运行结果( )。 #includevoid main() { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); } case 1:a++; case 2:a++;b++; } printf(a=%d,b=%d\n,a,b); }
①  a=1,b=1
②  a=2 ,b=1
③  a=2,b=2
④  a=3,b=3
【单选题】 请阅读以下程序: main() {int a=5,b=0,c=0; if(a=b+c) printf(***\n else printf($$$\n
①  以上程序:有语法错误不能通过编译
②  可以通过编译但不能通过连接
③  输出***
④  输出$$$
【单选题】 以下不正确的if语句形式是( )。
①  if (xx!=y)
②  if(x==y)x+=y
③  if(x!=y)scanf(%d,x)else scanf(%d,
④  if(XY) {X++;Y++};
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=1,b=2,c=3; if(c=a)printf(%d\n else printf(%d\n }
①  1
②  3
③  5
④  6
【单选题】 下述程序的运行结果( )。 #includevoid main() { int a=5,b=4,c=3,d=2; if(ac)printf(%d\n else if((c-1=d)==1)printf(%d\n,d+1); else printf(%d\n,d+2); }
①  0
②  1
③  2
④  3
【单选题】 以下不正确的语句为( )。
①  if(x
②  if(x=y)(x!=0)x+=y;
③  if(x!=y)scanf(%d,else scanf(%d,y)
④  if(xy){x++;y++;}
【单选题】 以下程序的运行结果是( )。 Main() {int k=4,a=3,b=2,c=; printf(\n %d\n,ka?k:cb?c:a); }
①  4
②  3
③  2
④  1