Rockhill Corporation operates a women's clothing boutique. Taxable income for the current year is $60,000. What is Rockhill's income tax liability?()A、$0B、$6,000C、$9,000D、$12,600E、$15,000

题目
Rockhill Corporation operates a women's clothing boutique. Taxable income for the current year is $60,000. What is Rockhill's income tax liability?()

A、$0

B、$6,000

C、$9,000

D、$12,600

E、$15,000


相似考题
更多“Rockhill Corporation operates a women's clothing boutique. Taxable income for the current year is $60,000. What is Rockhill's income tax liability?() ”相关问题
  • 第1题:

    对下面的个人所得税程序中满足语句覆盖测试用例的是()

    If(income800)taxrate=0;

    elseif(income=1500)taxrate=0.05;

    elseif(income2000)taxrate=0.08;

    elsetaxrate=0.1;

    A、income=(800,1500,2000,2001

    B、"income=(800,801,1999,2000)"

    C、"income=(799,1499,2000,2001)"

    D、"income=(799,1500,1999,2000)"


    正确答案:D

  • 第2题:

    Peter stays at home without a job,but he gets good__.

    A.pay
    B.salary
    C.wage
    D.income

    答案:D
    解析:
    pay表示“支付”;salary和wage都指“(通过上班而得到的)薪水”,income指“收入”。

  • 第3题:

    对下面的计算个人所得税程序中,满足判定覆盖的测试用例是()。 if (income<800) taxrate=0; else if (income<=1500) taxrate=0.05; else if (income<2000) taxrate=0.08; else taxrate=0.1;

    A.income=(799, 1500, 1999, 2000)

    B.income=(799, 1501, 2000, 2001)

    C.income=(800, 1500, 2000, 2001)

    D.income=(800, 1499, 2000, 2001)


    A

  • 第4题:

    下列程序的输出结果为 main() { union u {char *name; int age; int income;}s s.name="WANGLIONG"; s.age=28; s.income=1000; printf("%d\n",s.age); }

    A.28

    B.1000

    C.0

    D.不确定


    正确答案:B
    解析: 本题对共用体的使用进行了考查。由于共用体所有成员共同占据一段存储空间,所以对成员变量的赋值,后面的赋值会覆盖掉前面的赋值,因为s.income=1000;是最后一次成员变量赋值,变量age与变量income共同占据一段存储空间,所以age的值也为1000。

  • 第5题:

    Education has a value of consumption and its demand will depend on its own price,prices of other goods,and______income.

    A.domestic
    B.home
    C.house
    D.household

    答案:D
    解析:
    本题考查形容词的词义辨析。题目意为“教育具有消费价值,其需求将取决于其自身的价格、其他商品的价格和家庭收入。”A选项“国内的”,B选项“家,住宅”,C选项“房子,房屋”, D选项“家庭的”。household income固定搭配,意为“家庭收入”。
      

  • 第6题:

    【单选题】下面的个人所得税程序中,满足语句覆盖测试用例的输入数据是() if (income < 800) taxRate= 0; else if (income <= 1500) taxRate = 0.05 ; else if (income < 2000) taxRate = 0.08 ; else taxRate= 0.1 ;

    A.income = (800, 1500, 2000, 2001)

    B.income = (800, 801, 1999, 2000)

    C.income = (799, 1499, 2000, 2001)

    D.income = (799, 1500, 1999, 2000)


    D