Entries by Student

write my assignment 16515

You have been hired as a junior financial analyst by a major, international consulting firm. For your first assignment, you have been asked by a senior financial analyst to demonstrate your skills by assessing the performance of a publicly trading company; preferably one with inventories and receivables. The senior analyst expects you to evaluate at least two years’ worth of financial statements, but you know three years would be better in order to really understand the financial health of your subject company. Each week over the next five weeks, the senior analyst expects you to complete and submit at least one task associated with this assignment and to regularly discuss what you have been learning with you other junior associates, as they will be preforming the same project as you, albeit with a different company, and most likely in a different industry.   

Question Text

How does a company assess its sustainable growth rate (SGR)?

·        How does a firm use the SGR in decision making?

·        What are the consequences for a firm that grows a higher rate than its SGR?

·        What are the consequences for a firm that grows at a lower rate than its SGR?

Consider the following ideas to include in your answer:

·        Which variables are used in calculating the SGR?

·        How does a firm use the SGR in choosing a financing option?

·        How does a firm finance a growth that is higher than its SGR?

·        What is the opportunity cost for a firm that grows at a lower rate than its SGR?

 

"Not answered?"


Get the Answer

write my assignment 7138

Please answer the following question in C language.

Write code to complete PrintFactorial()’s recursive case. Sample output if userVal is 5:

5! = 5 * 4 * 3 * 2 * 1 = 120

#include <stdio.h>

void PrintFactorial(int factCounter, int factValue){

int nextCounter = 0;

int nextValue = 0;

if (factCounter == 0) { // Base case: 0! = 1

printf(“1n”);

}

else if (factCounter == 1) { // Base case: Print 1 and result

printf(“%d = %dn”, factCounter, factValue);

}

else { // Recursive case

printf(“%d * “, factCounter);

nextCounter = factCounter – 1;

nextValue = nextCounter * factValue;

/*Your solution goes here*/

}

}

int main(void) {

int userVal = 0;

userVal = 5;

printf(“%d! = “, userVal);

PrintFactorial(userVal, userVal);

return 0;

}

 

"Not answered?"


Get the Answer

write my assignment 20073

Complete 4 page APA formatted essay: Self hypnosis.

There are only few people who cannot be influenced by hypnosis. Self-hypnosis is a great means of relaxation as the brain-wave patterns are similar to natural relaxing situations. Suggestions, positive phrases, can help overcome basic personal and social phobias as they reach subconscious level. This paper concentrates on the mechanism of self-hypnosis and explains the reasons of its effectiveness.

Stress is common to everyone. daily problems usually breed negative thoughts that become repetitive. Sometimes there are difficult periods of life which make the whole life stressful. Stress means tension, alarm-state, and irritability. In most cases stress is regarded as disruption to homeostasis but stress is not always negative. In many threating situations stress helps reacting fast and launces defensive mechanisms. Stress is responsible for a fight-or-fly mechanisms which save people`s live at crucial situations (Leeher, Voolfolk et al., 2007).

There are numerous reasons which can evoke stress: troubles at work, difficult relationships, problems with children, diseases, homes change, financial problems and so on. The thoughts about these problems result in muscle tension, which further leads to more anxiety. According to Fisher, anxiety is a natural mechanism at stressful situation though many people try to avoid it at any price. Anxiety is caused by special hormones and is aimed to help us to cope with difficult tasks. If a person views anxiety or fear as weakness, he may stuck in the cycle of self-accusation and continue being stressed (2002). Getting out of stress is a complicated task once the person is overwhelmed with stressful thoughts and emotions. Most of the thoughts that irritate and cause stress are those that were repeated in our mind during long period of time or were repressed as unpleasant into subconscious. People who try to cope with stress with

 

"Not answered?"


Get the Answer

write my assignment 14330

Conflicts are a part of life and a learning experience for teams. Some conflicts are visible upfront and seem to require immediate action while others are not noticed or addressed until it’s too late. Reflect on two conflicts in your past (relationship, task, or process)—one visible that you addressed and one you chose not to address or did not notice at the time. Consider the following questions for both conflicts:

  • What type of conflict were each, and why did each take place?
  • Describe the outcomes of the two conflicts. Explain what you learned from them.
  • Apply the Wageman and Donnenfelds’ conflict intervention model to the two conflicts. What would be the outcome of the application?
  • Compare the conflicts. How do they compare relative to the thought processes used in regard to them? What made you deal with one and not the other?
  • How would you have handled them differently if you had possessed your current knowledge base?

The final paragraph of your post (3 to 4 sentences) should summarize the one or two main points that you are attempting to make in your post.

Provide a substantive (500 words) initial discussion post addressing each of the components as prompted. Justify your answers with examples, reasoning, and research.

 

"Not answered?"


Get the Answer