(b) For this part, assume today’s date is 1 May 2010.
Bill and Ben decided not to sell their company, and instead expanded the business themselves. Ben, however,
is now pursuing other interests, and is no longer involved with the day to day activities of Flower Limited. Bill
believes that the company would be better off without Ben as a voting shareholder, and wishes to buy Ben’s
shares. However, Bill does not have sufficient funds to buy the shares himself, and so is wondering if the
company could acquire the shares instead.
The proposed price for Ben’s shares would be £500,000. Both Bill and Ben pay income tax at the higher rate.
Required:
Write a letter to Ben:
(1) stating the income tax (IT) and/or capital gains tax (CGT) implications for Ben if Flower Limited were to
repurchase his 50% holding of ordinary shares, immediately in May 2010; and
(2) advising him of any available planning options that might improve this tax position. Clearly explain any
conditions which must be satisfied and quantify the tax savings which may result.
(13 marks)
Assume that the corporation tax rates for the financial year 2005 and the income tax rates and allowances
for the tax year 2005/06 apply throughout this question.
第1题:
下列程序的运行结果是( )。
#include<stdio.h>
main()
{stmct date
{int year,month,day;
}today;
primf("%d\n",sizeof(struct date));
}
A.8
B.6
C.10
D.12
第2题:
(b) Draft a report as at today’s date advising Cutlass Inc on its proposed activities. The report should cover the
following issues:
(i) The rate at which the profits of Cutlass Inc will be taxed. This section of the report should explain:
– the company’s residency position and what Ben and Amy would have to do in order for the company
to be regarded as resident in the UK under the double tax treaty;
– the meaning of the term ‘permanent establishment’ and the implications of Cutlass Inc having a
permanent establishment in Sharpenia;
– the rate at which the profits of Cutlass Inc will be taxed on the assumption that it is resident in the
UK under the double tax treaty and either does or does not have a permanent establishment in
Sharpenia. (9 marks)
第3题:
-________?
-It's Sunday.
A、What day is it today
B、What date is it today
C、What's the date
D、What's day
第4题:
有以下程序: class Date { public: Date(int y,int m,int D) ; { year =y; month=m; day=d; } Date(int y=2000) { year=y; month=10; day=1; } Date(Date &D) { year=d.year; month=d.month; day=d.day; } void print () { cout<<year<<"."<<month<<"."<<day<<end1; } private: int year,month,day; }; Date fun(Date D) { Date temp; temp=d; return temp; } int main() { Date date1(2000,1,1),date2(0,0,0); Date date3(date1); date2=fun(date3); return 0; } 程序执行时,Date类的拷贝构造函数被调用的次数是
A.2
B.3
C.4
D.5
第5题:
下列程序的运行结果为( )。 #include<stdio.h> main() { struct date {int year,month,day; }today; printf("%d\n",sizeof(struct date)); }
A.8
B.6
C.10
D.12
第6题:
以下程序的运行结果是( )。 #include <stdio.h> main() { st,uct date {int year,month,day;}today; printf("%d\n",sizeof(struct date)); }
A.6
B.8
C.10
D.12
第7题:
What day is it today?()
AIt's March
BIt's a fine day today.
CIt's March today.
DIt's Monday.
第8题:
What is the key objective of the plan phase?()
第9题:
What is the key objective of the plan phase? Select exactly 1 answer(s) from the following:()。
第10题:
They sell flowers.
They make bread.
They sell clothes for Mother’s Day and Father’s Day.
第11题:
第12题:
Make a daily announcement to remove all disks before departing for the day.
Change the Boot order in the BIOS.
Make it a part of the evening checks to ensure all disks are removed.
Make a company policy that states that it is unlawful to leave disks in the machines.
第13题:
4 (a) For this part, assume today’s date is 1 March 2006.
Bill and Ben each own 50% of the ordinary share capital in Flower Limited, an unquoted UK trading company
that makes electronic toys. Flower Limited was incorporated on 1 August 2005 with 1,000 £1 ordinary shares,
and commenced trading on the same day. The business has been successful, and the company has accumulated
a large cash balance of £180,000, which is to be used to purchase a new factory. However, Bill and Ben have
received an offer from a rival company, which they are considering. The offer provides Bill and Ben with two
alternative methods of payment for the purchase of their shares:
(i) £480,000 for the company, inclusive of the £180,000 cash balance.
(ii) £300,000 for the company assuming the cash available for the factory purchase is extracted prior to sale.
Bill and Ben each currently receive a gross salary of £3,750 per month from Flower Limited. Part of the offer
terms is that Bill and Ben would be retained as employees of the company on the same salary.
Neither Bill nor Ben has used any of their capital gains tax annual exemption for the tax year 2005/06.
Required:
(i) Calculate which of the following means of extracting the £180,000 from Flower Limited on 31 March
2006 will result in the highest after tax cash amount for Bill and Ben:
(1) payment of a dividend, or
(2) payment of a salary bonus.
You are not required to consider the corporation tax (CT) implications for Flower Limited in your
answer. (5 marks)

As a result, Bill and Ben would each be better off by £15,005 (69,142 – 54,137). If the cash were extracted by way
of dividend.
Tutorial note: In this answer the employers’ national insurance liability on the salary has been ignored. Credit would be
given to a candidate who recognised this issue.
第14题:
听力原文:M: Oh, my God! Jessica. It's five p. m. now. Tomorrow is Saturday. The credit will expire on Sunday. Weekend is non-business day. We cannot make it today. What shall we do?
W: Don't worry. Banks will accept presentation on the following business day.
Q: When will the bank deal with the credit if the expiry date of a credit fails on a non-business day?
(19)
A.On every business day.
B.On Tuesday.
C.On Wednesday.
D.On the following business day.
第15题:
A、It's cold today.
B、It's February AD.
C、It's Friday.
D、It's Valentine's Day.
第16题:
可以计算当前日期所处年份的表达式是( )。
A. Day(Date)
B. Year(Date)
C. Year(Day(Date))
D. Day(Year(Date)1
第17题:
有以下程序: class Date { public: Date(int y,int m,int d); { year = y; month = m; day = d; } Date(int y = 2000) { year = y; month = 10; day = 1; } Date(Date &d) { year = d.year; month = d.month; day = d.day; } void print() { cout<<year<<"."<<month<<"."<<day<<endl; } private: int year,month,day; }; Date fun(Date d) { Date temp; temp = d; resurn temp; } int main () { Date date1 (2000,1,1),date2 (0,0,0); Date date3 (date1); date2 = fun(date3); return 0; } 程序执行时,Date类的拷贝构造函数被调用的次数是
A.2
B.3
C.4
D.5
第18题:
第19题:
What day is it today?()
第20题:
下面哪一个函数返回系统时间()。
第21题:
It is a company’s policy to shut down all workstations at the end of the day. However, the majority of employees are leaving disks in their workstations and upon start up the next morning they are receiving a ‘NTLDR is missing’ error. Which of the following is a possible solution?()
第22题:
It's March
It's a fine day today.
It's March today.
It's Monday.
第23题:
Because he wanted Ben to believe that he was enjoying the work.
Because he would like to try his best to attract Ben’s attention.
Because he did not want Ben to see the fact that he had to work.
Because he was afraid that Ben might laugh at him if he saw him.