Questions
II. TMA Topic and requirements The global trade environment and the dynamics of competition among organizations...

II. TMA Topic and requirements

The global trade environment and the dynamics of competition among organizations are the most important topics for understanding and practicing management in today’s markets. The focus of this TMA is to select an example of a successful global organization/brand and discuss the factors that had led to its success along with the challenges that it faces in operating globally.

1. Essay Paper (50 marks out of 100) (1500 words)

Your answer should be in the form of an essay. The essay should be well organized, that is, it has an introduction (2.5 marks), body and conclusion (2.5 marks). The introduction should introduce the topic.

In the body paragraphs, the following points should be discussed:

  1. Name the global brand/organization and briefly describe its products, markets and activities.
  2. What does it mean to be a global organization? Why is your chosen organization global?
  3. Discuss the main success factors of the global brand. What is the marketing strategy, competitors and competitive advantage?
  4. Discuss the concept of globalization vs. customization and the measures taken by the global brand to recognize that offerings and communication should be adapted to local preferences and conditions. Support your answer with solid examples.
  5. Discuss the main challenges faced by the global organization in brand building such as positioning, communication, environmental change, product life cycle, brand equity, market share, consumer behavior, etc...(10 marks)
  6. Discuss the organization’s future plans, expansions and diversification.

In: Operations Management

