【单选题】【消耗次数:1】
Without entering the body and______damage, the CT is far superior to the X-ray or exploratory surgery.
cause
causing
caused
to be caused
参考答案:
复制
纠错
相关题目
【单选题】 Without entering the body and______damage, the CT is far superior to the X-ray or exploratory surgery.
①  cause
②  causing
③  caused
④  to be caused
【单选题】 The fire was finally brought under control, but not _______extensive damage had been caused.
①  after
②  before
③  since
④  as
【单选题】 24. The earthquake caused ______ to the district.
①  damage
②  a damage
③  damages
④  . the damage
【单选题】 It was the driver’s ____ that caused him to step on the gas instead of the brake after his car went over the curb.
①  fraud
②  alarm
③  terror
④  panic
【判断题】 What caused the fire is still a mystery. 此句是从属分句中的名词性分句。
①  正确
②  错误
【单选题】 He is always __________ (cause) trouble.
①  caused
②  cause
③  causing
【单选题】 CT与X线成像比较,以下哪一项是错误的
①  CT与X线成像都需要X线管
②  X线图像所显示的是二维重叠图像
③  CT所显示的是断面解剖图像
④  CT的空间分辨力高于X线图像
⑤  CT的密度分辨力高于X线图像
【单选题】 与常规X线检查相比, CT的突出优点是
①  曝光时间短
②  空间分辨率高
③  密度分辨率高
④  病变定性明确
⑤  适于全身各部位检查
【单选题】 Dont () damage on any person.
①  inflight
②  inflict
③  include
④  incline
【判断题】 CT图像的空间分辨力较常规X线图像高
①  正确
②  错误
随机题目
【单选题】 设有下列数组定义语句: int a[] = {1, 2, 3}; 则对此语句的叙述错误的是( )
①  A.定义了一个名为 a 的一维数组
②  a 数组有 3 个元素
③  a 数组元素的下标为 1~3
④  数组中每个元素的类型都是整数
【单选题】 在类中若要处理 ActionEvent 事件,则该类需要实现的接口是( )。
①  Runnable
②  ActionListener
③  Serializable
④  Event
【单选题】 方法resume()负责恢复哪些线程的执行( )
①  通过调用stop()方法而停止的线程。
②  通过调用sleep()方法而停止的线程。
③  通过调用wait()方法而停止的线程。
④  通过调用suspend()方法而停止的线程。
【单选题】 以下对自定义异常描述正确的是( )
①  自定义异常必须继承Exception
②  自定义异常可以继承自Error
③  自定义异常可以更加明确定位异常出错的位置和给出详细出错信息
④  程序中已经提供了丰富的异常类,使用自定义异常没有意义
【单选题】 自定义异常时,可以通过对下列哪一项进行继承?( )
①  Error 类
②  Applet 类
③  Exception 类及其子类
④  AssertionError 类
【单选题】 下列说法中,错误的一项是( )。
①  线程就是程序
②  线程是一个程序的单个执行流
③  多线程是指一个程序的多个执行流
④  多线程用于实现并发
【单选题】 运行下面程序时,会产生什么异常?( ) public class X7_1_4 { public static void main(String[] args) { int x = 0; int y = 5/x; int[] z = { 1,2,3,4 } ; int p = z[4]; } }
①  ArithmeticException
②  NumberFormatException
③  ArrayIndexOutOfBoundsException
④  IOException
【单选题】 下列说法中错误的一项是( )。
①  MouseAdapter 是鼠标运动适配器
②  WindowAdapter 是窗口适配器
③  ContainerAdapter 是容器适配器
④  KeyAdapter 是键盘适配器
【单选题】 已知有定义:String s=I love,下面哪个表达式正确?( )
①  s += you;
②  char c = s[1];
③  int len = s.length;
④  String s = s.toLowerCase();
【单选题】 下列代码中给出正确的在方法体内抛出异常的是( )
①  new throw Exception( );
②  throw new Exception( );
③  throws IOException();
④  throws IOException;