Questions
James Tanson, a retired army officer, opened Tanson's Catering service. As his accountant, analyze the transactions...

James Tanson, a retired army officer, opened Tanson's Catering service. As his accountant, analyze the transactions listed next and present them in proper form.

a. The analysis of the transactions by using the expanded accounting equation.

b. A balance sheet showing the position of the firm before opening for business on October 31, 201X.

c. An income statement for the month of November.

d. A statement of owner's equity for November.

e. A balance sheet as of November 30, 201X

201X

Oct .25 James Tanson invested $20,000 in the catering business from his personal savings account.

       27 Bought equipment for cash from Munroe Co., $2,300.

       28 Bought additional equipment on account from Ryan Co., $2,000.

       29 Paid $900 to Ryan Co. as partial payment of the October 28 transaction.

(You should now prepare your balance sheet as of Octeber 31, 201X.)

Nov. 1   Catered a graduation and immediately collected cash, $1,300.

        5   Paid salaries of employees, $800.

       8   Prepared desserts for customers on account, $500.

    10    Received $250 cash as partial payment of November 8 transaction.

   15     Paid telephone bill, $400.

   17    Paid his home electric bill from the company's checkbook , $160.

   20    Catered a wedding and received cash, $1,800.

  25     Bought additional equipment on account, $1,200.

28      Rent expense due but unpaid, $650.

30      Paid supplies expense, $300.

In: Accounting

Alert Security Services Co. offers security services to business clients. The trial balance for Alert Security...

Alert Security Services Co. offers security services to business clients. The trial balance for Alert Security Services Co. has been prepared on the following end-of-period spreadsheet for the year ended October 31, 2016:

Alert Security Services Co.

End-of-Period Spreadsheet

For the Year Ended October 31, 2016

1

Unadjusted

Unadjusted

Adjusted

Adjusted

2

Trial Balance

Trial Balance

Adjustments

Adjustments

Trial Balance

Trial Balance

3

Debit

Credit

Debit

Credit

Debit

Credit

4

Cash

18.00

5

Accounts Receivable

90.00

6

Supplies

14.00

7

Prepaid Insurance

14.00

8

Land

198.00

9

Equipment

53.00

10

Accumulated Depreciation-Equipment

7.00

11

Accounts Payable

37.00

12

Wages Payable

0.00

13

Common Stock

50.00

14

Retained Earnings

231.00

15

Dividends

5.00

16

Fees Earned

203.00

17

Wages Expense

108.00

18

Rent Expense

20.00

19

Insurance Expense

0.00

20

Utilities Expense

6.00

21

Supplies Expense

0.00

22

Depreciation Expense

0.00

23

Miscellaneous Expense

2.00

24

Totals

$528.00

$528.00

The data for year-end adjustments are as follows:

Fees earned, but not yet billed, $13.
Supplies on hand, $7.
Insurance premiums expired, $7.
Depreciation expense, $4.
Wages accrued, but not paid, $2.

Enter the adjustment data, and place the balances in the Adjusted Trial Balance columns. Leave cells blank that do not require an entry.

In: Accounting

Note:Subject:Note: my subject is early childhood education. I need the answer of this question.Suppose you have...

Note:Subject:Note: my subject is early childhood education. I need the answer of this question.Suppose you have been working for the past five years in the infant room of your early childhood program. You realize that numerous parents can't understand what their infants are learning. You know that during this time, infants' progress toward developmental milestones in areas of Erikson's theory of Trust and Attachment. Your assignment is to write a letter to the parents of the infants in your class, to heighten their understanding of their infants' behavior and how they can encourage their infants to grow in this area. In your 1-2 page letter: Explain to the parents what infants are learning through daily routines, interactions, and the environment. Describe how you and your co-workers help support the growth of trust and attachment of an infant in the group care setting. Discuss Erik Erikson's trust vs. mistrust theory as it relates to interactions.

In: Psychology

​Wellness, a healthy living​ magazine, collected $ 540, 000 in subscription revenue on May 31. Each...

