When Sheryl, the purchasing agent for Cantik Comestics
Berhad orders materials, she sends a duplicate copy of the purchase
order to the receiving department. When materials are received,
Horace, the receiving clerk, records the date of receipt on the
copy of the purchase order but does not count the goods received.
The same copy of the purchase order is sent to accounting, where
Lisa uses it to support the purchase entry in the voucher register.
The copy is then sent to the raw materials stores, where William
uses it to update the perpetual inventory record.
(i) TWO (2) internal control
weaknesses that exist,
(ii) the material errors or irregularities
that might occur because of each of these
weaknesses
(iii) your recommendations for improvements
in the system
In: Accounting
In: Accounting
protected String
name;
protected ArrayList<Stock>
stocks;
protected double
balance;
+ Account ( String name, double balance) //stocks = new
ArrayList<Stock>() ;
+ get and set property for name; get method for balance
+ void buyStock(String symbol, int shares, double unitPrice )
//update corresponding balance and stocks ( stocks.add(new
Stock(…..)); )
+ deposit(double amount) : double //returns new
balance
+ withdraw(double amount) : double //returns new balance
+ toString() :
String
@Override
public String toString(){
StringBuffer str = new
StringBuffer("Stocks: ");
for (Stock s :
stocks){
str.append(s.toString() + " ");
}
return "Name: " + name +
", balance: " + balance +"\t" + str.toString();
}
can anyone convert this to java?
In: Computer Science
1 . Set-User mjordan–MobilePhone “(808) 555-1234” and Research online the other command parameters to see how else you could update contact information using the EMS.
2.What do we use the PIPE command for? What is it’s purpose? explain in your own words what the PIPE command does for us in scripting.
3.Why would organizations mail-enable public folders?
4. What command would grant Anonymous Contributor access to the \Sales public folder
5.How are In-place archives different than PST files?
6.If you right-click on the Inbox, you won’t see the retention policy take affect? Why not?
In: Computer Science
Case Study 04:
Geeta Rani is the treasurer of a local gymnastics club. As treasurer she is required to identify invoices for payment, prepare the cheque and in conjunction with the president sign the cheques, mail the cheque and update customer accounts.
Required:
a) Explain the weaknesses in the Accounting Information System that are not protecting Geeta in carrying out her duties.
b) The process of reviewing the recording procedures for an Accounting Information system should include three areas. What are they?
c) Define explanatory notes. Why companies need to prepare them?
d) Explain the key principles and practices of budgetary control and implications for
accounting systems.
e) Explain the key features of financial legislation relating to taxable transactions and
reporting requirements.
In: Accounting
At a corporate board meeting, one of the members indicates that the FASB has passed a new accounting update to take effect concerning the nature of lease accounting. As of now the company has leases which are both capital in nature and operating. The company also has several forms of debt with banks. The board member asks you as the Chief Financial Officer to give a 5-10 minute presentation on a summary of changes and how those changes could impact the company.
I am still very confused on this, and my head feels like it's spinning, lol.
I also want to know "the company also has several forms of debt with banks", how would that be affected by this?
Help would be appreciated!
In: Accounting
def longest(string):
start=0;end=1;i=0;
while i<len(string):
j=i+1
while j<len(string) and string[j]>string[j-1]:
j+=1
if end-start<j-i:
#update if current string has greater length than
#max start and end
end=j
start=i
i=j;
avg=0
for i in string[start:end]:
avg+=int(i)
print('The longest string in ascending order is',string[start:end])
print('Teh average is',avg/(end-start))
s=input('Enter a string')
longest(s)
i need a definition and explanation of this code that how it works?
In: Computer Science
Question 1. Write the statement to increase the
invoice_total by 25% using the INVOICES
table for all vendors whose vendor_id is less than 100.
Question 2. Write the statement to answer the
following question: What is the total of the
invoice_total amounts after the update. I need your statement and
the result stated
here.
Question 3. Write the statements to list the
customer ID and Order ID from the ORDERS
table for all orders with order id greater than 700.
Question 4. Write the statement to delete the order with order ID = 1021.
Question 11. Write the statement to show the
total number of rows in the Orders table. Also,
write the number of rows returned from the query.
In: Computer Science
For all algorithm design problems, part of the grade depends on efficiency. For every graphG = (V,E), the vertex set is {1,2,··· ,n}. We use n to denote the number of vertices and m to denote number of edges. Unless otherwise stated, all graphs are represented as adjacency lists. Each problem is worth 40 points.
Giveanalgorithmthat,givenanundirectedgraphGandnodes,createsanarrayShortestCountin which ShortestCount[i] is the number of shortest paths from s to vertex i. Provide a proof by induction that your algorithm is correct. Derive its runtime.
(Tip: Start with the BFS algorithm as given in the text, in which nodes are organized into layers Li based on distance from s, and update the counts as you build the tree.)
In: Computer Science
We want to develop a sales system for a mobile shop. The system should keep information about the mobile phones available at the shop. the system should allow the user the ADD new mobile phones, one at a time, along with their features. The system should also allow to search mobile phones , update their information, and delete them (one by one). Try to provide different criteria for search. When the system starts, it should load the information about the mobile phones forma file. if the file doesn't exist, the system should create the file. The system should provide a (console based) menu to interact with it. The system not use any arrays and all the changes should be reflected in the file.
Language: C++
In: Computer Science