Not only I but also Douglas and Miranda ____ fond of watching television.A am B is C are D be

题目

Not only I but also Douglas and Miranda ____ fond of watching television.

A am B is C are D be


相似考题
更多“Not only I but also Douglas and Miranda ____ fond of watching television.A am B is C ar ”相关问题
  • 第1题:

    A:I'm keen on football.

    B: So ( )I.

    A. have

    B. do

    C. am


    答案:B

  • 第2题:

    The following information is available for a manufacturing company which produces multiple products:

    (i) The product mix ratio

    (ii) Contribution to sales ratio for each product

    (iii) General fixed costs

    (iv) Method of apportioning general fixed costs

    Which of the above are required in order to calculate the break-even sales revenue for the company?

    A.All of the above

    B.(i), (ii) and (iii) only

    C.(i), (iii) and (iv) only

    D.(ii) and (iii) only


    正确答案:B

    The method of apportioning general fixed costs is not required to calculate the break-even sales revenue.

  • 第3题:

    试图编译和运行以下代码的结果是什么? abstract class MineBase { abstract void amethod(); static int i; } public class Mine extends MineBase{ public static void main(String argv[]){ int[] ar = new int[5]; for(i = 0;i < ar.length;i++) System.out.println(ar[i]); } }

    A.编译错误,指示"ar 未初始化就使用"

    B.编译错误,指示"Mine 必须定义为抽象类"

    C.运行错误,i超出数组下标范围

    D.输出5个0


    编译通过,打印出 int

  • 第4题:

    运行下列程序的结果是 ( ) abstract class MineBase { abstract void amethod(); static int i; } public class Mine extends MineBase { public static void main(String argv[]){ int[]ar=new int[5]; for(i=0;i<ar.length;i++) System.out.println(ar[i]);

    A.打印5个0

    B.编译出错,数组ar[]必须初始化

    C.编译出错,Mine应声明为abstract

    D.出现IndexOutOfBoundes的例外


    正确答案:D

  • 第5题:

    Under certain circumstances, profits made on transactions between members of a group need to be eliminated from the consolidated financial statements under IFRS.

    Which of the following statements about intra-group profits in consolidated financial statements is/are correct?

    (i) The profit made by a parent on the sale of goods to a subsidiary is only realised when the subsidiary sells the goods to a third party

    (ii) Eliminating intra-group unrealised profits never affects non-controlling interests

    (iii) The profit element of goods supplied by the parent to an associate and held in year-end inventory must be eliminated in full

    A.(i) only

    B.(i) and (ii)

    C.(ii) and (iii)

    D.(iii) only


    正确答案:A

    (i) is the only correct elimination required by IFRS.

  • 第6题:

    运行下面程序的结果是什么? abstract class MineBase { abstract void amethod(); static int i; } public class Mine extends MineBase { public static void main(String[] a) { int[] ar = new int[5]; for (int i=0; i<ar.length; i++) { System.out.println(ar[i]); } } }

    A.打印5个0

    B.编译错误,数组ar[]必须初始化

    C.编译错误,Mine应声明为抽象类

    D.出现IndexOutOfBoundsException异常


    D