niusouti.com

3 Johan, a public limited company, operates in the telecommunications industry. The industry is capital intensive withheavy investment in licences and network infrastructure. Competition in the sector is fierce and technologicaladvances are a characterist

题目

3 Johan, a public limited company, operates in the telecommunications industry. The industry is capital intensive with

heavy investment in licences and network infrastructure. Competition in the sector is fierce and technological

advances are a characteristic of the industry. Johan has responded to these factors by offering incentives to customers

and, in an attempt to acquire and retain them, Johan purchased a telecom licence on 1 December 2006 for

$120 million. The licence has a term of six years and cannot be used until the network assets and infrastructure are

ready for use. The related network assets and infrastructure became ready for use on 1 December 2007. Johan could

not operate in the country without the licence and is not permitted to sell the licence. Johan expects its subscriber

base to grow over the period of the licence but is disappointed with its market share for the year to 30 November

2008. The licence agreement does not deal with the renewal of the licence but there is an expectation that the

regulator will grant a single renewal for the same period of time as long as certain criteria regarding network build

quality and service quality are met. Johan has no experience of the charge that will be made by the regulator for the

renewal but other licences have been renewed at a nominal cost. The licence is currently stated at its original cost of

$120 million in the statement of financial position under non-current assets.

Johan is considering extending its network and has carried out a feasibility study during the year to 30 November

2008. The design and planning department of Johan identified five possible geographical areas for the extension of

its network. The internal costs of this study were $150,000 and the external costs were $100,000 during the year

to 30 November 2008. Following the feasibility study, Johan chose a geographical area where it was going to install

a base station for the telephone network. The location of the base station was dependent upon getting planning

permission. A further independent study has been carried out by third party consultants in an attempt to provide a

preferred location in the area, as there is a need for the optimal operation of the network in terms of signal quality

and coverage. Johan proposes to build a base station on the recommended site on which planning permission has

been obtained. The third party consultants have charged $50,000 for the study. Additionally Johan has paid

$300,000 as a single payment together with $60,000 a month to the government of the region for access to the land

upon which the base station will be situated. The contract with the government is for a period of 12 years and

commenced on 1 November 2008. There is no right of renewal of the contract and legal title to the land remains with

the government.

Johan purchases telephone handsets from a manufacturer for $200 each, and sells the handsets direct to customers

for $150 if they purchase call credit (call card) in advance on what is called a prepaid phone. The costs of selling the

handset are estimated at $1 per set. The customers using a prepaid phone pay $21 for each call card at the purchase

date. Call cards expire six months from the date of first sale. There is an average unused call credit of $3 per card

after six months and the card is activated when sold.

Johan also sells handsets to dealers for $150 and invoices the dealers for those handsets. The dealer can return the

handset up to a service contract being signed by a customer. When the customer signs a service contract, the

customer receives the handset free of charge. Johan allows the dealer a commission of $280 on the connection of a

customer and the transaction with the dealer is settled net by a payment of $130 by Johan to the dealer being the

cost of the handset to the dealer ($150) deducted from the commission ($280). The handset cannot be sold

separately by the dealer and the service contract lasts for a 12 month period. Dealers do not sell prepaid phones, and

Johan receives monthly revenue from the service contract.

The chief operating officer, a non-accountant, has asked for an explanation of the accounting principles and practices

which should be used to account for the above events.

Required:

Discuss the principles and practices which should be used in the financial year to 30 November 2008 to account

for:

(a) the licences; (8 marks)


