考题
Which of the following financial statements reports information as of a specific date? ()
A. income statementB. statement of owner's equityC. statement of cash flowsD. balance sheet
考题
23 The capital structure of a company at 30 June 2005 is as follows:$mOrdinary share capital 100Share premium account 40Retained earnings 6010% Loan notes 40The company’s income statement for the year ended 30 June 2005 showed:$mOperating profit 44Loan note interest (4)___Profit for year 40____What is the company’s return on capital employed?A 40/240 = 162/3 per centB 40/100 = 40 per centC 44/240 = 181/3 per centD 44/200 = 22 per cent
考题
24 Sigma’s bank statement shows an overdrawn balance of $38,600 at 30 June 2005. A check against the company’s cash book revealed the following differences:1 Bank charges of $200 have not been entered in the cash book.2 Lodgements recorded on 30 June 2005 but credited by the bank on 2 July $14,700.3 Cheque payments entered in cash book but not presented for payment at 30 June 2005 $27,800.4 A cheque payment to a supplier of $4,200 charged to the account in June 2005 recorded in the cash book as a receipt.Based on this information, what was the cash book balance BEFORE any adjustments?A $43,100 overdrawnB $16,900 overdrawnC $60,300 overdrawnD $34,100 overdrawn
考题
(c) (i) State the date by which Thai Curry Ltd’s self-assessment corporation tax return for the year ended30 September 2005 should be submitted, and advise the company of the penalties that will be due ifthe return is not submitted until 31 May 2007. (3 marks)(ii) State the date by which Thai Curry Ltd’s corporation tax liability for the year ended 30 September 2005should be paid, and advise the company of the interest that will be due if the liability is not paid until31 May 2007. (3 marks)
考题
6 Ordan received a statement from one of its suppliers, Alta, showing a balance due of $3,980. The amount dueaccording to the payables ledger account of Alta in Ordan’s records was only $230.Comparison of the statement and the ledger account revealed the following differences:1 A cheque sent by Ordan for $270 has not been allowed for in Alta’s statement.2 Alta has not allowed for goods returned by Ordan $180.3 Ordan made a contra entry, reducing the amount due to Alta by $3,200, for a balance due from Alta in Ordan’sreceivables ledger. No such entry has been made in Alta’s records.What difference remains between the two companies’ records after adjusting for these items?A $460B $640C $6,500D $100
考题
The following information is relevant for questions 9 and 10A company’s draft financial statements for 2005 showed a profit of $630,000. However, the trial balance did not agree,and a suspense account appeared in the company’s draft balance sheet.Subsequent checking revealed the following errors:(1) The cost of an item of plant $48,000 had been entered in the cash book and in the plant account as $4,800.Depreciation at the rate of 10% per year ($480) had been charged.(2) Bank charges of $440 appeared in the bank statement in December 2005 but had not been entered in thecompany’s records.(3) One of the directors of the company paid $800 due to a supplier in the company’s payables ledger by a personalcheque. The bookkeeper recorded a debit in the supplier’s ledger account but did not complete the double entryfor the transaction. (The company does not maintain a payables ledger control account).(4) The payments side of the cash book had been understated by $10,000.9 Which of the above items would require an entry to the suspense account in correcting them?A All four itemsB 3 and 4 onlyC 2 and 3 onlyD 1, 2 and 4 only
考题
Given:Which code, inserted at line 16, will cause a java.lang.ClassCastException?()
A.Alpha a = x;B.Foo f = (Delta)x;C.Foo f = (Alpha)x;D.Beta b = (Beta)(Alpha)x;
考题
如果类Alpha继承了类Beta,则类Alpha称为派生类,类Beta称为【 】类。
考题
在可转移Alpha策略下,Alpha收益与Beta收益是完全分离的。
考题
The following entry is in the /etc/host.equiv and /home/jsmith/.rhosts file on server Alpha:+ jsmith.What does this entry indicate?()A、The user "jsmith" can use r-commands from any server to server Alpha system-wideB、The user "jsmith" can use r-commands from server Alpha to any server system-wideC、The user "jsmith" can use r-commands from server Alpha to any server with a /home/jsmith directoryD、The user "jsmith" can use r-commands from any server to server Alpha only in the /home/jsmith directory
考题
10. class Foo { 11. static void alpha() { /* more code here */ } 12. void beta() { /* more code here */ } 13. } Which two are true?()A、 Foo.beta() is a valid invocation of beta().B、 Foo.alpha() is a valid invocation of alpha().C、 Method beta() can directly call method alpha().D、 Method alpha() can directly call method beta().
考题
A user selects their proper domain and is unable to log into their Windows computer.The error states:‘System cannot log you on to the domain because the system’s computer account in its primary domain is missing or the password on that account is incorrect’.Which of the following is the MOST likely cause for this error?()A、The computer’s account was removed from Active Directory.B、The user’s account was removed from Active Directory.C、The computer was disjoined from the domain.D、The user typed in the wrong password.
考题
A system administrator wants to NFS mount a filesystem from server "Alpha" to server "Bravo." Which command should be issued from "Bravo" to determine which filesystems are being exported by server "Alpha"? ()A、lsnfsmnt AlphaB、exportfs -l AlphaC、showmount -e AlphaD、mount -t nfs Alpha
考题
A resource group, MY_APP, has the following configuration: Resource Group NameMY_APP Participating Node Name(s)Alpha Beta GammaStartup Policy Online On Home Node Only Fallover Policy Fallover To Next Priority Node In The List Fallback Policy Fallback To Higher Priority Node InThe List MY_APP is currently running on node Beta. MY_APP is then moved to node Gamma using C-SPOC.Nodes Alpha and Beta are shutdown and restarted. Node Alpha stabilizes approx 60 seconds before nodeBeta. What happens to the resource group, MY_APP, when nodes Alpha and Beta are restarted?()A、It moves to BetaB、It stays on GammaC、It moves to AlphaD、It moves to Alpha, then to Beta
考题
A System p administrator wants to NFS mount a filesystem from server "alpha" to server "bravo". Which of the following commands should be issued from "bravo" to determine which filesystems are being exported by server "alpha"()A、lsexport alphaB、showmount -e alphaC、exportfs -l alphaD、mount -e nfs alpha
考题
1. class Alpha { void m1() {} } 2. class Beta extends Alpha { void m2() { } } 3. class Gamma extends Beta { } 4. 5. class GreekTest { 6. public static void main(String [] args) { 7. a Alpha [] a = {new Alpha(), new Beta(), new Gamma() }; 8. for(Alpha a2 : a) { 9. a2.m1(); 10. if (a2 instanceof Beta || a2 instanceof Gamma) 11. //insert code here 12. } 13. } 14. } 哪一行代码插入到第11行,将编译但是会在运行时产生异常?() A、 a2.m2();B、 ((Beta)a2).m2();C、 ((Alpha)a2).m2();D、 ((Gamma)a2).m2();
考题
Given this fragment from a Java EE deployment descriptor: 124. beta.html 125. alpha.html And this request from a browser:http://www.sun.com/SCWCDtestApp/register Which statement is correct,when the container receives this request?()A、This deployment descriptor is NOT valid.B、The container first looks in the register directory for beta.html.C、The container first looks in the register directory for alpha.html.D、The container first looks for a servlet mapping in the deployment descriptor.
考题
10. interface Foo {} 11. class Alpha implements Foo {} 12. class Beta extends Alpha {} 13. class Delta extends Beta { 14. public static void main( String[] args) { 15. Beta x = new Beta(); 16. // insert code here 17. } 18. } Which code, inserted at line 16, will cause a java.lang.ClassCastException?() A、 Alpha a = x;B、 Foo f= (Delta)x;C、 Foo f= (Alpha)x;D、 Beta b = (Beta)(Alpha)x;
考题
单选题A resource group, MY_APP, has the following configuration: Resource Group NameMY_APP Participating Node Name(s)Alpha Beta GammaStartup Policy Online On Home Node Only Fallover Policy Fallover To Next Priority Node In The List Fallback Policy Fallback To Higher Priority Node InThe List MY_APP is currently running on node Beta. MY_APP is then moved to node Gamma using C-SPOC.Nodes Alpha and Beta are shutdown and restarted. Node Alpha stabilizes approx 60 seconds before nodeBeta. What happens to the resource group, MY_APP, when nodes Alpha and Beta are restarted?()A
It moves to BetaB
It stays on GammaC
It moves to AlphaD
It moves to Alpha, then to Beta
考题
单选题The following entry is in the /etc/host.equiv and /home/jsmith/.rhosts file on server Alpha:+ jsmith.What does this entry indicate?()A
The user jsmith can use r-commands from any server to server Alpha system-wideB
The user jsmith can use r-commands from server Alpha to any server system-wideC
The user jsmith can use r-commands from server Alpha to any server with a /home/jsmith directoryD
The user jsmith can use r-commands from any server to server Alpha only in the /home/jsmith directory
考题
单选题10. interface Foo {} 11. class Alpha implements Foo {} 12. class Beta extends Alpha {} 13. class Delta extends Beta { 14. public static void main( String[] args) { 15. Beta x = new Beta(); 16. // insert code here 17. } 18. } Which code, inserted at line 16, will cause a java.lang.ClassCastException?()A
Alpha a = x;B
Foo f= (Delta)x;C
Foo f= (Alpha)x;D
Beta b = (Beta)(Alpha)x;
考题
单选题1. import java.util.*; 2. class SubGen { 3. public static void main(String [] args) { 4. //insert code here 5. } 6. } class Alpha { } class Beta extends Alpha { } class Gamma extends Beta { } 和四段代码片段: s1. ArrayList〈? extends Alpha〉 list1 = new ArrayList〈Gamma〉(); s2. ArrayList〈Alpha〉 list2 = new ArrayList〈? extends Alpha〉(); s3. ArrayList〈? extends Alpha〉 list3 = new ArrayList〈? extends Beta〉(); s4. ArrayList〈? extends Beta〉 list4 = new ArrayList〈Gamma〉(); ArrayList〈? extends Alpha〉 list5 = list4; 哪些片段分别插入到第4行,可允许代码编译?()A
只有s1B
只有s3C
只有s1和s3D
只有s1和s4
考题
单选题现有: 1. class Alpha { void m1() {} } 2. class Beta extends Alpha { void m2() { } } 3. class Gamma extends Beta { } 4. 5. class GreekTest { 6. public static void main(String [] args) { 7. Alpha [] a = {new Alpha(), new Beta(), new Gamma() }; 8. for(Alpha a2 : a) { 9. a2.m1(); 10. if (a2 instanceof Beta || a2 instanceof Gamma) 11. //insert code here 12. } 13. } 14. } 哪一行代码插入到第11行,将编译但是会在运行时产生异常?()A
a2.m2();B
((Beta)a2).m2();C
((Alpha)a2).m2();D
((Gamma)a2).m2();
考题
单选题Given: Which code, inserted at line 16, will cause a java.lang.ClassCastException?()A
Alpha a = x;B
Foo f = (Delta)x;C
Foo f = (Alpha)x;D
Beta b = (Beta)(Alpha)x;
考题
单选题Which code, inserted at line 16, will cause a java.lang.ClassCastException?()A
Alpha a=x;B
Foo f=(Delta)x;C
Foo f=(Alpha)x;D
Beta b=(Beta)(Alpha)x;
考题
单选题Given this fragment from a Java EE deployment descriptor: 124. beta.html 125. alpha.html And this request from a browser:http://www.sun.com/SCWCDtestApp/register Which statement is correct,when the container receives this request?()A
This deployment descriptor is NOT valid.B
The container first looks in the register directory for beta.html.C
The container first looks in the register directory for alpha.html.D
The container first looks for a servlet mapping in the deployment descriptor.