Entries by Student

write my assignment 16723

 It is very important to build off previous assignments that are attached and us business plan outline. 

You will craft the heart of your financial projections by focusing on the Profit and Loss Statement projected over the next three years. Along with this, you will discuss the logic you used to estimate your sales (be sure to refer back to Section 4 of your business plan), and your expenses (the top five line items).

Complete the Profit and Loss (section 6.1) of your business plan and the profit and loss assumption—section 6.5.1. You must justify your sales level by explaining the growth rate (number of customers times their average spending per visit and number of visits). Also justify your top five expenses. Use research to back up your numbers where appropriate (for example, likely rents based on commercial real estate leases in your area).

Finally, you will craft your elevator pitch for your company and be prepared to record it and post it to the unit 10 Discussion boards. This “pitch” is created by entrepreneurs to help get potential investors excited or interested in their venture.

Assignment checklist:

  1. Complete section 6.1 (Profit and Loss Statement) of your business plan outline
  2. Complete section 6.5.1 (Profit and Loss Assumption) of your business plan outline. Include justification for your sales figure, and explain the top five expenses.
  3. Write an elevator pitch that will be no longer than 60 seconds. No APA is required in this pitch. (Be prepared to record the pitch into a .WAV file in the next unit.)

 

"Not answered?"


Get the Answer

write my assignment 11804

To study the function of a gene in detail, you downloaded a piece of genomic sequence for this gene from the NCBI database.

5′ – ATGAACACTTCGGAAGGTTGTATCGGTGGTCGATTC – 3′

a. Write down the mRNA sequence and translate it into protein sequence, assuming that 5′-ATG is the first codon. (find codon table in your textbook or online)

b. Comparing this amino acid sequence to the recorded protein sequence on NCBI, you found that most of the sequence match perfectly however the last two amino acids are different. You are sure this is the same gene. What could be the problem?

c.It was found that in many tumor cells, a “T” (underlined) is substituted by “G” in this DNA sequence. What kinds of mutation is this? What change in amino acid sequence can be predicted? Based on the feature of this amino acid, predict the potential effect on the protein function.

d. Based on the literatures you hypothesize that this sequence can direct the localization of protein X to nucleus. Please design a project to test this hypothesis. (Briefly describe your strategy. No model answers. Designing more than one methods will obtain gift points.)

 

"Not answered?"


Get the Answer

write my assignment 29955

You have just been hired as an accountant by Marina Sport Technologies Pty. Ltd. Marina Sport Technologies was setup by Daniel Bryant, an engineer by training, in 2006 and has established a reputation for producing high quality and relatively inexpensive inflatable stand up paddle boards (more commonly known as iSUPs).

When you arrived at work for the first time, you were shown into the office of Daniel Bryant. “Well,” he said. “I have heard quite a few good things about you, so let’s get you straight into the job. We have been in operation for close to 13 years now and I have never seen the need for an accountant. However, here you are, not only an accountant, but a management accountant, to boot. I need to know exactly what is a management accountant and how you can contribute to my company. I don’t mean to put you in a spot right now, so you can include that in the report that you will be sending me on a few other issues as well.”

“The guys here have been telling me that you are the best candidate for the job, so there are several issues I need you to address. Firstly, Alistair Cook, my purchasing manager has informed me that one of our suppliers, namely Thejo Rubbers, is going into liquidation. They have excess stock of H-valves, which we use quite a bit of. However, my concern is how Alistair found out about Thejo going into liquidation. There’s nothing reported in the news as yet and no one else seems to know anything about it. I have heard that Alistair is seeing someone from Thejo, but I cannot confirm that. Is there anything wrong if we decide to proceed with the purchase of H-valves? We do not really need the stock right now, and we do not have spare cash lying around, but if the price is really good due to their liquidation, then it might make sense for us to buy them now. Can you work out whether there is any issue with this proposal from Alistair?”

“Another issue we have is with our cash flow. We are really tight on cash as it stands, because a lot of it is tied up in the stock of iSUPs. Joseph Yarran, our production manager, is suggesting to us that we could potentially cut back on our maintenance schedules. We normally conduct quarterly maintenance on the equipment that we have, however, Joseph is recommending that we do it once a year as the machines are working fine and operating way below capacity anyway. I know that this is not in compliance with our maintenance schedule, but it will improve our cash position. Can you also work out whether there is anything wrong with us doing it as Joseph suggested?”

“Finally, we have major issue that needs to be addressed. Gemma Nyoman, our software manager, is requesting to attend a users’ conference in Phuket. Normally she attends quite a few of these a year as she is responsible for identifying the right software for us. “

“We are currently in process of replacing our CAD-CAM* software and we have received bids from six different software firms. Gemma is reviewing these bids and will ultimately make a decision on which bid to proceed with.”

“Horizon 1-2-3 is an aggressive software developer. Every six months, Horizon has a three-day users’ conference in South East Asia. Each conference has substantial time allowed for ‘rest and recreation’. Horizon has offered Gemma an all-expenses-paid visit to the upcoming conference in Phuket, Thailand. Gemma believes it will be very useful to talk to other users of Horizon software, to determine its user friendliness and capabilities. She is especially looking forward to the visit because she has close relatives in the Phuket area.” “Now normally, I would just let her go on the conference. However, I have received an anonymous letter arguing that Horizon is receiving unfair, favourable treatment in our software decisionmaking process. The letter specifically mentions Gemma’s upcoming “all-expenses-paid package to Phuket during Australia’s cold winter”.”

“I have spoken to Gemma about this and she feels deeply offended. She says she has made no decision yet, and she believes that she is very capable of making a software choice on the merits of each product. And I do believe her. However, this letter is very troubling. Can you shed some light on this issue? Should I still allow Gemma to go to this conference? What are the pros and cons of allowing Gemma to go?”

“Can you get me all of these in a report within three days? I really do not want to read a thesis, so keep it succinct and concise, no more than 10 pages. Thanks mate.”

 

"Not answered?"


Get the Answer

write my assignment 21238

Create a new Java Project in Eclipse and complete the following requirements based on the Threads. Several threads will share a single object and contribute their individual result to the shared object. The shared object accumulates the partial results. Create a package named cs520.hw6. Using this package, create the following classes. 1. Create a class named SharedResults as follows. The class keeps track of the shared result. a. The instance (or member) private variable result (int). b. A void addToResult method which takes the given integer argument and adds it to the shared result. This method then prints to the console the name of the current thread, the value it added, and the cumulative result. Handle the synchronization issue with this method. c. The getResult method with no arguments which returns the shared result. Handle the synchronization issue with this method. 2. Create a class named LongTask which extends the Thread class. a. The instance (or member) private variables sharedData (of type SharedResults), start (integer) and end (integer). b. A single constructor which takes the above three arguments and stores them in the instance values. Also, create a name for this thread as Thread_<start>_<end> c. In the run method, add the integer numbers from start to end (both inclusive) using a for loop. Also, sleep for a random time (up to 10 milliseconds) in each iteration of the loop. After the loop, invoke the addToResult method of the shared object and provide this accumulated sum. 3. Create a Test class to test the following functionality in its main method. a. Create the SharedResults object and assign it to a variable. b. Create five LongTask objects by passing the above shared object and the start and end values for each as (1, 100), (101, 200), (201, 300), (301, 400), and (401, 500) respectively. c. Start each thread as it is created. d. Wait for all the threads to complete using the join method. e. Print the result from the shared object.

 

"Not answered?"


Get the Answer