单选题______AsimilarBlongCdifferentDshort

单选题
______
A

similar

B

long

C

different

D

short


参考解析

解析:
attention span表示注意力的持续时间,形容时间的长短用long 或者short,而根据下文提到要组织一系列可以让青少年随时转移注意力的活动,说明青少年本身的注意力持续时间很短,所以用short。

相关考题:

The word "relative" in paragraph 3 most probably means______.A. similarB. relatedC. differentD. independent

George asked the question because he wanted to show that he was ______.A. interestingB. not nervousC. differentD. eager to learn

I am afraid there is not much ____ in their points of viwe A、differenceB、differentlyC、differentD、differ

There has been a tradition in English, particularly in written English, that should try to use_______words to refer to the same thing. A、similarB、independentC、differentD、indifferent

Anyone who has spent time with children is aware of the difference in the way boys and girls respond to ____ situation. A.similarB.alikeC.sameD.likely

Iam_______ofmoneyatthemoment.Couldyoulendmesome? A.shortB.longC.needD.wanting

His face is ______ to me, but I can't remember where I've seen her.A、similarB、familiarC、friendlyD、alike

Tea culture _________ between China and the western countries. A.differB.differsC.differentD.difference

The operation of paralleling two alternators requires the voltages to be _____ and also in phaseA.zeroB.eliminatedC.differentD.equal

下列数据类型转换,必须进行强制类型转换的是( )。A.byte→intB.short→longC.float→doubleD.int→char

There are various ways of solving the problem.A:varied B:changedC:different D:diverse

Her father was a quiet man with graceful manners.A:similarB:politeC:usualD:bad

There are several____between our new photocopier and our old one: these include an advanced colour facility and a multitask option.A.similarB.similarlyC.similar toD.similarities

The walls are made of hollow concrete blocks.A:bigB:longC:emptyD:new

His quest for eternal youth failed in the end.A: everlastingB: longC: monotonousD: lengthy

The two girls look alike.A:similar B:beautifulC:pretty D:attractive

To produce one pound of honey,a colony of bees must fly a distance_______to twice around the world.A.similarB.equalC.comparedD.corresponding

运算符适用于数据类型()A、intB、longC、doubleD、boolean

Come()with me.A、toB、longC、upD、along

We need different kinds of paint for ()areas.A、everyB、eachC、differentD、same

What is the meaning of “short hauls”? ()A、Near wayB、The distance is not longC、Direct lineD、Short road

算符适用于数据类型()A、intB、longC、doubleD、boolean

public class Yikes {  public static void go(Long n) {System.out.println(”Long “);}  public static void go(Short n) {System.out.println(”Short “);}  public static void go(int n) {System.out.println(”int “);}  public static void main(String [] args) {  short y= 6;  long z= 7;  go(y);  go(z);  }  }  What is the result?() A、 int LongB、 Short LongC、 Compilation fails.D、 An exception is thrown at runtime.

public class Wow {  public static void go(short n) {System.out.println(”short”); }  public static void go(Short n) {System.out.println(”SHORT”);}  public static void go(Long n) {System.out.println(” LONG”); }  public static void main(String [] args) {  Short y= 6;  int z=7;  go(y);  go(z);  }  }  What is the result?() A、 short LONGB、 SHORT LONGC、 Compilation fails.D、 An exception is thrown at runtime.

单选题Given: What is the result?()A  An exception is thrown at runtime.B  int LongC  Compilation fails.D  Short Long

单选题public class Yikes {  public static void go(Long n) {System.out.println(”Long “);}  public static void go(Short n) {System.out.println(”Short “);}  public static void go(int n) {System.out.println(”int “);}  public static void main(String [] args) {  short y= 6;  long z= 7;  go(y);  go(z);  }  }  What is the result?()A int LongB Short LongC Compilation fails.D An exception is thrown at runtime.

单选题Java中整型包括()。Aint,byte,charBint,short,long,byte,charCint,short,long,charDint,short,long,byte

单选题public class Wow {  public static void go(short n) {System.out.println(”short”); }  public static void go(Short n) {System.out.println(”SHORT”);}  public static void go(Long n) {System.out.println(” LONG”); }  public static void main(String [] args) {  Short y= 6;  int z=7;  go(y);  go(z);  }  }  What is the result?()A short LONGB SHORT LONGC Compilation fails.D An exception is thrown at runtime.