【填空题】
35.国内外水底隧道,特别是河底段,多采用___和___施工。
查看试卷,进入试卷练习
微信扫一扫,开始刷题

答案
沉管法|盾构法
解析
暂无解析
相关试题
【单选题】
The word "wag" (Line 1, Para.1) most probably means _________.
A. move
B. shake
C. bite
D. play
【单选题】
The video cameras were used to catch the dogs' responses because ___________.
A. the dogs were put in the wooden boxes
and tested one at a time
B. it was easier to catch the dogs’s response changes in the tail wagging
C. they enabled the dogs’owners to know
about their dogs’; habit
D. the dogs wagged their tails in different
directions when they were in different
moods
【单选题】
When there are no stimuli, a dog will ___________.___
A. wag to the right
B. no wag at all
C. wag to the left
D. wag to the left and then wag to the right
【单选题】
The purpose of doing the experiment is _________.___
A. to train dogs for their owners
B. to help dogs find companion
C. to help people choose their pet dogs
D. to help people judge the mood of dogs
【单选题】
The underlined word "they" in the last sentence refers to __________.___
A. the trainers
B. the systems
C. the researchers
D. the dogs
【单选题】
The new law passed in Rome will ________.___
A. help improve fishing environment
B. stop people from catching goldfish
C. guarantee better conditions for goldfish
D. discourage keeping goldfish at home
【单选题】
People in Rome believe that the civilization of a city can be judged by _________.___
A. awareness of animal protection
B. exchanges with other cities
C. protection of ancient ruins
D. recognition of animal lovers
【单选题】
The underlined word "compassion" in Para 2 is the closest in meaning to __________.___
A. support
B. pity
C. help
D. love
【单选题】
People may break the law in Turin if they ________.___
A. keep their dogs or cats in cars
B. shut their dogs home all day long
C. raise their cats near ancient ruins
D. feed homeless animals in car parks
【单选题】
We can infer from the passage that _________.___
A. the owners can leave their dogs in hot cars
B. the cat only lives in modern life
C. the new law can prevent cruelty to animals
D. the new law gives recognition to the
people who feed homeless cat
【单选题】
If a person finds getting up early a problem, most probably ________.___
A. he is a lazy person
B. he refuses to follow his own energy cycle
C. he is not sure when his energy is low
D. he is at his peak in the afternoon or evening
【单选题】
Which of the following may lead to family quarrels according to the passage?___
A. Unawareness of energy cycles.
B. Familiar monologues.
C. A change in a family member's energy cycle.
D. Attempts to control the energy cycle of other family members.
【单选题】
If one wants to work efficiently at his low point in the morning, he should __________.___
A. change his energy cycle
B. overcome his laziness
C. get up earlier than usual
D. go to bed earlier
【单选题】
You are advised to rise with a yawn and stretch because it will __________.___
A. help to keep your energy for the day's work
B. help you to control your temper early in the day
C. enable you to concentrate on your routine work
D. keep your energy cycle under control all day
【单选题】
Which of the following statements is NOT true?___
A. Getting off to work with a minimum effort helps save one's energy.
B. Dr. Kletman explains why people reach their peaks at different hours of day.
C. Habit helps a person adapt to his own energy cycle.
D. Children have energy cycles, too.
【单选题】
An effective way to prevent the burnout of young athletes is __________.___
A. to increase their sense of success
B. to make sports less competitive
C. to reduce their mental stress
D. to make sports more challenging
推荐试题
【单选题】
下面哪种说法不正确___
A. Android应用的gen目录下的R.java被删除后还能自动生成
B. res目录是一个特殊目录,包含了应用程序的全部资源,命名规则可以支持数字(0-9)下横线(_),大小写字母(a-z , A-Z)
C. AndroidManifest.xml文件是每个Android项目必须有的,是项目应用的全局描述。其中指定程序的包名(package=”…”)+指定android应用的某个组件的名字(android:name=”…”)组成了该组件类的完整路径
D. assets和res目录都能存放资源文件,但是与res不同的是assets支持任意深度的子目录,在它里面的文件不会在R.java里生成任何资源ID
【单选题】
☆54、关于Android 事件机制与事件监听,下列说法不正确的有 ___
A. View类里的event listener是一个带有回调方法的接口,当UI里的组建是被用户触发时,这些方法会被系统框架所调用
B. 来自View.OnClickListener ,当点击这个Item(在触摸模式),或者当光标聚集在这个Item上时按下“确认”键,导航键,或者轨迹球, 它会被调用
C. 来自View.OnTouchListener,在这个Item的范围内触摸的时候,它会被调用ii v vi vii
D. 来自View.OnCreateContextMenuListener,当上下文菜单被建立时,只需短按一下,它会被调用
【单选题】
setOnTouchEvent 设置返回值为true 和 false有何区别?___
A. 没有区别,都能对事件进行监听
B. 设置为true时 只能在移动时获得一次监听事件,false则可以多次
C. 返回true表示这个消息已经被处理结束,后续的handler不再接收到这个消息
D. 设置为false是 ,在处理一次监听事件后,系统将抛弃该次事件
【单选题】
这段话是程序报错在LogCat中产生的记录,从中可以分析问题的原因可能在哪里?___
A. 程序执行CanvasActivitys的一个代码段时一个View有引用无对象
B. CanvasActivitys类没有在AndroidManifest中正确申明
C. 最小SDK支持版本号比运行这个程序的设备版本号还高
D. CanvasActivitys是一个Activity,但没有重写它的onCreate方法
【单选题】
下列说法错误的是___
A. Intent起着一个媒体中介的作用,专门提供组件互相调用的相关信息,实现调用者与被调用者之间的解耦
B. Intent 可以传递 View对象
C. 对于直接Intent,Android不需要去做解析,因为目标组件已经很明确,Android需要解析的是那些间接Intent,通过解析,将 Intent映射给可以处理此Intent的Activity、IntentReceiver或Service
D. 通过Intent可以删除程序
【单选题】
下列关于Service的描述,正确的是___
A. Servie主要负责一些耗时比较长的操作,这说明Service会运行在独立的子线程中
B. 每次调用Context类中的StartService()方法后都会新建一个Service实例
C. 每次启动一个服务时候都会先后调用onCreate()和onStart()方法
D. 当调用了ConText类中的StopService()方法后,Serviece中的onDestroy()方法会自动回调
【多选题】
android 通过 startService 的方式开启服务, 关于 service生命周期的 onCreate()和 onStart() 说法正确的是 ___
A. 当第一次启动的时候先后调用 onCreate()和 onStart()方法
B. 当第一次启动的时候只会调用 onCreate()方法
C. 如果 service 已经启动,将先后调用 onCreate()和 onStart()方法
D. 如果 service 已经启动,只会执行 onStart()方法,不在执行 onCreate()方法
【多选题】
下列属于补间动画相关类的是___
A. TranslateAnimation
B. FrameAnimation
C. RotateAnimation
D. AlphaAnimation
【多选题】
在 android 中使用 SQLiteOpenHelper 这个辅助类时,哪些操作可能生成一个数据库。___
A. getWriteableDatabase()
B. getReadableDatabase()
C. getDatabase()
D. getAbleDatabase()
【多选题】
下列对SharePreferences存、取文件的说法中正确的是:___
A. 属于移动存储解决方案
B. sharePreferences处理的就是key-value对
C. 读取xml文件的路径是/sdcard/shared_prefx
D. 信息的保存格式是xml
【多选题】
关于Handler的说话正确的是___
A. 它实现不同线程间通信的一种机制
B. 它避免了新线程操作UI组件
C. 它采用栈的方式来组织任务的
D. 它可以属于一个新的线程
【多选题】
关于广播的作用,正确的说法是___
A. 它是用接收系统发布的一些消息的
B. 它可以帮助service修改用户界面
C. 它可以启动一个Activity
D. 它可以启动一个Service
【多选题】
关于主题的说法,正确的是___
A. 它是属性集合
B. 它可以在程序中来设置
C. 它通常用于一个Activity或所有Activity上
D. 它可以用于单个TextView上
【多选题】
关于Sqlite数据库,正确的说法___
A. SqliteOpenHelper类主要是用来创建数据库和更新数据库
B. SqliteDatabase类是用来操作数据库的
C. 在每次调用SqliteDatabase的getWritableDatabase()方法时,会执行SqliteOpenHelper的onCreate方法。
D. 当数据库版本发生变化时,可以自动更新数据库结构