重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
当前位置: 首页 > 财会类考试 > ACCA/CAT
网友您好, 请在下方输入框内输入要搜索的题目:
搜题

题目

[主观题]

2 Marrgrett, a public limited company, is currently planning to acquire and sell interests

in other entities and has asked

for advice on the impact of IFRS3 (Revised) ‘Business Combinations’ and IAS27 (Revised) ‘Consolidated and Separate

Financial Statements’. The company is particularly concerned about the impact on earnings, net assets and goodwill

at the acquisition date and any ongoing earnings impact that the new standards may have.

The company is considering purchasing additional shares in an associate, Josey, a public limited company. The

holding will increase from 30% stake to 70% stake by offering the shareholders of Josey, cash and shares in

Marrgrett. Marrgrett anticipates that it will pay $5 million in transaction costs to lawyers and bankers. Josey had

previously been the subject of a management buyout. In order that the current management shareholders may remain

in the business, Marrgrett is going to offer them share options in Josey subject to them remaining in employment for

two years after the acquisition. Additionally, Marrgrett will offer the same shareholders, shares in the holding company

which are contingent upon a certain level of profitability being achieved by Josey. Each shareholder will receive shares

of the holding company up to a value of $50,000, if Josey achieves a pre-determined rate of return on capital

employed for the next two years.

Josey has several marketing-related intangible assets that are used primarily in marketing or promotion of its products.

These include trade names, internet domain names and non-competition agreements. These are not currently

recognised in Josey’s financial statements.

Marrgrett does not wish to measure the non-controlling interest in subsidiaries on the basis of the proportionate

interest in the identifiable net assets, but wishes to use the ‘full goodwill’ method on the transaction. Marrgrett is

unsure as to whether this method is mandatory, or what the effects are of recognising ‘full goodwill’. Additionally the

company is unsure as to whether the nature of the consideration would affect the calculation of goodwill.

To finance the acquisition of Josey, Marrgrett intends to dispose of a partial interest in two subsidiaries. Marrgrett will

retain control of the first subsidiary but will sell the controlling interest in the second subsidiary which will become

an associate. Because of its plans to change the overall structure of the business, Marrgrett wishes to recognise a

re-organisation provision at the date of the business combination.

Required:

Discuss the principles and the nature of the accounting treatment of the above plans under International Financial

Reporting Standards setting out any impact that IFRS3 (Revised) ‘Business Combinations’ and IAS27 (Revised)

‘Consolidated and Separate Financial Statements’ might have on the earnings and net assets of the group.

Note: this requirement includes 2 professional marks for the quality of the discussion.

(25 marks)

查看参考答案
更多“2 Marrgrett, a public limited company, is currently planning to acquire and sell interests”相关的问题

第1题

下面程序的结果为 #include<iostream.h> int c; class A { private: int a; static int b; publi

下面程序的结果为

#include<iostream.h>

int c;

class A

{

private:

int a;

static int b;

public:

A() {a=0;c=0;}

void seta() {a++;}

void setb() {b++;}

void setc() {c++;}

void display() {cout < < a < < " " < < b < < " " < < c;}

};

int A: :b=0;

void main()

{

A a1,a2;

a1.seta() ;

a1.setb() ;

al .setc() ;

a2.seta() ;

a2.setb() ;

a2.setc() ;

a2.display() ;

}

A.1 2 1

B.1 2 2

C.1 1 2

D.2 2 2

点击查看答案

第2题

对于下列代码: 1) class Person { 2) public void printValue(inti, int j) {..、} 3) publi

对于下列代码: 1) class Person { 2) public void printValue(inti, int j) {..、} 3) public void printValue(int i){..、} 4) }5) public class Teacher extends Person { 6) public voidprintValue() {..、} 7) public void printValue(int i) {...}8) public static void main(String args[]){ 9) Person t = newTeacher(); 10) t.printValue(10); 11) } 第10行语句将调用哪行语句?()。

A、line 2

B、line 3

C、line 6

D、line 7

点击查看答案

第3题

(13 )有如下类定义:class XX{int xdata;public:XX(int n=0) : xdata (n) { }};class YY : publi