Correct the code: import java.util.Scanner; public class Ch7_PrExercise5 { public static void main(String[] args) {   ...

Correct the code:

import java.util.Scanner;
public class Ch7_PrExercise5 {
public static void main(String[] args)
{
  
Scanner console = new Scanner(System.in);
  
double radius;
double height;
System.out.println("This program can calculate "+ "the area of a rectangle, the area "+ "of a circle, or volume of a cylinder.");
System.out.println("To run the program enter: ");
System.out.println("1: To find the area of rectangle.");
System.out.println("2: To find the area of a circle.");
System.out.println("3: To find the volume of a cylinder.");
System.out.println("-1: To terminate the program.");
choice = console.nextInt();
System.out.println();
int choice;
switch (choice == -1){
case1:
System.out.print("Enter the radius of the base and "+ "the height of the cylinder: ");
radius = console.nextDouble();
height = console.nextDouble();
System.out.println();
System.out.printf("Area = %.2f%n",circle(length, height));
break;
case3:
doublelength, width;
System.out.print("Enter the radius of the circle: ");
radius = console.nextDouble();
System.out.println();
System.out.printf("Area = %.2f%n", rectangle(radius));
break;
case2:
System.out.print("Enter the length and the width "+ "of the rectangle: ");
length = console.nextDouble();
width = console.nextDouble();
System.out.println();
System.out.printf("Volume = %.2f%n",cylinder(radius, height));
break;
default:
System.out.println("Invalid choice!");
}
switch(choice){
System.out.println("To run the program enter: ");
System.out.println("2: To find the area of a circle.");
System.out.println("1: To find the area of rectangle.");
System.out.println("3: To find the volume of a cylinder.");
System.out.println("-1: To terminate the program.");
choice = console.nextInt();
System.out.println();
}
public static double rectangle(doublel,doublew)
{
returnl * r;}
public static double circle(doubler)
{
returnMath.PI * r * w;
}
public static double cylinder(doublebR,doubleh)
{
returnMath.PI * bR * bR * l;
}

In: Computer Science

Explain three strategies to clean and validate data. Provide examples of when each strategy would be...

  • Explain three strategies to clean and validate data.
  • Provide examples of when each strategy would be used.

In: Computer Science

I have a working code for a dice game. What is the best way to add...

I have a working code for a dice game. What is the best way to add coding to keep track how many points each player makes? When they tie both players gets no points. When they reach to 100 the game ends or unless the player quit. How would I make it work?

<!Doctype html>
<html>
<head>

<meta charset="UTF-8">
<title>Dice Game</title>
<link rel="stylesheet" type="text/css" href="dice.css">
</head>
<body>
<div class="row" align="center">
<div class="col-4">
<h3>Your Dice</h3>
<img src="diceimages/m1.png" width="100" height="100" alt="roll: 1" id="mydice1"/>
<img src="diceimages/m1.png" width="100" height="100" alt="roll: 1" id="mydice2"/>
</div>

<div class="col-4">
<h3>Opponent's Dice</h3>
<img src="diceimages/o1.png" width="100" height="100" alt="roll: 1" id="opponentdice1"/>
<img src="diceimages/o1.png" width="100" height="100" alt="roll: 1" id="opponentdice2"/>
<div id="enemy_score"></div>
</div>

<div class="col-4" align="center">
<img src="diceimages/goodluck.png" width="150" height="150" alt="roll: 1" id="message"/><br>
<button class="roll" onClick="throwdice()">Roll Dice</button>
</div>
</div>

<script>
// var sides = ["m1.png", "m2.png", "d3.png", "d4.png", "d5.png", "d6.png"];
var side_alt = ["roll: 1", "roll: 2", "roll: 3", "roll: 4", "roll: 5", "roll: 6"];

function throwdice(){
// Create Random Number between 1 and 6
var rand1 = Math.round(Math.random()*5) + 1;  
var rand2 = Math.round(Math.random()*5) + 1;
var rand3 = Math.round(Math.random()*5) + 1;
var rand4 = Math.round(Math.random()*5) + 1;

// Set Images src
document.getElementById("mydice1").src = "diceimages/m" + rand1 + ".png";
document.getElementById("mydice2").src = "diceimages/m" + rand2 + ".png";
document.getElementById("opponentdice1").src = "diceimages/o" + rand3 + ".png";
document.getElementById("opponentdice2").src = "diceimages/o" + rand4 + ".png";

//Set Images alt
document.getElementById("mydice1").alt = side_alt[rand1];
document.getElementById("mydice2").alt = side_alt[rand2];
document.getElementById("opponentdice1").alt = side_alt[rand3];
document.getElementById("opponentdice2").alt = side_alt[rand4];

who_won(rand1,rand2,rand3,rand4);
}

function who_won(rand1,rand2,rand3,rand4){
let player_points = rand1 + rand2 + 2;
let enemy_points = rand3 + rand4 + 2;
let result = winner(player_points,enemy_points);
document.getElementById("message").innerHTML = result;
}

//If Statements
function winner(player, enemy) {
if (player < enemy) {
return "diceimages/youloss.png";

}  
if (enemy < player) {
return "diceimages/youwon.png"
}
if (player == enemy) {
return "diceimages/equal.png"
}
}
</script>
</body>
</html>

In: Computer Science

Explain how the four P's of marketing where implemented in the launch of the Apple Air...

Explain how the four P's of marketing where implemented in the launch of the Apple Air Pods.
Report the product's success since the launch and how the four P's can be used in the future.

In: Operations Management

The following data represent crime rates per 1000 population for a random sample of 46 Denver...

The following data represent crime rates per 1000 population for a random sample of 46 Denver neighborhoods.†

63.2 36.3 26.2 53.2 65.3 32.0 65.0
66.3 68.9 35.2 25.1 32.5 54.0 42.4
77.5 123.2 66.3 92.7 56.9 77.1 27.5
69.2 73.8 71.5 58.5 67.2 78.6 33.2
74.9 45.1 132.1 104.7 63.2 59.6 75.7
39.2 69.9 87.5 56.0 154.2 85.5 77.5
84.7 24.2 37.5 41.1

(a) Use a calculator with mean and sample standard deviation keys to find the sample mean x and sample standard deviation s. (Round your answers to one decimal place.)

x = crimes per 1000 people
s = crimes per 1000 people


(b) Let us say the preceding data are representative of the population crime rates in Denver neighborhoods. Compute an 80% confidence interval for μ, the population mean crime rate for all Denver neighborhoods. (Round your answers to one decimal place.)

lower limit     crimes per 1000 people
upper limit     crimes per 1000 people


(c) Suppose you are advising the police department about police patrol assignments. One neighborhood has a crime rate of 61 crimes per 1000 population. Do you think that this rate is below the average population crime rate and that fewer patrols could safely be assigned to this neighborhood? Use the confidence interval to justify your answer.

Yes. The confidence interval indicates that this crime rate is below the average population crime rate.

Yes. The confidence interval indicates that this crime rate does not differ from the average population crime rate.     

No. The confidence interval indicates that this crime rate is below the average population crime rate.

No. The confidence interval indicates that this crime rate does not differ from the average population crime rate.


(d) Another neighborhood has a crime rate of 75 crimes per 1000 population. Does this crime rate seem to be higher than the population average? Would you recommend assigning more patrols to this neighborhood? Use the confidence interval to justify your answer.

Yes. The confidence interval indicates that this crime rate does not differ from the average population crime rate.

Yes. The confidence interval indicates that this crime rate is higher than the average population crime rate.     

No. The confidence interval indicates that this crime rate is higher than the average population crime rate.

No. The confidence interval indicates that this crime rate does not differ from the average population crime rate.


(e) Compute a 95% confidence interval for μ, the population mean crime rate for all Denver neighborhoods. (Round your answers to one decimal place.)

lower limit     crimes per 1000 people
upper limit     crimes per 1000 people


(f) Suppose you are advising the police department about police patrol assignments. One neighborhood has a crime rate of 61 crimes per 1000 population. Do you think that this rate is below the average population crime rate and that fewer patrols could safely be assigned to this neighborhood? Use the confidence interval to justify your answer.

Yes. The confidence interval indicates that this crime rate is below the average population crime rate.

Yes. The confidence interval indicates that this crime rate does not differ from the average population crime rate.   

No. The confidence interval indicates that this crime rate is below the average population crime rate.

No. The confidence interval indicates that this crime rate does not differ from the average population crime rate.


(g) Another neighborhood has a crime rate of 75 crimes per 1000 population. Does this crime rate seem to be higher than the population average? Would you recommend assigning more patrols to this neighborhood? Use the confidence interval to justify your answer.

Yes. The confidence interval indicates that this crime rate does not differ from the average population crime rate.

Yes. The confidence interval indicates that this crime rate is higher than the average population crime rate.     

No. The confidence interval indicates that this crime rate is higher than the average population crime rate.

No. The confidence interval indicates that this crime rate does not differ from the average population crime rate.


(h) In previous problems, we assumed the x distribution was normal or approximately normal. Do we need to make such an assumption in this problem? Why or why not? Hint: Use the central limit theorem.

Yes. According to the central limit theorem, when n ≥ 30, the x distribution is approximately normal.

Yes. According to the central limit theorem, when n ≤ 30, the x distribution is approximately normal.     

No. According to the central limit theorem, when n ≥ 30, the x distribution is approximately normal.

No. According to the central limit theorem, when n ≤ 30, the x distribution is approximately normal.

In: Math

Suppose a computer using direct mapped cache has 232 bytes of main memory and a cache...

  1. Suppose a computer using direct mapped cache has 232 bytes of main memory and a cache of 1024 blocks, where each block contains 32 bytes.
    1. [2] How many blocks of main memory does this computer have?
    2. [4] Show the format of a memory address as seen by cache; be sure to include the field names as well as their sizes.
    3. [3] Given the memory address 0x00001328, to which cache block will this address map? (Give you answer in decimal.)
  2. A fully associative mapped cache has 8 blocks, with 16 bytes per block. Main memory is 128K bytes.
    1. [3] Show the format for a main memory address, assuming memory is byte addressable. Include the field names as well as their sizes.
    2. [3] Show the format for a main memory address, assuming memory is word addressable, where a word is 32 bits. Include the field names as well as their sizes.

In: Computer Science

Q1: Discuss the unified process and its lifecycle regarding software development methodology for object-oriented development. Q1:...

Q1: Discuss the unified process and its lifecycle regarding software development methodology for object-oriented development. Q1: Discuss the unified process and its lifecycle regarding software development methodology for object-oriented development.

In: Computer Science

In your post please discuss the following: If a taxpayer sells or exchanges property, what are...

In your post please discuss the following:

  1. If a taxpayer sells or exchanges property, what are items that could be included in the calculation of the "amount realized"?

  2. In your own words, explain "adjusted basis", what affects adjusted basis, and the reason adjusted basis is important for determining one's tax liability?

  3. What is meant by "realized gain" versus "recognized gain"

  4. Briefly discuss how the tax status (e.g., capital, ordinary, Section 1231 business use) of an asset affect the tax treatment of a realized gain or realized loss.

In: Accounting

Algorithm problem 6 [Problem3-3] a Rank the following functions by order of growth; that is,find an...

Algorithm problem

6 [Problem3-3]
a Rank the following functions by order of growth; that is,find an arrangement g1,g2,...,g30 of the functions satisfying g1 ∈ Ω(g2),g2 ∈ Ω(g3),...,g29 ∈ Ω(g30). Partition your list into equivalence classes such that ƒ(n) and g(n) are in the same class if and only if ƒ(n)∈Θ(g(n)).

- lg(lg∗ n)    - 2^(lg∗ n)    -( sqrt(2))^(lg n)    - n^2 - n!    - (lg n)! - (3/2)^n    - n^3    - lg^(2)*n    -    lg(n!)    - 2^2^n - n^(1/ lg n) - ln ln n    - lg∗ n - n*2^n - n ^(lg lg n) - ln n - 1 - 2^(lg n)    - (lg n)^(lg n)    - e^n - n    - 4^(lg n)    - (n+ 1)!    - (sqrt(lg n))    - lg ∗(lg n)    - 2(sqrt(2 lg n)) - n    - 2n    - n lg n    - 2^((2)^(n+1))

b. Give an example of a single nonnegative function ƒ(n) such that for all functions g(n) in part (a), ƒ(n) is neither in O(g(sub(i))(n)) nor in Ω(g(n)).

In: Computer Science

Ms. Saikley, AM at International BusinessServices, is wondering whether to vote to have a holiday office...

Ms. Saikley, AM at International BusinessServices, is wondering whether to vote to have a holiday office party this December. She has just spoken with the sales manager, who told her about an incident that happened at another company last holiday season. It seems that the other organization decided to have an “employees only” office party on Friday night from 5 to 8 p.m. at a local downtown restaurant. Two weeks later, the wife of one of the workers burst into the office area and began shouting accusations at an office worker who she thought was having an affair with her husband. It was embarrassing to everyone in the organization and most agreed it was unnecessary. The tantrum became loud and abusive on both parties parts—the wife making accusations and the office worker denying them. The situation became pretty tense at this point.

Questions:

1. If you were the AM of that organization, how would you have reacted to the situation just described? The office worker would have reported to you, and you were the first manager on the scene.

2. Should a policy be written covering office parties? If so, what would be your input on this policy? Should a policy be written concerning visitors who enter the work-place (even family members) and create a disturbance?

In: Operations Management

Write a Java method that takes an array of char and a String as input parameters...

Write a Java method that takes an array of char and a String as input parameters and and returns an boolean. The method returns true if we can find the input string inside the array by starting at any position of the array and reading either forwards or backwards.

In: Computer Science

“Safety in the workplace is good business.” Justify this statement with information from this chapter. “The...

  1. “Safety in the workplace is good business.” Justify this statement with information from this chapter.
  1. “The cost of employing women in management is greater than the cost of employing men.” List reasons on both sides of this issue to defend both sides.

In: Psychology

The owner of a development site is considering an offer from a parking lot operator to...

The owner of a development site is considering an offer from a parking lot operator to rent the parcel for the next five years, while the development is being planned and approved. The operator has offered to pay $65,000 today or an annuity of $20,000 at the end of each of the next 5 years. Which payment method should the site owner accept if her required rate of return is 15 percent?

In: Finance

Upton Umbrellas has a cost of equity of 11.9 percent, the YTM on the company's bonds...

Upton Umbrellas has a cost of equity of 11.9 percent, the YTM on the company's bonds is 6.4 percent, and the tax rate is 40 percent. The company's bonds sell for 103.5 percent of par. The debt has a book value of $417,000 and total assets have a book value of $955,000. If the market-to-book ratio is 2.83 times, what is the company's WACC?

Multiple Choice: 8.31% 5.62% 10.12% 9.84% 8.44%

In: Finance