ACCA考试

(a) List and explain FOUR methods of selecting a sample of items to test from a population in accordance with ISA 530 (Redrafted) Audit Sampling and Other Means of Testing. (4 marks)(b) List and explain FOUR assertions from ISA 500 Audit Evidence that rel

题目

(a) List and explain FOUR methods of selecting a sample of items to test from a population in accordance with ISA 530 (Redrafted) Audit Sampling and Other Means of Testing. (4 marks)

(b) List and explain FOUR assertions from ISA 500 Audit Evidence that relate to the recording of classes of

transactions. (4 marks)

(c) In terms of audit reports, explain the term ‘modified’. (2 marks)

参考答案和解析
正确答案:
(a)SamplingmethodsMethodsofsamplinginaccordancewithISA530AuditSamplingandOtherMeansofTesting:Randomselection.Ensureseachiteminapopulationhasanequalchanceofselection,forexamplebyusingrandomnumbertables.Systematicselection.Inwhichanumberofsamplingunitsinthepopulationisdividedbythesamplesizetogiveasamplinginterval.Haphazardselection.Theauditorselectsthesamplewithoutfollowingastructuredtechnique–theauditorwouldavoidanyconsciousbiasorpredictability.Sequenceorblock.Involvesselectingablock(s)ofcontinguousitemsfromwithinapopulation.Tutorialnote:Othermethodsofsamplingareasfollows:MonetaryUnitSampling.Thisselectionmethodensuresthateachindividual$1inthepopulationhasanequalchanceofbeingselected.Judgementalsampling.Selectingitemsbasedontheskillandjudgementoftheauditor.(b)Assertions–classesoftransactionsOccurrence.Thetransactionsandeventsthathavebeenrecordedhaveactuallyoccurredandpertaintotheentity.Completeness.Alltransactionsandeventsthatshouldhavebeenrecordedhavebeenrecorded.Accuracy.Theamountsandotherdatarelatingtorecordedtransactionsandeventshavebeenrecordedappropriately.Cut-off.Transactionsandeventshavebeenrecordedinthecorrectaccountingperiod.Classification.Transactionsandeventshavebeenrecordedintheproperaccounts.(c)AuditreporttermModified.Anauditormodifiesanauditreportinanysituationwhereitisinappropriatetoprovideanunmodifiedreport.Forexample,theauditormayprovideadditionalinformationinanemphasisofmatter(whichdoesnotaffecttheauditor’sopinion)orqualifytheauditreportforlimitationofscopeordisagreement.
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

Yourdatabaseisnotconfiguredforsessionfailover.Yourtnsnames.orafilecontainsthefollowingdetails:test.us.oracle.com=(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=off)(FAILOVER=ON)(ADDRESS=(PROTOCOL=tcp)(HOST=test1-server)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=test2-server)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=test.us.oracle.com)))Whichfeatureisenabledinthiscase?()

A.Loadbalancing

B.Instancefailover

C.Databasefailover

D.Connect-timefailover

E.TransparentApplicationFailover(TAF)


参考答案:D

第2题:

Whichbuilt-incopiesvaluesfromarecordgroupintoalistitem?()

A.POPULATE_LIST

B.POPULATE_GROUP

C.POPULATE_LIST_ITEM

D.POPULATE_LIST_FROM_GROUP

E.POPULATE_LIST_ITEM_FROM_GROUP


参考答案:A

第3题:

关于@SubQueryRequestParam注解描述正确的是()

A、将数据转化为List格式,list中map封装一个item数据

B、将返回的list集合转化为json字符串指明返回值将以{items:[{}{}{}{}]}的形式返回

C、GET请求中从url中通过指定KEY值将参数取出,用于查询条件

D、将请求参数{key:value}中的key解析,返回字符串


参考答案:D

第4题:

删除列表框中第2项的项目,应使用的方法为______。

A.Items.RemoveAt

B.Items.Move

C.Items.Remove

D.Items.Clear

E.Items.Delete


Items.RemoveAt

第5题:

不能通过()来删除列表框中的选项.

A、List属性

B、Removeltem方法

C、Clear方法

D、Test属性


正确答案:D

第6题:

Whichbuilt-incopiesvaluesfromalistitemintoarecordgroup?()

A.RETRIEVE_LIST

B.RETRIEVE_GROUP

C.RETRIEVE_LIST_ITEM

D.RETRIEVE_GROUP_FROM_LIST

E.RETRIEVE_GROUP_FROM_LIST_ITEM


参考答案:A

第7题:

使用VC6打开考生文件夹下的工程test12_1,此工程包含一个源程序文件test_12.cpp,但该程序运行有问题,请改正程序中的错误,使该程序的输出结果如下:

fun (Sample &p) 1 2

fun (Sample *p) 3 4

20 10

源程序文件test12_1清单如下:

include<iostream .h>

class Sample

{

private:

int x,y;

static int z;

public:

Sample(int a,int b){ x=a;y=b; }

void fun(Sample &p);

void fun(Sample *p);

static void print(Sample s);

};

/*************** found ***************/

int z=10;

void Sample::fun(Sample &p)

{

x=p.K;y=p.y;

cout<<"fun(Sample &p)"<<" "<<x<<" "<<y<<endl;

}

void Sample::fun(Sample *p)

{

/************** found **************/

x=p.x; y=p.y;

cout<<"fun(Sample *p) "<<" '<<x<<" "<<y<<endl;

}

void Sample::print (Sample s)

{

/*************** found *****************/

x=20;

cout<<s. x<<" "<<z<<endl;

}

void main()

{

Sample p(1,2),q(3,4);

p. fun(p);

p. fun(&q);

p. print(p);

}


正确答案:(1)错误:int z=10; 正确:int Sample::z=10; (2)错误:x=p.x;y=p.y; 正确;x=p->x;y=p->y; (3)错误:x=20; 正确;s.x=20;
(1)错误:int z=10; 正确:int Sample::z=10; (2)错误:x=p.x;y=p.y; 正确;x=p->x;y=p->y; (3)错误:x=20; 正确;s.x=20; 解析:(1)主要考查考生对于静态成员初始化定义的理解,静态成员使用关键字static修饰,应对其进行类体外初始化,格式为数据类型“类名::静态变量名:初始值”;
(2)主要考查考生对于指针与引用区别的掌握,x和y都是指针类型的变量,应使用“->”调用类的成员;
(3)主要考查考生对于静态成员函数的掌握,在静态成员函数中使用非静态成员,需要用对象来引用。

第8题:

publicstaticvoidtest(Stringstr){intcheck=4;if(check=str.length()){System.out.print(str.charAt(check-=1)+,);}else{System.out.print(str.charAt(0)+,);}}andtheinvocation:test(”four”);test(”tee”);test(”to”);Whatistheresult?()

A.r,t,t,

B.r,e,o,

C.Compilationfails.

D.Anexceptionisthrownatruntime.


参考答案:C

第9题:

On a Cisco Catalyst switch, which configuration command is used to apply a VACL named "test" to filterthe traffic within VLAN100? ()

A.interfacevlan100ipaccess-grouptest

B.interfacevlan100ipaccess-grouptestin

C.interfacevlan100ipaccess-grouptestout

D.vlanfiltertestvlan-list100

E.vlanaccess-maptest100


参考答案:D

第10题:

将数据项“China”添加到列表框List1中,成为排在最前面的第1项,语句为______。

A.List1.Items.Insert(0, "china")

B.List1.Items.Insert("china", 0)

C.List1.Items.add(0, "china")

D.List1.Items.add("china", 0)


A