(13 )有如下类定义:

class XX{

int xdata;

public:

XX(int n=0) : xdata (n) { }

};

class YY : public XX{

int ydata;

public:

YY(int m=0, int n=0) : XX(m), ydata(n) { }

};

YY 类的对象包含的数据成员的个数是

A ) 1

B ) 2

C ) 3

D ) 4

点击查看答案

第4题

下列代码中,将引起一个编译错误的行是()。1)public class Test{2)intm,n;3)publicTest(){}4)publi

下列代码中,将引起一个编译错误的行是()。 1)public class Test{ 2)intm,n; 3)publicTest(){} 4)publicTest(int a){m=a;} 5)publicstaticvoidmain(Stringargs[]){ 6)Testt1,t2; 7)intj,k; 8)j=0;k=0; 9)t1=new Test(); 10)t2=newTest(j,k); 11)} 12)}

A.第3行

B.第5行

C.第6行

D.第10行

点击查看答案

第5题

下列代码中,将引起一个编译错误的行是1)public class Test{2) int m,n;3)public Test(){}4)publi

下列代码中,将引起一个编译错误的行是1)public class Test{2) int m,n;3)public Test(){}4)public Test(int a){m=a;}5)public static void main(String args[]){6)Test t1,t2;7)int j,k;8)j=0;k=0;9)t1=new Test();10)t2=new Test(j,k);11) }12) }

A.第3行

B.第5行

C.第6行

D.第10行

点击查看答案

第6题

若有如下程序:#include<iostream>using namespace std;int s=O;class sample{static int n;publi

若有如下程序: #include<iostream> using namespace std; int s=O; class sample { static int n; public: sample(int i) { n=i; } static void add() { s+=n; } }; int sample::s=0; int main() { sample a(2),b(5); sample::add(); cout<<S<<end1; return 0; } 程序运行后的输出结果是

A.2

B.5

C.7

D.3

点击查看答案

第7题

以下程序输出结果为______。 include<iostream> using namespace std; class TestClass 1 { publi

以下程序输出结果为______。

include<iostream>

using namespace std;

class TestClass 1

{

public:

TestClass1(){}

TestClass1(int i)

{x1=i;}

void dispa()

{cout<<"x1="<<x1<<",";}

private:

int x1;

}:

class TestClass2:public TestClass1

{

public:

TestClass2(){}

TestClass2(int i):TestClass1(i+10)

{

x2=i:

}

void dispb()

{

dispa();

cout<<"x2="<<x2<<end1;

}

private:

int x2:

}:

int main()

{

TestClass2 b(2):

b.dispb();

return 0;

}

点击查看答案

第8题

对于类定义class A { public: virtual void funcl(){} void func2(){}};class D:public A{ publi

对于类定义 class A { public: virtual void funcl(){} void func2(){} }; class D:public A{ public: void funcl(){cout<< "class B rune 1"<<end1;} virtual void func2(){cout<< "class B func 2"<<end1;} }; 下面正确的叙述是 ______。

A.A::func2()和B::funcl()都是虚函数

B.A::func2()和B::funcl()都不是虚函数

C.B::func1()是虚函数,而A::func2()不是虚函数

D.B::func1()不是虚函数,而A::func2()是虚函数

点击查看答案

第9题

下列代码中,将引起一个编译错误的行是1) public class Test{2)int m,n;3)public Test(){}4)publi

下列代码中,将引起一个编译错误的行是 1) public class Test{ 2) int m,n; 3) public Test(){} 4) public Test(inta){m=a;} 5) public static void main(String args[]){ 6) Test t1,t2; 7) int j,k; 8) j=0;k=0; 9) t1=new Test(); 10) t2=new Test(j,k); 11) } 12) }

A.第3行

B.第5行

C.第6行

D.第10行

点击查看答案
赏学吧APP
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“赏学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注赏学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反赏学吧购买须知被冻结。您可在“赏学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注赏学吧 -
请用微信扫码测试
温馨提示
每个试题只能免费做一次,如需多次做题,请购买搜题卡
立即购买
稍后再说
赏学吧