​Wellness, a healthy living​ magazine, collected $ 540, 000 in subscription revenue on May 31. Each subscriber will receive an issue of the magazine in each of the next 12​ months, beginning with the June issue. The company uses the accrual method of accounting. What is the balance in the Unearned Revenue account as of December​ 31?

In: Accounting

The Magazine Mass Marketing Company has received 18 entries in its latest sweepstakes. They know that...

The Magazine Mass Marketing Company has received 18 entries in its latest sweepstakes. They know that the probability of receiving a magazine subscription order with an entry form is 0.3. What is the probability that more than 3 of the entry forms will include an order? Round your answer to four decimal places.

In: Statistics and Probability

A magazine reported the mean annual household income of its readers to be $150,000 with a...

A magazine reported the mean annual household income of its readers to be $150,000 with a standard deviation of $30,000. A recent sample of 80 households from among those subscribing to this magazine found a mean of $139,155. What is the upper bound of a 95% confidence interval for the mean income (correct to no decimal places)?

In: Math

sport and sociology Sports are woven deeply into the American cultural fabric. Many people participate in...

sport and sociology

Sports are woven deeply into the American cultural fabric. Many people participate in sports from an early age. Additionally, we often align ourselves with particular teams and engage socially around viewing sports Discuss how sociological theory can be applied to sports. In your posting provide details about how sports can influence significant sociological elements including education, leisure, social stratification, social mobility, and race and gender issues.

Elaborate on your peers’ posts with a well-thought-out, substantive comment that contributes new knowledge to the conversation.

In: Psychology

Project part 3: Part Three: Complete the addShip() Method 1. In the Driver.java file, see below...

Project part 3:

Part Three: Complete the addShip() Method

1. In the Driver.java file, see below for where you will add code to finish the addShip() method.

// Add a New Ship public static void addShip() {

// complete this method

}

2. Next, review the required functionality of the “Add Ship” menu option below.

Menu Option Validation Check(s) Functionality
Add Ship - Ensures ship does not already exist in our system - Ensures all class variables are populated
Adds ship to system

3. Add Ship Method: Write the code for the addShip() method. When your code is complete, test the output. Be sure that the completed method does the following:

a. Adds a new Ship object b. Includes all class variables c. Updates appropriate ArrayList

TIP: You can refer to the Ship.java class constructor to make sure you have included all variables.

Here is the given ship code:

public class Ship {

// Class Variables
private String shipName;
private int roomBalcony;
private int roomOceanView;
private int roomSuite;
private int roomInterior;
private boolean inService;

// Constructor - default
Ship() {
}

// Constructor - full
Ship(String tName, int tBalcony, int tOceanView,
int tSuite, int tInterior, boolean tInService) {
shipName = tName;
roomBalcony = tBalcony;
roomOceanView = tOceanView;
roomSuite = tSuite;
roomInterior = tInterior;
inService = tInService;
}

// Accessors
public String getShipName() {
return shipName;
}

public int getRoomBalcony() {
return roomBalcony;
}

public int getRoomOceanView() {
return roomOceanView;
}

public int getRoomSuite() {
return roomSuite;
}

public int getRoomInterior() {
return roomInterior;
}

public boolean getInService() {
return inService;
}

// Mutators
public void setShipName(String tVar) {
shipName = tVar;
}

public void setRoomBalcony(int tVar) {
roomBalcony = tVar;
}

public void setRoomOceanView(int tVar) {
roomOceanView = tVar;
}

public void setRoomSuite(int tVar) {
roomSuite = tVar;
}

public void setRoomInterior(int tVar) {
roomInterior = tVar;
}

public void setInService(boolean tVar) {
inService = tVar;
}

// print method
public void printShipData() {
int spaceCount;
String spaces = "";
spaceCount = 20 - shipName.length();

for (int i = 1; i <= spaceCount; i++) {
spaces = spaces + " ";
}

System.out.println(shipName + spaces + roomBalcony + "\t" +
roomOceanView + "\t" + roomSuite + "\t" +
roomInterior + "\t\t" + inService);
}

// method added to print ship's name vice memory address
@Override
public String toString() {
return shipName;
}
}

