5 You are the audit manager for three clients of Bertie & Co, a firm of Chartered Certified Accountants. The financialyear end for each client is 30 September 2007.You are reviewing the audit senior’s proposed audit reports for two clients, Alpha Co and D

题目

5 You are the audit manager for three clients of Bertie & Co, a firm of Chartered Certified Accountants. The financial

year end for each client is 30 September 2007.

You are reviewing the audit senior’s proposed audit reports for two clients, Alpha Co and Deema Co.

Alpha Co, a listed company, permanently closed several factories in May 2007, with all costs of closure finalised and

paid in August 2007. The factories all produced the same item, which contributed 10% of Alpha Co’s total revenue

for the year ended 30 September 2007 (2006 – 23%). The closure has been discussed accurately and fully in the

chairman’s statement and Directors’ Report. However, the closure is not mentioned in the notes to the financial

statements, nor separately disclosed on the financial statements.

The audit senior has proposed an unmodified audit opinion for Alpha Co as the matter has been fully addressed in

the chairman’s statement and Directors’ Report.

In October 2007 a legal claim was filed against Deema Co, a retailer of toys. The claim is from a customer who slipped

on a greasy step outside one of the retail outlets. The matter has been fully disclosed as a material contingent liability

in the notes to the financial statements, and audit working papers provide sufficient evidence that no provision is

necessary as Deema Co’s lawyers have stated in writing that the likelihood of the claim succeeding is only possible.

The amount of the claim is fixed and is adequately covered by cash resources.

The audit senior proposes that the audit opinion for Deema Co should not be qualified, but that an emphasis of matter

paragraph should be included after the audit opinion to highlight the situation.

Hugh Co was incorporated in October 2006, using a bank loan for finance. Revenue for the first year of trading is

$750,000, and there are hopes of rapid growth in the next few years. The business retails luxury hand made wooden

toys, currently in a single retail outlet. The two directors (who also own all of the shares in Hugh Co) are aware that

due to the small size of the company, the financial statements do not have to be subject to annual external audit, but

they are unsure whether there would be any benefit in a voluntary audit of the first year financial statements. The

directors are also aware that a review of the financial statements could be performed as an alternative to a full audit.

Hugh Co currently employs a part-time, part-qualified accountant, Monty Parkes, who has prepared a year end

balance sheet and income statement, and who produces summary management accounts every three months.

Required:

(a) Evaluate whether the audit senior’s proposed audit report is appropriate, and where you disagree with the

proposed report, recommend the amendment necessary to the audit report of:

(i) Alpha Co; (6 marks)


相似考题
更多“5 You are the audit manager for three clients of Bertie & Co, a firm of Chartered Cert ”相关问题
  • 第1题:

    处方中糖浆剂的可简写为

    A、P.0.

    B、Co.

    C、Amp.

    D、Inj.

    E、Syr.


    参考答案:E

  • 第2题:

    查看审计策略是否生效的视图是?()

    A. DBA_AUDIT_EXISTS

    B. DBA_AUDIT_OBJECT

    C. DBA_AUDIT_POLICY_COLUMNS

    D. DBA_AUDIT_POLICIES

    E. DBA_AUDIT_SESSION


    参考答案B

  • 第3题:

    5、以下对枚举类型名的定义中正确的是()。

    A.enum a={one,two,three};

    B.enum a{one=9,two,three};

    C.enum a={"one","two","three"};

    D.enum a{"one","two","three"};


    enum a {one=9,two=-1,three};

  • 第4题:

    下列语句能给数组赋值,而不使用for循环的是

    A.myArray{[1]="One";[2]="Two";[3]="Three";}

    B.String s[5]=new String[] {"Zero","One","Two","Three","Four"};

    C.String s[]=new String[] {"Zero","One","Two","Three","Four"};

    D.String s[]=new String[]= {"Zero","One","Two","Three","Four"};


    正确答案:C
    解析:字符串数组赋初值的方法有两种,一种是如选项C一样初始化。另外一种是先为每个数组元素分配引用空间,再为每个数组元素分配空间并赋初值。例如还可做如下赋值:
      string s[]=new String[5];
      s[0]="Zero";
      s[1]="One";
      s[2]="Two";
      s[3]="Three";
      s[4]="Four";

  • 第5题:

    处方中糖浆剂的可简写为

    A:P.O.
    B:Co.
    C:Amp.
    D:Inj.
    E:Syr.

    答案:E
    解析:
    p.o.表示“口服”;Amp.表示“安瓿剂”;Co.表示“复方”;Tab.表示“片剂”;Syr.表示“糖浆剂”。

  • 第6题:

    已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?

    A.Manager::Manager(int n):id(n){}

    B.Manager::Manager(int n){id=n;}

    C.Manager::Manager(int n):Employee(n){}

    D.Manager::Manager(int n){Employee(n);}


    Manger::manger(int n):Employee(n){}