5 (a) ‘In the case of an assurance engagement it is in the public interest and, therefore, required by this Code of Ethics,that members of assurance teams … be independent of assurance clients’.IFAC Code of Ethics for Professional AccountantsRequired:Defi

题目

5 (a) ‘In the case of an assurance engagement it is in the public interest and, therefore, required by this Code of Ethics,

that members of assurance teams … be independent of assurance clients’.

IFAC Code of Ethics for Professional Accountants

Required:

Define the term ‘assurance team’. (3 marks)


相似考题

3.4 Hogg Products Company (HPC), based in a developing country, was recently wholly acquired by American OverseasInvestments (AOI), a North American holding company. The new owners took the opportunity to completely reviewHPC’s management, culture and systems. One of the first things that AOI questioned was HPC’s longstandingcorporate code of ethics.The board of AOI said that it had a general code of ethics that HPC, as an AOI subsidiary, should adopt. Simon Hogg,the chief executive of HPC, disagreed however, and explained why HPC should retain its existing code. He said thatHPC had adopted its code of ethics in its home country which was often criticised for its unethical business behaviour.Some other companies in the country were criticised for their ‘sweat shop’ conditions. HPC’s adoption of its code ofethics, however, meant that it could always obtain orders from European customers on the guarantee that productswere made ethically and in compliance with its own highly regarded code of ethics. Mr Hogg explained that HPC hadan outstanding ethical reputation both locally and internationally and that reputation could be threatened if it wasforced to replace its existing code of ethics with AOI’s more general code.When Ed Tanner, a senior director from AOI’s head office, visited Mr Hogg after the acquisition, he was shown HPC’soperation in action. Mr Hogg pointed out that unlike some other employers in the industry, HPC didn’t employ childlabour. Mr Hogg explained that although it was allowed by law in the country, it was forbidden by HPC’s code ofethics. Mr Hogg also explained that in his view, employing child labour was always ethically wrong. Mr Tanner askedwhether the money that children earned by working in the relatively safe conditions at HPC was an important sourceof income for their families. Mr Hogg said that the money was important to them but even so, it was still wrong toemploy children, as it was exploitative and interfered with their education. He also said that it would alienate theEuropean customers who bought from HPC partly on the basis of the terms of its code of ethics.Required:(a) Describe the purposes and typical contents of a corporate code of ethics. (9 marks)