相似考题
更多“3 Johan, a public limited company, operates in the telecommunications industry. The indust ”相关问题
  • 第1题:

    Given:And MainClass exists in the /apps/com/company/application directory. Assume the CLASSPATHenvironment variable is set to "." (current directory). Which two java commands entered at the command line will run MainClass?()

    A.java MainClass if run from the /apps directory

    B.java com.company.application.MainClass if run from the /apps directory

    C.java -classpath /apps com.company.application.MainClass if run from any directory

    D.java -classpath . MainClass if run from the /apps/com/company/application directory

    E.java -classpath /apps/com/company/application:. MainClass if run from the /apps directory

    F.java com.company.application.MainClass if run from the /apps/com/company/application directory


    参考答案:B, C

  • 第2题:

    从下列的2道试题(试题五和试题六)中任选 1道解答。如果解答的试题数超过1道,则题号小的 1 道解答有效。

    试题五(共15分)

    阅读下列说明和C++代码,将应填入 (n) 处的字句写在答题纸的对应栏内。

    【说明】

    某公司的组织结构图如图5-1所示,现采用组合(Composition)设计模式来构造该公司的组织结构,得到如图5-2所示的类图。

    其中 Company 为抽象类,定义了在组织结构图上添加(Add)和删除(Delete)分公司/办事处或者部门的方法接口。类ConcreteCompany表示具体的分公司或者办事处,分公司或办事处下可以设置不同的部门。类HRDepartment和 FinanceDepartment分别表示人力资源部和财务部。

    【C++代码】

    include <iostream>

    include <list>

    include <string>

    using namespace std;

    class Company { // 抽象类

    protected:

    string name;

    public:

    Company(string name) { (1) = name; }

    (2) ; // 增加子公司、办事处或部门

    (3) ; // 删除子公司、办事处或部门

    };

    class ConcreteCompany : public Company {

    private:

    list< (4) > children; // 存储子公司、办事处或部门

    public:

    ConcreteCompany(string name) : Company(name) { }

    void Add(Company* c) { (5) .push_back(c); }

    void Delete(Company* c) { (6) .remove(c); }

    };

    class HRDepartment : public Company {

    public:

    HRDepartment(string name) : Company(name) {} // 其它代码省略

    };

    class FinanceDepartment : public Company {

    public:

    FinanceDepartment(string name) : Company(name) {} // 其它代码省略

    };

    void main() {

    ConcreteCompany *root = new ComcreteCompany("北京总公司");

    root->Add(new HRDepartment("总公司人力资源部"));

    root->Add(new FinanceDepartment("总公司财务部"));

    ConcreteCompany *comp = new ConcreteCompany("上海分公司");

    comp->Add(new HRDepartment("上海分公司人力资源部"));

    comp->Add(new FinanceDepartment("上海分公司财务部"));

    (7) ;

    ConcreteCompany *comp1 = new ConcreteCompany("南京办事处");

    comp1->Add(new HRDepartment("南京办事处人力资源部"));

    comp1->Add(new FinanceDepartment("南京办事处财务部"));

    (8) ; //其它代码省略

    }


    正确答案:
    试题五(共15分)
    (1)this->name(1分)
    (2)virtual void Add(Company* c) = 0(2分)
    (3)virtual void Delete(Company* c) = 0(2分)
    (4)Company*(2分)
    (5)children(2分)
    (6)children(2分)
    (7)root->Add(comp)(2分)
    (8)comp->Add(comp1)(2分)

  • 第3题:

    He has sufficient time to finish the task.

    A:perfect
    B:adequate
    C:great
    D:limited

    答案:B
    解析:
    他有充足的时间完成这项工作。sufficient"足够的”。perfect“完美的”,例如:a perfect world完美的世界。adequate“足够的”,最符合题意,例如:There is adequate water for everyone.有足够的水给每个人。great“伟大的”,例如:the Great Wall长城。limited“有限的”,例如:Time is limited.时间有限。

  • 第4题:

    A) plastered

    B) glass

    C) fragile

    D) limited


    正确答案:B
    答案:B
    [试题分析] 常识题。
    [详细解答] 所填词要修饰ceiling,故只能选用glass,答案应为B。

  • 第5题:

    Which of the following has the largest demand for water?( )

    [A] Agriculture.

    [B] Industry.

    [C] Offices.

    [D] Family life.


    正确答案:A

  • 第6题:

    阅读以下说明,回答问题1至问题4,将解答填入答题纸对应的解答栏内。   【说明】   某公司的IDC(互联网数据中心)服务器Server1采用Windows Server 2003操作系统,IP地址为172.16.145.128/24,为客户提供Web服务和DNS服务;配置了三个网站,域名分别为www.company1.com、www.company2.com和www.company3.com,其中company1使用默认端口。基于安全的考虑,不允许用户上传文件和浏览目录。company2和company3对应的网站目录分别为company1-web、company2-web和company3-web,如图3-1所示。



    【问题1】(2分,每空1分)
    为安装Web服务和DNS服务,Server1必须安装的组件有(1)、(2)。  (1)~(2)备选答案:  A.网络服务 B.应用程序服务器 C.索引服务 D.证书服务 E.远程终端【问题2】(4分,每空2分)
    在IIS中创建这三个网站时,在图3-2中勾选读取(3)和执行,并在图3-3所示的文档选项卡中添加(4)为默认文档。




    【问题3】(6分,每空1分)1.为了节省成本,公司决定在一台计算机上为多类用户提供服务。使用不同端口号来区分不同网站,company1使用默认端口(5),company2和company3的端口应在1025至(6)范围内任意选择,在访问company2或者company3时需在域名后添加对应端口号,使用(7)符号连接。设置完成后,管理员对网站进行了测试,测试结果如图3-4所示,原因是(8)。



    (8)备选答案:
      A.IP地址对应错误  B.未指明company1的端口号  C.未指明company2的端口号  D.主机头设置错误  2.为便于用户访问,管理员决定采用不同主机头值的方法为用户提供服务,需在DNS服务中正向查找区域为三个网站域名分别添加(9)记录。网站company2的主机头值应设置为(10)。【问题4】(8分,每空2分)
    随着company1网站访问量的不断增加,公司为company1设立了多台服务器。下面是ping网站www.company1.com后返回的IP地址及响应状况,如图3-5所示。 从图3-5可以看出,域名www.company1。com对应了多个IP地址,说明在图3-6所示的DNS属性中启用了(11)功能。



    在图3-6中勾选了“启用网络掩码排序”后,当存在多个匹配记录时,系统会自动检检查这些记录与客户端IP的网络掩码匹配度,按照(12)原则来应答客户端的解析请求。如果勾选了“禁用递归”,这时DNS服务器仅采用(13)查询模式。当同时启用了网络掩码排序和循环功能时,(14)优先级较高。
      (14)备选答案:  A.循环 B.网络掩码排序



    答案:
    解析:
    【问题1】(2分,每空1分)(1)B (2)A 这两个答案 可互换位置
    【问题2】(4分,每空2分)(3)运行脚本(如 ASP)(S)
    (4)index.html 【问题3】(6分,每空1分)(5)80 (6)49151 (7): (8)C (9)主机记录或者A
    (10)www.company2.com
    【问题4】(8分,每空2分)启用循环
    (12)本地子网优先级排序
    (13)迭代 (14)B 或网络掩码排序