What social media tools do marketers commonly use? A survey by Social Media Examiner of B2B marketers, marketers that primarily target businesses, and B2C marketers, marketers that primarily target consumers, reported that 344 (88%) of B2B marketers and 373 (61%) of B2C marketers commonly use LinkedIn as a social media tool. The study also revealed that 239 (61%) of B2B marketers and 324 (53%) of B2C marketers commonly use Google ++ plus as a social media tool. (Data extracted from 2014 Social Media Marketing Industry Report, bit.ly/1e896pD .)
Suppose the survey was based on 390 B2B marketers and 610 B2C marketers.
a. At the 0.05 level of significance, is there evidence of a difference between B2B marketers and B2C marketers in the proportion that commonly use LinkedIn as a social media tool?
b. Find the p-value in (a) and interpret its value.
c. At the 0.05 level of significance, is there evidence of a difference between B2B marketers and B2C marketers in the proportion that commonly use Google ++ plus as a social media tool?
SHOW EXCEL FUNCTIONS NEEDED FOR ANSWERS
In: Math
(Weighted average cost of capital) Crypton Electronics has a capital structure consisting of
3939
percent common stock and
6161
percent debt. A debt issue of
$1 comma 0001,000
par value,
6.36.3
percent bonds that mature in
1515
years and pay annual interest will sell for
$974974.
Common stock of the firm is currently selling for
$29.8429.84
per share and the firm expects to pay a
$2.252.25
dividend next year. Dividends have grown at the rate of
4.94.9
percent per year and are expected to continue to do so for the foreseeable future. What is Crypton's cost of capital where the firm's tax rate is
3030
percent?
a. The after-tax cost of debt is
(Round to two decimal places.)
b. The cost of common equity is
(Round to two decimal places.)
c. Crypton's cost of capital is
(Round to three decimal places.)
In: Accounting
Write a mail merge application titled EmailMerge.java
You will use two files for this program. The first is a text file that contains a template letter.
template.txt
[ Dear <>,
Because you are <> years old and <>, we have a free gift for you. You have absolutely nothing to buy; just pay the shipping and handling charge of $9.99.
To claim your gift, call us immediately.
Thank you,
Office of Claims Department ]
The tags <>, <>, and <> are placeholders for the person’s name, age, and gender.
The second file contains the name, age, and gender information of people separated by spaces on each line.
people.txt
[ John 35 male
Sally 28 female
Megan 55 female
Megan 22 female
Sally 18 female
Megan 19 female ]
Your program will read the two files and print out the letter with the placeholders replaced by the actual values from the second file. Save each personalized letter to files. For example John.txt, Sally.txt, and Megan.txt, and so on.
Sample output for John
Dear John,
Because you are 35 years old and male, we have a free gift for you. You have absolutely nothing to buy; just pay the shipping and handling charge of $9.99.
To claim your gift, call us immediately.
Thank you,
Office of Claims Department
If two people have the same name, create a new file by appending an index for the new file. For example, if there was another John in people.txt file, you will create John-1.txt for the new personalized letter.Assume that all the files that you read/write are in the same directory or the project build path of EmailMerge.java.
Ensure that your programs work well by checking them against different test cases. At the minimum submit three new and different test case reports with your program submission.
Both txt files must be used. For each individual person there must be a new file created for them. The program should be reading the names directly from people.txt and appropriately assigning them to the template, there shouldn't be any user input.
Please post screenshots of code, output and package explorer.
Code must include comments to explain function of each section.
In: Computer Science
Create a program to input the length and width of a rectangle and calculate and print the perimeter and area of the rectangle. To do this you will need to write a Rectangle class and a separate runner class. Your program should include instance variables, constructors, an area method, a perimeter method, a toString method, accessor and mutator methods, and user input. Your runner class should include 3 Rectangle objects. One default rectangle, one coded rectangle, and one user input rectangle. All methods should be tested in the runner class.
In: Computer Science
--In the GSS, the original race variable was coded as: whites=1, blacks=2, others=3. Which of the following possibilities is the best way to recode this variable into a dichotomy with “white” as the reference category?
a.) whites=1, non-whites=2
b.) non-whites=1, whites=2
c.) whites=0, non-whites=1
d.) whites=-1, non-whites=+1
-- Another word for the reference group is:
a.) the omitted variable
b.) the omitted slope
c.) the omitted category
d.) the omitted constant
-- Here is a regression equation using GSS2008 data, people aged 21 to 29, where men were coded as 0, and women were coded as 1:
# OF TIMES GO TO BAR PER MONTH = 4.00 – 1.73 (SEX)
If women had been coded as 0, and men had been coded as 1, the regression equation would have been:
a.) # OF TIMES GO TO BAR PER MONTH = 4.00 – 1.73 (SEX)
b.) # OF TIMES GO TO BAR PER MONTH = 2.27 + 1.73 (SEX)
c.) # OF TIMES GO TO BAR PER MONTH = 5.73 – 1.73 (SEX)
d.) # OF TIMES GO TO BAR PER MONTH = 4.00 – 2.27 (SEX)
--If we wanted to use the GSS variable HEALTH (self-assessment of health: Excellent, Good, Fair, or Poor) as an independent variable in a regression model using a dummy approach, how many independent variables would we have to create (not including the reference category)?
a.) None, this variable is perfectly fine as is to use in a regression equation.
b.) 2
c.) 3
d.) 4
--A researcher creates a set of four reference-group variables to include in a regression. What can you assume about the variable from which she built these variables?
a.) It likely had three categories
b.) It likely had four categories
c.) It likely had five categories
d.) It likely had six categories
--- With which of the following variables would you most likely not use the reference-grouping technique?
a.) a nominal-level variable
b.) an ordinal-level variable
c.) a ratio-level variable
d.) all are equally likely
In: Math
Children can be greatly impacted by addiction in a family. What are at least three ways in which they can be impacted?
Provide short answers of 100-150 words for the following question. Do not exceed 200 words for your response. Include a minimum of one scholarly resource in addition to the course textbook.
In: Psychology
I need to display the questions that the user answered total, wrong and right as well as the average percentage they got correct of the following code please!
public class TestCode { public static void main(String[] args) { String choice = "Yes"; Random random = new Random(); Scanner scanner = new Scanner(System.in); while(!choice.equals("No")){ int randomInt = 2 * (random.nextInteger(5) + 1); System.out.println(randomInteger); System.out.print("Want another random number (Yes / No)? "); choice = scanner.next(); } } }
In: Computer Science
Consider a client-application that collects and computes the average of an integer (eg. stock price/value) collected from a number (eg 20) remote servers.
Question 1.
Determine how long time it will take the client to deliver an answer to its user, assuming serial requests to each server, and 1) an average response time of 200 ms, 2) 10 ms, and 3) 1 ms.
Question 2.
Compare this to the situation where all values are present in the local memory of the client.
Question 3.
What consequences does that have on the information that one computer of a distributed systems knows about the others?
Question 4.
What consequence does it have on the way we design a distributed system, and make use of remote access?
In: Computer Science
into intermediate goods and final products, and that deliver those final products to customers.
True False
2. The challenges of the global supply chain include:
3. Describe the bullwhip or whiplash effect in the supply chain. How do you propose
to minimize its impact in your individual project?
4. Forward integration activities are a way for a company to address specific situations
in the supply chain, but also to engage in activities that are substantially different from its core
business. Cite examples of such activities for your individual project.
5. Modularization is a product design approach in which the product is assembled
from a set of standardized constituent units.
True False
6. Explain the reasons for the complexity of the strategic planning for global facilities
network orientation. How do you address those in your individual project?
7.Apply to your individual project the three basic options for a company to focus its
global facility network: market focus, product family focus, process focus.
8. Discuss the interaction between marketing requirements and manufacturing complexity
with regard to your individual project. Relate to question 7. above.
9. One of the ways to exploit global sourcing is by switching among suppliers globally.
True False
10. Why does an operations and logistics manager need to worry about exchange rate
fluctuations? Illustrate with your individual project.
11. The factors a firm needs to consider in assessing its operating exposure to real
exchange rate shocks are:
12. New information technologies integrate globalization by:
In: Operations Management
C++ QUESTION ABOUT FIXING CODE AND RUNNING TESTS:
class SpeakerSystem {
public:
void vibrateSpeakerCones(unsigned signal) const {
cout << "Playing: " << signal << "Hz sound..."
<< endl;
cout << "Buzz, buzzy, buzzer, bzap!!!\n";
}
};
class Amplifier {
public:
void attachSpeakers(const SpeakerSystem& spkrs)
{
if(attachedSpeakers)
cout << "already have speakers attached!\n";
else
attachedSpeakers = &spkrs;
}
void detachSpeakers() { // should there be an "error" message if
not attached?
attachedSpeakers = nullptr;
}
void playMusic( ) const {
if (attachedSpeakers)
attachedSpeakers -> vibrateSpeakerCones(440);
else
cout << "No speakers attached\n";
}
private:
SpeakerSystem* attachedSpeakers = nullptr;
};
QUESTION:
In the code above, you will find a problem compiling. What is it? Note what the method attachSpeakers is trying to do with the address of spkrs. Why is this a problem?
What do you think is the right way to fix it? There is more than one way and how you want to fix it depends on what you think the relationship will be between the amplifier and the speaker system. Know why you choose to pick one solution or the other is at least as important as making a change that gets the code working.
Create some SpeakerSystem and Amplifier variables.
Test by playing music on various speaker system configurations
connected at various times to different speaker systems and trying
to play some amps without speakers and by attaching another set of
speakers to an already complete system (complete here means has
speakers already attached - we're skipping the part about audio
input devised.)
How do you cause a speaker system to become attached to an
amplifier?
In a one-way association, the associated object (SpeakerSystem
here) does not need to know anything about or communicate with the
object it is associated with (Amplifier here).
If either of these situations is needed, then two-way association
would be required (one-way would be the wrong design
decision).
Are there any issues that might need to be considered that a
one-way association cannot deal with in this problem?
In: Computer Science
Algorithm problem
7 [Problem3-4] Let ƒ(n) and g(n) be asymptotically positive functions. Prove or disprove each of the following conjectures.
e ƒ(n)∈O((ƒ(n))^2).
f ƒ(n)∈O(g(n)) implies g(n)∈Ω(ƒ(n)).
g ƒ(n)∈Θ(ƒ(n/2)).
h ƒ(n)+ o(ƒ(n))∈Θ(ƒ(n)).
In: Computer Science
Discuss how a stack buffer overflow attack is implemented.
In: Computer Science
(Individual or component costs of capital) Compute the cost of capital for the firm for the following:
a. Currently bonds with a similar credit rating and maturity as the firm's outstanding debt are selling to yield
7.237.23
percent while the borrowing firm's corporate tax rate is
3434
percent.
b. Common stock for a firm that paid a
$1.041.04
dividend last year. The dividends are expected to grow at a rate of
5.75.7
percent per year into the foreseeable future. The price of this stock is now
$24.5824.58.
c. A bond that has a
$1 comma 0001,000
par value and a coupon interest rate of
11.411.4
percent with interest paid semiannually. A new issue would sell for
$1 comma 1491,149
per bond and mature in
2020
years. The firm's tax rate is
3434
percent.
d. A preferred stock paying a dividend of
7.47.4
percent on a
$9090
par value. If a new issue is offered, the shares would sell for
$83.0783.07
per share.
In: Accounting
In: Finance
Assignment specification — Case Study :IKEA Operations Management
IKEA is the one of the most successful furniture retailer globally. With 276 stores in 36 countries, they have managed to develop their own special way of selling furniture. Their stores’ layout means customers often spend two hours in the store – far longer than in rival furniture retailers. IKEA’s philosophy goes back to the original business, started in the 1950s in Sweden by Ingvar Kamprad. He built a showroom on the outskirts of Stockholm where land was cheap and simply displayed suppliers’ furniture as it would be in a domestic setting. Increasing sales soon allowed IKEA to start ordering its own self-designed products from local manufacturers. But it was innovation in its operations that dramatically reduced its selling costs. These included the idea of selling furniture as self-assembly flat packs, which reduced production and transport costs, and its ‘showroom-warehouse’ concept, which required customers to pick the furniture up them-selves from the warehouse (which reduced retailing costs). Both operating principles are still the basis of IKEA’s retail operations process today.
Stores are designed to facilitate the smooth flow of customers, from parking, moving through the store itself, to ordering and picking up goods. At the entrance to each store large notice boards provide advice to shoppers. For young children, there is a supervised children’s play area, a small cinema, and a parent and baby room so parents can leave their children in the supervised play area for a time. Parents are recalled via the loudspeaker system if the child has any problems. IKEA ‘allow customers to make up their minds in their own time’ but ‘information points’ have staff who can help. All furniture carries a ticket with a code number which indicates its location in the warehouse. (For larger items customers go to the information desks for assistance.) There is also an area where smaller items are displayed, and can be picked directly. Customers then pass through the warehouse where they pick up the items viewed in the showroom. Finally, customers pay at the checkouts, where a ramped conveyor belt moves purchases up to the checkout staff. The exit area has service points, and a loading area that allows customers to bring their cars from the car park and load their purchases. Behind the public face of IKEA’s huge stores is a complex worldwide network of suppliers, 1,300 direct suppliers, about 10,000 sub-suppliers, and wholesale and transport operations, including 26 distribution centres. This supply network is vitally important to IKEA. From purchasing raw materials, right through to finished products arriving in its
customers’ homes, IKEA relies on close partnerships with its suppliers to achieve both ongoing supply efficiency and new product development. However, IKEA closely controls all supply and development activities from IKEA’s hometown of Älmhult in Sweden. But success brings its own problems and some customers became increasingly frustrated with overcrowding and long waiting times. In response IKEA launched a programe ‘designing out’ the bottlenecks. The changes included:
IKEA spokeswoman Nicki Craddock said: ‘We know people love our products but hate our shopping experience. We are being told that by customers every day, so we can’t afford not to make changes. We realized a lot of people took offence at being herded like sheep on the long route around stores. Now if you know what you are looking for and just want to get in, grab it and get out, you can.’ Operations management is a vital part of IKEA’s success IKEA shows how important operations management is for its own success and the success of any type of organization.
Of course, IKEA understands its market and its customers. But, just as important, it knows that the way it manages the network of operations that design, produce and deliver its products and services must be right for its market. No organization can survive in the long term if it cannot supply its customers effectively. And this is essentially what operations management is about – designing, producing and delivering products and services that satisfy market requirements. For any business, it is a vitally important activity. Consider just some of the activities that IKEA’s operations managers are involved in:
‑ Arranging the store’s layout to give a smooth and effective flow of customers (called process design).
‑ Designing stylish products that can be flat-packed efficiently (called product design).
‑ Making sure that all staff can contribute to the company’s success (called job design).
‑ Locating stores of an appropriate size in the most effective place (called supply network design).
‑ Arranging for the delivery of products to stores (called supply chain management).
‑ Coping with fluctuations in demand (called capacity management).
‑ Maintaining cleanliness and safety of storage areas (called failure prevention).
‑ Avoiding running out of products for sale (called inventory management).
‑ Monitoring and enhancing quality of service to customers (called quality management).
‑ Continually examining and improving operations practice (called operations improvement).
And these activities are only a small part of IKEA’s total operations management effort. But they do give an indication, first of how operations management should contribute to the business’s success, and second, what would happen if IKEA’s operations managers failed to be effective in carrying out any of its activities. Yet, although the relative importance of these activities will vary between different organizations, operations managers in all organizations will be making the same type of decision (even if what they decide is different).
Questions: Total 20 Marks
In: Operations Management