更多“5 (a) ‘In the case of an assurance engagement it is in the public interest and, therefore, required by this Code of Ethics,that members of assurance teams … be independent of assurance clients’.IFAC Code of Ethics for Professional AccountantsRequired:Defi”相关问题
  • 第1题:

    (b) ‘Strategic positioning’ is about the way that a company as a whole is placed in its environment and concerns its

    ‘fit’ with the factors in its environment.

    With reference to the case as appropriate, explain how a code of ethics can be used as part of a company’s

    overall strategic positioning. (7 marks)


    正确答案:
    (b) Code of ethics and strategic positioning
    Strategic positioning is about the way that a whole company is placed in its environment as opposed to the operational level,
    which considers the individual parts of the organisation.
    Ethical reputation and practice can be a key part of environmental ‘fit’, along with other strategic issues such as generic
    strategy, quality and product range.
    The ‘fit’ enables the company to more fully meet the expectations, needs and demands of its relevant stakeholders – in this
    case, European customers.
    The ‘quality’ of the strategic ‘fit’ is one of the major determinants of business performance and so is vital to the success of
    the business.
    HPC has carefully manoeuvred itself to have the strategic position of being the highest ethical performer locally and has won
    orders on that basis.
    It sees its strategic position as being the ethical ‘benchmark’ in its industry locally and protects this position against its parent
    company seeking to impose a new code of ethics.
    The ethical principles are highly internalised in Mr Hogg and in the company generally, which is essential for effective strategic
    implementation.

  • 第2题:

    5 (a) IFAC’s ‘Code of Ethics for Professional Accountants’ is divided into three parts:

    Part A – Applicable to All Professional Accountants

    Part B – Applicable to Professional Accountants in Public Practice

    Part C – Applicable to Employed Professional Accountants

    Required:

    Distinguish between ‘Professional Accountants’, ‘Professional Accountants in Public Practice’ and ‘Employed

    Professional Accountants’. (3 marks)


    正确答案:
    5 BOLEYN & CO
    (a) Professional Accountants
    ■ Professional Accountants are members of an IFAC member body. They may be:
    – in public practice or employed professionals;
    – a sole practitioner, partnership or corporate body.
    ■ Professional Accountants in Public Practice (‘practitioners’) are:
    – each partner (or person occupying a position similar to that of a partner); and
    – each employee in a practice providing professional services to a client irrespective of their functional classification
    (e.g. audit, tax or consulting); and
    – professional accountants in a practice having managerial responsibilities.
    This term is also used to refer to a firm of professional accountants in public practice.
    ■ Employed Professional Accountants are professional accountants employed in industry, commerce, the public sector or
    education.

  • 第3题:

    assurance 选择能代替的选项

    A、believe

    B、faith

    C、confidence

    D、mistrust


    参考答案:D

  • 第4题:

    Software quality assurance is now an emerging sub - discipline of(36). As Buckly and oston point out,(37) software quality assurance is likely to lead to an ultimate(38) of software costs. However, the major hurdle in the path of software management in this area is the lack of usable software(39). The development of accepted and generally applicable standards should be one of the principal goals of(40) in software engineering.

    A.software engineering

    B.software design

    C.coding

    D.testing


    正确答案:A

  • 第5题:

    业务保障(Assurance)负责及时和正确的处理账单和收费。

    此题为判断题(对,错)。


    正确答案:×

  • 第6题:

    In the article, the word "consternation" in paragraph 2, Line 3 is closest in meaning to__________.

    A.alarm
    B.admiration
    C.fear
    D.assurance

    答案:A
    解析:
    在这里,consternation意思是吃惊,故答案为A。

  • 第7题:

    As a rule of thumb for QA (Quality Assurance) activities, how many hours of downstream QA (Quality Assurance) costs are saved for each hour spent on technical reviews early in the project?()

    • A、Up to 5
    • B、Up to 10
    • C、Up to 15
    • D、Up to 20

    正确答案:B

  • 第8题:

    Which line contains a constructor in this class definition?()   public class Counter { // (1)   int current, step;   public Counter(int startValue, int stepValue) { // (2)   set(startValue);   setStepValue(stepValue);  }   public int get() { return current; } // (3)   public void set(int value) { current = value; } // (4)   public void setStepValue(int stepValue) { step = stepValue; } // (5)  }  

    • A、Code marked with (1) is a constructor
    • B、Code marked with (2) is a constructor
    • C、Code marked with (3) is a constructor
    • D、Code marked with (4) is a constructor
    • E、Code marked with (5) is a Constructor

    正确答案:B

  • 第9题:

    业务保障(Assurance)负责及时和正确的处理账单和收费。()


    正确答案:错误

  • 第10题:

    Which document provides guidelines to support planning and provides pre-installation steps forthe IBM System Storage DS8000?()

    • A、Solution Assurance Product Review Guide
    • B、DS8000 Introduction and Planning Guide
    • C、DS8000 Installation Guide
    • D、System Assurance Product Review Guide

    正确答案:D

  • 第11题:

    Your company’s network includes 150 client computers that run Windows Vista Business. The company does not participate in the Microsoft Software Assurance program. You plan to implement a virtual desktop infrastructure (VDI) that includes 150 VDI sessions. You acquire three new servers that have four quad-core CPUs each. You need to choose the appropriate licenses. Which licensing solution should you choose?()

    • A、150 Windows Virtual Enterprise Centralized Desktop (VECD) licenses
    • B、150 Windows Vista Business licenses
    • C、3 Windows Server 2008 R2 Datacenter licenses
    • D、150 Windows 7 Professional Upgrade licenses and Software Assurance

    正确答案:A

  • 第12题:

    单选题
    Which of the following is a benefit of having a Solution Assurance?()
    A

    The need to involve solution experts is removed

    B

    Financial justification of the proposal is enhanced

    C

    Time required to design a solution is decreased

    D

    Complex solutions are simplified considerably


    正确答案: D
    解析: 暂无解析

  • 第13题:

    6 The explosive growth of investing and raising capital in the global markets has put new emphasis on the development

    of international accounting, auditing and ethical standards. The International Federation of Accountants (IFAC) has

    been at the forefront of the development of the worldwide accountancy profession through its activities in ethics,

    auditing and education.

    Required:

    Explain the developments in each of the following areas and indicate how they affect Chartered Certified

    Accountants:

    (a) IFAC’s ‘Code of Ethics for Professional Accountants’; (5 marks)


    正确答案:
    6 DEVELOPMENTS AND CERTIFIED CHARTERED ACCOUNTANTS
    Tutorial note: The answer which follows is indicative of the range of points which might be made. Other relevant material will
    be given suitable credit.
    (a) IFAC’s ‘Code of Ethics for Professional Accountants’
    Since its issue in 1996, IFAC’s ‘Code of Ethics for Professional Accountants’ (‘The Code’) has undergone several revisions
    (1996, 1998, 2001, 2004 and 2005). IFAC holds the view that due to national differences (of culture, language, legal and
    social systems) the task of preparing detailed ethical requirements is primarily that of the member bodies in each country
    concerned (and that they also have the responsibility to implement and enforce such requirements).
    In recognizing the responsibilities of the accountancy profession, IFAC considers its own role to be in providing guidance and
    promoting harmonization. IFAC has established ‘The Code’ to provide a basis on which the ethical requirements for
    professional accountants in each country should be founded.
    IFAC’s conceptual approach is principles-based. It provides a route to convergence that emphasises the profession’s integrity.
    This approach may be summarised as:
    ■ identifying and evaluating circumstances and relationships that create threats (e.g. to independence); and
    ■ taking appropriate action to:
    – eliminate these threats; or
    – reduce them to an acceptable level by the application of safeguards.
    If no safeguards are available to reduce a threat to an acceptable level an assurance engagement must be refused or
    discontinued.
    This approach was first introduced to Section 8 of The Code, on independence, and is applicable to assurance engagements
    when the assurance report is dated on or after 31 December 2004.
    Further to the cases of Enron, Worldcom and Parmalat, IFAC issued a revised Code in July 2005 that applies to all professional
    accountants, whether in public practice, business, industry or government2.
    A member body of IFAC may not apply less stringent standards than those stated in the Code. The Code is effective from
    30 June 2006.
    Practicing accountants and members in business must maintain the high standards of professional ethics that are expected
    by their professional bodies (such as ACCA). These developments codify current best practice in the wake of the
    aforementioned recent corporate scandals.
    The developments in The Code have wider application in that it:
    ■ applies to all assurance services (not just audit);
    ■ considers the standpoints of the firm and of the assurance team.
    Since ACCA is a member-body of IFAC the elevation of The Code to a standard will affect all Chartered Certified Accountants.
    .

  • 第14题:

    (c) Assess how the fundamental ethical principles of IFAC’s Code of Ethics for Professional Accountants should

    be applied to the provision of a forensic investigation service. (6 marks)


    正确答案:
    (c) Application of ethical principles to a fraud investigation
    IFAC’s Code of Ethics for Professional Accountants applies to all ACCA members involved in professional assignments,
    including forensic investigations. There are specific considerations in the application of each of the principles in providing
    such a service.
    Integrity
    The forensic investigator is likely to deal frequently with individuals who lack integrity, are dishonest, and attempt to conceal
    the true facts from the investigator. It is imperative that the investigator recognises this, and acts with impeccable integrity
    throughout the whole investigation.
    Objectivity
    As in an audit engagement, the investigator’s objectivity must be beyond question. The report that is the outcome of the
    forensic investigation must be perceived as independent, as it forms part of the legal evidence presented at court. The
    investigator must adhere to the concept that the overriding objective of court proceedings is to deal with cases fairly and justly.
    Any real or perceived threats to objectivity could undermine the credibility of the evidence provided by the investigator.
    This issue poses a particular problem where an audit client requests its auditors to conduct a forensic investigation. In this
    situation, the audit firm would be exposed to threats to objectivity in terms of advocacy, management involvement and selfreview.
    The advocacy threat arises because the audit firm may feel pressured into promoting the interests and point of view
    of their client, which would breach the overriding issue of objectivity in court proceedings. Secondly, the investigators could
    be perceived to be involved in management decisions regarding the implications of the fraud, especially where the investigator
    acts as an expert witness. It is however the self-review threat that would be the most significant threat to objectivity. The selfreview
    threat arises because the investigation is likely to involve the estimation of an amount (i.e. the loss), which could be
    material to the financial statements.
    For the reasons outlined above, The Code states that the firm should evaluate threats and put appropriate safeguards in place,
    and if safeguards cannot reduce the threats to an acceptable level, then the firm cannot provide both the audit service and
    the forensic investigation.
    Professional competence and due care
    Forensic investigations will involve very specialist skills, which accountants are unlikely to possess without extensive training.
    Such skills would include:
    – Detailed knowledge of the relevant legal framework surrounding fraud,
    – An understanding of how to gather specialist evidence,
    – Skills in the safe custody of evidence, including maintaining a clear ‘chain’ of evidence, and
    – Strong personal skills in, for example, interview techniques, presentation of material at court, and tactful dealing with
    difficult and stressful situations.
    It is therefore essential that forensic work is only ever undertaken by highly skilled individuals, under the direction and
    supervision of an experienced fraud investigator. Any doubt over the competence of the investigation team could severely
    undermine the credibility of the evidence presented at court.
    Confidentiality
    Normally accountants should not disclose information without the explicit consent of their client. However, during legal
    proceedings arising from a fraud investigation, the court will require the investigator to reveal information discovered during
    the investigation. There is an overriding requirement for the investigator to disclose all of the information deemed necessary
    by the court.
    Outside of the court, the investigator must ensure faultless confidentiality, especially because much of the information they
    have access to will be highly sensitive.
    Professional behaviour
    Fraud investigations can become a matter of public interest, and much media attention is often focused on the work of the
    forensic investigator. A highly professional attitude must be displayed at all times, in order to avoid damage to the reputation
    of the firm, and of the profession. Any lapse in professional behaviour could also undermine the integrity of the forensic
    evidence, and of the credibility of the investigator, especially when acting in the capacity of expert witness.
    During legal proceedings, the forensic investigator may be involved in discussions with both sides in the court case, and here
    it is essential that a courteous and considerate attitude is presented to all parties.

  • 第15题:

    Quality management ensures that an organization , It has foor main components; quality planning,quality assurance. Quality control and quality ( )

    A.improvement

    B.change

    C.spiral

    D.evolution


    正确答案:A

  • 第16题:

    Software quality assurance is now an (1) sub-discipline of software engineering. As Buckly and Oston point out, (2) software quality assurance is likely to lead to an ultimate (3) of software costs. However, the major hurdle in the path of software management in this area is the lack of (4) software standards. The development of accepted and generally applicable standards should be one of the principal goals of (5) in software engineering.

    A.emerging

    B.emergent

    C.engaging

    D.evolve


    正确答案:A

  • 第17题:

    ● Which of the following is not part of the quality assurance process?(73)

    (73)

    A.Operational definitions

    B.Quality policy

    C.Quality audits

    D.Quality improvement


    正确答案:B

  • 第18题:

    药物临床试验独立伦理委员会(Independent Ethics Committee,IEC或者Institutional Review Board,IRB)是什么组织?


    正确答案:由医学专业人员、法律专家及非医务人员组成的独立组织,其职责为核查临床试验方案及附件是否合乎道德,并为之提供公众保证,确保受试者的安全、健康和权益受到保护。参加新药临床试验的医疗机构内应成立其独立的药物临床试验伦理委员会。该委员会的组成和一切活动不应受临床试验组织和实施者的干扰和影响。

  • 第19题:

    Which of the following is a benefit of having a Solution Assurance?()

    • A、The need to involve solution experts is removed
    • B、Financial justification of the proposal is enhanced
    • C、Time required to design a solution is decreased
    • D、Complex solutions are simplified considerably

    正确答案:B

  • 第20题:

    质量保证(quality assurance,QA)


    正确答案: 为一产品或服务满足特定的质量要求提供充分可信性所要求的有计划的和系统的措施。

  • 第21题:

    The ISC2 Code of Ethics does not include which of the following behaviors for a CISSP: ISC2道德规范对CISSP的要求不包括以下哪一项?()

    • A、Honesty 诚实
    • B、Ethical behavior 道德行为
    • C、Legality 合法
    • D、Control 控制

    正确答案:D

  • 第22题:

    What is the main reason for doing a Solutions Assurance Review with the customer? ()

    • A、To revalidate the total solution
    • B、To overcome objections to the solution
    • C、To review the pricing with the customer
    • D、To ensure the customer has the correct applications

    正确答案:A

  • 第23题:

    You work as an application developer at Certkiller .com. Certkiller .com has instructed you to create a class named MetricFormula. This class will be used to compare MetricUnit and EnglishUnit objects.The MetricFormula is currently defined as follows (Line numbers are used for reference purposes only): 1. public class MetricFormula2. { 3. 4. } You need to ensure that the MetricFormula class can be used to compare the required objects. What should you do? ()

    • A、 Add the following code on line 1: : IComparable {
    • B、 Add the following code on line 1: : IComparer {
    • C、 Add the following code on line 3: public int Compare (object x, object y) {// implementation code }
    • D、 Add the following code on line 3: public int CompareTo (object obj) {// implementation code }

    正确答案:B,C