The following information was taken from Lamberson Company's accounting records:
| Account Balances | ||
| Account Titles | January 1, 2016 |
December 31, 2016 |
| Debits | ||
|---|---|---|
| Cash | $ 1,400 | $ 2,400 |
| Accounts Receivable (net) | 2,800 | 2,690 |
| Marketable Securities (at cost) | 1,700 | 3,000 |
| Allowance for Change in Value | 500 | 800 |
| Inventories | 8,100 | 7,910 |
| Prepaid Items | 1,300 | 1,710 |
| Investments (long-term) | 7,000 | 5,400 |
| Land | 15,000 | 15,000 |
| Buildings and Equipment | 32,000 | 46,200 |
| Discount on Bonds Payable | — | 290 |
| $69,800 | $85,400 | |
| Credits | ||
| Accumulated Depreciation | $16,000 | $16,400 |
| Accounts Payable | 3,800 | 4,150 |
| Income Taxes Payable | 2,400 | 2,504 |
| Wages Payable | 1,100 | 650 |
| Interest Payable | — | 400 |
| Note Payable (long-term) | 3,500 | — |
| 12% Bonds Payable | — | 10,000 |
| Deferred Taxes Payable | 800 | 1,196 |
| Convertible Preferred Stock, $100 par | 9,000 | — |
| Common Stock, $10 par | 14,000 | 21,500 |
| Additional Paid-in Capital | 8,700 | 13,700 |
| Unrealized Increase in Value of Marketable Securities | 500 | 800 |
| Retained Earnings | 10,000 | 14,100 |
| $69,800 | $85,400 | |
Additional information for the year:
| Sales | $ 39,930 | |
| Cost of goods sold | (19,890) | |
| Depreciation expense | (2,100) | |
| Wages expense | (11,000) | |
| Other operating expenses | (1,000) | |
| Bond interest expense | (410) | |
| Dividend revenue | 820 | |
| Gain on sale of investments | 700 | |
| Loss on sale of equipment | (200) | |
| Income tax expense | (2,050) | |
| Net income | $ 4,800 |
Required
| LAMBERSON COMPANY Cash Flows Worksheet For Year Ended December 31, 2016 |
|||||
|---|---|---|---|---|---|
| Balances | Worksheet Entries | ||||
| Account Titles | 01/01/2016 | 12/31/2016 | Change | Debit | Credit |
| Debits | |||||
| Cash | 1,400 | 2,400 | |||
| Noncash Accounts: | |||||
| Accounts Receivable | 2,800 | 2,690 | |||
| Marketable Securities | 1,700 | 3,000 | |||
| Allow for Change in Value | 500 | 800 | |||
| Inventories | 8,100 | 7,910 | |||
| Prepaid Items | 1,300 | 1,710 | |||
| Investments (long-term) | 7,000 | 5,400 | |||
| Land | 15,000 | 15,000 | |||
| Buildings and Equipment | 32,000 | 46,200 | |||
| Discount on Bonds Payable | 290 | ||||
| Totals | 69,800 | 85,400 | |||
| Credits | |||||
| Accumulated Depreciation | 16,000 | 16,400 | |||
| Accounts Payable | 3,800 | 4,150 | |||
| Income taxes Payable | 2,400 | 2,504 | |||
| Wages Payable | 1,100 | 650 | |||
| Interest Payable | 400 | ||||
| Notes Payable (long-term) | 3,500 | ||||
| 12% Bonds Payable | 10,000 | ||||
| Deferred Income Taxes | 800 | 1,196 | |||
| Convertible Preferred Stock | 9,000 | ||||
| Common Stock, $10 par | 14,000 | 21,500 | |||
| Additional Paid-in Capital | 8,700 | 13,700 | |||
| Unrealized Increase in Value of Marketable Securities | 500 | 800 | |||
| Retained Earnings | 10,000 | 14,100 | |||
| Totals | 69,800 | 85,400 | |||
| Worksheet Entries | ||
|---|---|---|
| Debit | Credit | |
| Cash Flows from Operating Activities: | ||
| Net income | ||
| Add: Depreciation expense | ||
| Add: Loss from sale of building | ||
| Cash Flows from Investing Activities: | ||
| Cash Flows from Financing Activities: | ||
| Investing and Financing Activities Not Affecting Cash: | ||
| Totals | ||
Prepare the statement of cash flows.
| LAMBERSON COMPANY Statement of Cash Flows For Year Ended December 31, 2016 |
||
|---|---|---|
| Operating Activities: | ||
| Adjustment for noncash income items: | ||
| Adjustments for cash flow effects from working capital items: | ||
| Net cash provided by operating activities | ||
| Investing Activities: | ||
| Net cash used for investing activities | ||
| Financing Activities: | ||
| Net cash provided by financing activities | ||
| Cash, January 1, 2016 | ||
| Cash, December 31, 2016 | ||
In: Accounting
having trouble with loop, when I added saving and loading to my code, when adding new player, it continues to ask for new player
class TeamClass:
name = ""
jersey = ""
number = ""
def __init__(self, name, jersey, number):
self.name = name
self.number = number
self.jersey = jersey
def set_name(self, name):
self.name = name
def set_jersey(self, jersey):
self.jersey = jersey
def set_number(self, number):
self.number = number
def get_name(self, name):
return self.name
def get_jersey(self, jersey):
return self.jersey
def get_number(self, number):
return self.number
def display_team_roster(self):
print("Player")
print("Name: ", self.name)
print("Jersey: ", self.jersey)
print("Phone Number: ", self.number)
print("-------------")
def menu():
print("-----Roster Menu----")
print("1. Display Team Roster")
print('2. New Player')
print("3. Remove player")
print("4. Edit Player")
print("5. Save Roster Menu")
print("6. Load Roster Menu")
print("7. Exit Roster Menu")
print("")
selection = int(input("Enter an option or 7 to exit: "))
return selection
def display_roster(roster):
if len(roster) > 0:
for x in roster.keys():
roster[x].display_team_roster()
else:
print("Roster is empty")
def add_member(roster):
new_member = input("Enter new Player: ")
new_jersey = input("Enter jersey#: ")
new_number = input("Enter phone number: ")
roster[new_member] = TeamClass(new_member, new_jersey, new_number)
def del_member(roster):
del_member = input("Which player would you like to remove?: ")
if del_member in roster:
del roster[del_member]
print(del_member, "has been removed")
else:
print(del_member, "was not found")
return roster
def edit_member(roster):
existing_member = input("Which player would you like to edit? ")
if existing_member in roster:
new_member = input("Enter new players name: ")
new_jersey = input("Enter new jersey#: ")
new_number = input("Enter new phone number: ")
roster[existing_member] = TeamClass(new_member, new_jersey, new_number)
print(existing_member, "has been changed to", new_jersey, new_number)
else:
print(existing_member, "was not found")
return roster
def save_member(roster):
filename = input("week1.py\teamroster.txt:")
print("Saving Roster")
outfile = open(teamroster.txt,"wt")
for x in roster.keys():
name = roster[x].get_name()
jersey = roster[x].get_jersey()
number = roster[x].get_number()
outfile.write(name+", "+jersey+", "+number+"\n")
print("Roster saved")
outfile.close()
def load_member():
roster = {}
filename = input("week1.py\teamroster.txt:")
inFile = open(teamroster.txt,"rt")
print("Loading Roster ")
while True:
inLine = inFile.readline()
if not inLine:
break
inLine = inLine[:-1]
name, jersey, number = inLine.split(",")
roster[name] = TeamClass(name,jersey,number)
print("Data Loaded Successfully.")
inFile.close()
return roster
print("")
roster = {}
menu_selection = menu()
while menu_selection != 7:
if menu_selection == 1:
display_roster(roster)
elif menu_selection == 2:
add_member(roster)
elif menu_selection == 3:
roster = del_member(roster)
elif menu_selection == 4:
roster = edit_member(roster)
elif menu_selection == 5:
roster = save_member(roster)
elif menu_selection == 6:
roster = load_member(roster)
menu_selection = menu()
print("Good Bye")
In: Computer Science
Draw valid Lewis structure of the flowing molecules showing all lone pairs of electrons and overall charges. Draw the Lewis structure and name the electronic arrangement. Draw and name the molecular structure.
Molecules: FCO2-, BrF2+
In: Chemistry
A) In calculus what is the name of the slope of the line drawn tangent to curve (when the curve is a graph of given function) B) What is the name of the physical quantity given to the slope of a line tangent to a Distance vs Time curve?
In: Physics
Discuss the pros and cons of a US based domestic company aggressively investing in emerging economies. You may use a particular company (by name) and a particular emerging economy (by name) to provide your examples. (International Management
In: Economics
3. (a)
(b) Name the two main forms of the known rhabdovirus disease and
effective
strategy in preventing it in humans
(c) Schistosoma mansoni is found in which part of the body?
(d) Name the two main species of the genus
In: Nursing
What are the different characteristics between a febrile seizure, and generalized seizure and an absence seizure?
Name the three different causes of seizures, in children. Give an example of each.
Name two common anticonvulsive medications and their side effects.
In: Nursing
Name the specialized periarticular tissues of the hip. What is the role of each of these tissues? (menisci, labrum, ligaments, etc)
Name the specialized periarticular tissues of the knee. What is the role of each of these tissues? (menisci, labrum, ligaments, etc)
In: Anatomy and Physiology
Write an Algorithm that asks the user to enter an address and print each part of the address on a separate line.
Example:
Input
344 Rose Dr, Raeford, NC 28376
Output
Street No.: 344
Street Name: Rose Dr
City: Raeford
State: North Carolina
Zip Code: 28376
Hints:
Deal with the address as a string. The address must contain two commas. The text before first comma contains the street number and street name separated by one or more white spaces. The text after the second comma contains the state code and the zip code separated by one or more white spaces. The text between the two commas is the city name. The algorithm must print the state name instead of the state code.
In: Computer Science
PUT IN JAVA PROGRAMMING
The Stock class: Design a class named Stock that contains:
• A string data field named symbol1 for the stock’s symbol.
• A string data field named name for the stock’s name.
• A double data field named previousClosingPrice that stores the
stock price for the previous day.
• A double data field named currentPrice that stores the stock
price for the current time.
• A constructor that creates a stock with the specified symbol and
name.
• A method named getChangePercent() that returns the percentage
changed from previousClosingPrice to currentPrice.
• Write a test program that creates a Stock object with the stock
symbol ORCL, the name Oracle Corporation, and the previous closing
price of 34.5. Set a new current price to 34.35 and display the
price-change percentage.
In: Computer Science