And here is the driver code that needs to be completed:

import java.util.ArrayList;
import java.util.Scanner;

import static java.lang.Integer.parseInt;

public class Driver {

// class variables (add more as needed)
private static ArrayList<Ship> shipList = new ArrayList();
private static ArrayList<Cruise> cruiseList = new ArrayList();
private static ArrayList<Passenger> passengerList = new ArrayList();


public static void main(String[] args) {

initializeShipList(); // initial ships
initializeCruiseList(); // initial cruises
initializePassengerList(); // initial passengers

// add loop and code here that accepts and validates user input
// and takes the appropriate action. include appropriate
// user feedback and redisplay the menu as needed


}

// hardcoded ship data for testing
// Initialize ship list
public static void initializeShipList() {
add("Candy Cane", 20, 40, 10, 60, true);
add("Peppermint Stick", 10, 20, 5, 40, true);
add("Bon Bon", 12, 18, 2, 24, false);
add("Candy Corn", 12, 18, 2, 24, false);
}

// hardcoded cruise data for testing
// Initialize cruise list
public static void initializeCruiseList() {
Cruise newCruise = new Cruise("Southern Swirl", "Candy Cane", "Miami", "Cuba", "Miami");
cruiseList.add(newCruise);
}

// hardcoded cruise data for testing
// Initialize passenger list
public static void initializePassengerList() {
Passenger newPassenger1 = new Passenger("Neo Anderson", "Southern Swirl", "STE");
passengerList.add(newPassenger1);

Passenger newPassenger2 = new Passenger("Trinity", "Southern Swirl", "STE");
passengerList.add(newPassenger2);

Passenger newPassenger3 = new Passenger("Morpheus", "Southern Swirl", "BAL");
passengerList.add(newPassenger3);
}

// custom method to add ships to the shipList ArrayList
public static void add(String tName, int tBalcony, int tOceanView,
int tSuite, int tInterior, boolean tInService) {
Ship newShip = new Ship(tName, tBalcony, tOceanView, tSuite, tInterior, tInService);
shipList.add(newShip);
}


public static void printShipList(String listType) {
// printShipList() method prints list of ships from the
// shipList ArrayList. There are three different outputs
// based on the listType String parameter:
// name - prints a list of ship names only
// active - prints a list of ship names that are "in service"
// full - prints tabbed data on all ships

if (shipList.size() < 1) {
System.out.println("\nThere are no ships to print.");
return;
}
if (listType == "name") {
System.out.println("\n\nSHIP LIST - Name");
for (int i = 0; i < shipList.size(); i++) {
System.out.println(shipList.get(i));
}
} else if (listType == "active") {
System.out.println("\n\nSHIP LIST - Active");

System.out.println("-----------------------------------------------");
System.out.println(" Number of Rooms In");
System.out.print("SHIP NAME Bal OV Ste Int Service");
System.out.println("\n-----------------------------------------------");
for (Ship eachShip: shipList) {
if(eachShip.getType()==true)
eachShip.printShipData();
}


} else if (listType == "full") {
System.out.println("\n\nSHIP LIST - Full");
System.out.println("-----------------------------------------------");
System.out.println(" Number of Rooms In");
System.out.print("SHIP NAME Bal OV Ste Int Service");
System.out.println("\n-----------------------------------------------");
for (Ship eachShip: shipList)
eachShip.printShipData();

} else
System.out.println("\n\nError: List type not defined.");
}

public static void printCruiseList(String listType) {
if (cruiseList.size() < 1) {
System.out.println("\nThere are no cruises to print.");
return;
}
if (listType == "list") {
System.out.println("\n\nCRUISE LIST");
for (int i=0; i < cruiseList.size(); i++) {
System.out.println(cruiseList.get(i));
}
} else if (listType == "details") {
System.out.println("\n\nCRUISE LIST - Details");
System.out.println("------------------------------------------------------------------------------------------");
System.out.println(" |----------------------PORTS-----------------------|");
System.out.print("CRUISE NAME SHIP NAME DEPARTURE DESTINATION RETURN");
System.out.println("\n-----------------------------------------------------------------------------------------");
for (Cruise eachCruise: cruiseList)
eachCruise.printCruiseDetails();
} else
System.out.println("\n\nError: List type not defined.");
}

public static void printPassengerList() {
if (passengerList.size() < 1) {
System.out.println("\nThere are no passengers to print.");
return;
}
System.out.println("\n\nPASSENGER LIST");
System.out.println("-----------------------------------------------------");
System.out.print("PASSENGER NAME CRUISE ROOM TYPE");
System.out.println("\n-----------------------------------------------------");
for (Passenger eachPassenger: passengerList)
eachPassenger.printPassenger();
}

// display text-based menu
public static void displayMenu() {

System.out.println("\n\n");
System.out.println("\t\t\tLuxury Ocean Cruise Outings");
System.out.println("\t\t\t\t\tSystem Menu\n");
System.out.println("[1] Add Ship [A] Print Ship Names");
System.out.println("[2] Edit Ship [B] Print Ship In Service List");
System.out.println("[3] Add Cruise [C] Print Ship Full List");
System.out.println("[4] Edit Cruise [D] Print Cruise List");
System.out.println("[5] Add Passenger [E] Print Cruise Details");
System.out.println("[6] Edit Passenger [F] Print Passenger List");
System.out.println("[x] Exit System");
System.out.println("\nEnter a menu selection: ");
}

// Add a New Ship
public static void addShip() {

// complete this method

}

// Edit an existing ship
public static void editShip() {

In: Computer Science

The following were selected from among the transactions completed during the current year by Danix Co.,...

The following were selected from among the transactions completed during the current year by Danix Co., an appliance wholesale company:

Jan. 13. Sold merchandise on account to Black Tie Co., $41,100. The cost of goods sold was $24,660.
Mar. 10. Accepted a 60-day, 8% note for $41,100 from Black Tie Co. on account.
May 9. Received from Black Tie Co. the amount due on the note of March 10.
June 10. Sold merchandise on account, terms 2/10, n/30, to Holen for $14,900. Record the sale net of the discount. The cost of goods sold was $8,940.
15. Loaned $18,000 cash to Pioneer Co., receiving a 30-day, 6% note.
20. Received from Holen the amount due on the invoice of June 10, less 2% discount.
July 15. Received the interest due from Pioneer Co. and a new 60-day, 9% note as a renewal of the loan of June 15. (Record both the debit and the credit to the notes receivable account.)
Sept. 13. Received from Pioneer Co. the amount due on its note of July 15.
13. Sold merchandise on account toWycoff Co., $40,000. The cost of goods sold was $24,000.
Oct. 12. Accepted a 60-day, 6% note for $40,000 from Wycoff Co. on account.
Dec. 11. Wycoff Co. dishonored the note dated October 12.
26. Received from Wycoff Co. the amount owed on the dishonored note, plus interest for 15 days at 12% computed on the maturity value of the note.

Required:

Journalize the entries to record the transactions. Assume 360 days in a year. For a compound entry, if an amount box does not require an entry, leave it blank. Assume this is a year in which February has 28 days.

In: Accounting

Hello can i get answers to this questions from Principles of Marketing 17th edition related to...

Hello can i get answers to this questions from Principles of Marketing 17th edition related to Company Case; Virgin America: Flight service for the Tech Savvy

7-19 Using the full spectrum of segmentation variables, describe how Virgin America segments and targets the market for airline services.

7-20 Which market targeting strategy is Virgin America following? Justify your answer.

7-21 Write a positioning statement for Virgin America.

7-22 What are the potential issues for Virgin America following the Alaska Airlines acquisition? Will Virgin America continue to appeal to the same types of customers? Why or why not?

In: Economics