In: Economics
Using CARDTRONICS,
Create the Final Strategic Plan. The Final Strategic Plan contains the elements of all the previous weeks' components and incorporates instructor feedback. The strategic recommendations will be evaluated and the best options chosen for recommendation. The final strategic plan should contain:
Create a 10- to 15-slide Microsoft® PowerPoint® presentation with visuals and speaker notes to present the strategic plan, summarizing all relevant elements from previous weeks. The objective is to sell the strategic plan to investors or company directors.
Format the assignment according to APA guidelines.
In: Operations Management
which of the following is NOT true regarding inventory cost behavior as the replenishment quantity increases?
A. ordering cost decreases
B. Order cost increases
C. the # of exposures to stockout decrease
D. the holding cost increases
E. stockout cost decreases
Which of the following is true regarding manufacturing organizations' use of inventory?
A. A firm that experiences highly seasonal demand, yet produces at a constant rate, uses inventory to absorb the swings in demand.
B. A firm Amy experience constant demand, yet have seasonal production.
C. Consolidation of items stored will typically yield more favorable transportation rates.
D. warehousing and material handling can contribute significantly to distribution costs.
E. All of the above
The Newsboy Problem is:
A. a system with repetitive order quantities and instantaneous replenishment.
B. suitable for products with long life cycles
C. a system with repetitive order quantities and non-instantaneous replenishment
D. Suitable for products with a short life cycle or one-time order
Which of the following is a reason to hold inventory?
A. increase costs due to economies of scale in production
B. increase costs in purchasing and transportation
C. increase customer service
D. increase uncertainties in demand and lead times
E. none of the above
For Push vs. Pull inventory control, which of the following is true?
A. a pull system tends to optimize efficiency of the whole supply chain
B. a push system is controlled by the multiple warehouses that receive goods from a single plant
C.A pull system optimizes the warehouses but does not necessarily optimize the whole supply chain
D. A push system will always result in more inventory than a pull system
E. all of the above
In: Operations Management
In stock market crash, What were the major differences between the 1920s and the 1930s? How did the end of WWI affect the U.S. economy? Explain the relationship between Liberty Bonds, “Investing Culture”, Margin Buying, and the rapid appreciation of stock values in the 1920s? Why did the major bankers meet at J.P Morgan’s office across the street from the NYSE? What did they subsequently do? How did the “Liquidity Crisis” compound an even greater contraction in GDP after stock prices collapsed? What means did Roosevelt implement to help stabilize stock markets immediately and long-term? What effects did the Great Depression have internationally? Do you see any parallels today?
In: Economics
11. A business rule says that an employee cannot earn more than
his/her manager.
Assume that each employee row has a foreign key which refers to a
manger row.
a. Can this business rule be implemented using a fixed format
constraint?
b. Can this business rule be implemented using a trigger?
12. Triggers should be created sparingly. Why?
13. Should you use a trigger to check the uniqueness of a primary
key?
14. What is a Distributed Database system?
15. What advantages does a Distributed Database have over a
Centralized Database?
16. Why do some users require data from multiple sites in a
Distributed Database?
17. What is Horizontal Fragmentation within a DDBMS?
Note: Questions are based on DBMS (Distributed database and triggers)
In: Computer Science
The Westchester Chamber of Commerce periodically sponsors public service seminars and programs. Currently, promotional plans are under way for this year’s program. Advertising alternatives include television, radio, and newspaper. Audience estimates, costs, and maximum media usage limitations are as shown
Constraint
Television Radio Newspaper
Audience per advertisement
100,000 18,000 40,000
Cost per advertisement
$2000 $300 $600
Maximum media usage
10 20 10
I NEED EXCEL FILE WHICH HAS EXCEL SPREADSHEET AND SENSITIVITY REPORT FOR THIS PROBLEM
In: Math
You have a class named AirConditioner that has a private boolean field named on. It has method named turnOn that sets the field to true and one named turnOff that set it to false. It also has a method named isOn that returns the value of the on field. Fill in the blank to complete the turnOff method.
public void turnOff() { ______________________ }
In: Computer Science
In: Psychology
In: Operations Management
Give an example that shows the greedy algorithm for activity selection that picks the activity with the smallest start time first (and continues in that fashion) does not solve the activity selection problems correctly.
Please show your work! I will rate quality answers. Thank you.
In: Computer Science
How could metrics abuse begin to develop in an organization? Please explain.
In: Operations Management
What questions do you have about certain industries or businesses that operate in the region and what they need or want in terms of innovation, customer service, product or packaging design, management, operations, finances, sustainability, or other areas?
In: Accounting
Why didn’t Technocracy destroy the thought-world of the tool-using culture? What happens when technological world views take over the traditional world views?
In: Psychology
1. Copy the files from Assignment 1 to Assignment 3.
2. Modify the PetFoodCompany header to mention a friend function called "computeBonusBudget". This method should compute the bonus budget as netIncome() * BonusBudgetRate and this method should exist in the driver program - not the Class defintion.
3. Modify the output of the program to display the results of the computeBonusBudget.
Enter Total Sales: 1000
Enter Total Expenses: 600 Net Income = 400 Bonus Budget = 8
Here is the code:
PetFoodComp.h:
class PetFoodCompany
{
public:
PetFoodCompany();
char getQuart();
char* getCompany();
char* getDivision();
void setQuart(char quart);
void setTotalSales(float totalSales1);
void setTotalExpences(float totalExpences1);
void setCompany(char name[]);
void setDivision(char name1[]);
float getTotalSales();
float getTotalExpences();
double netIncome();
private:
char company[40];
char division[40];
static char quart;
static double BonusRate;
float totalSales;
float totalExpences;
};
PetFood.cpp:
#include <iostream>
#include <cstring>
#include "PetFoodComp.h"
using namespace std;
double PetFoodCompany::BonusRate = 0.02;
char PetFoodCompany::quart = '1';
PetFoodCompany::PetFoodCompany()
{
strcpy(company, "myCompanyName");
}
char PetFoodCompany::getQuart()
{
return quart;
}
float PetFoodCompany::getTotalSales()
{
return totalSales;
}
float PetFoodCompany::getTotalExpences()
{
return totalExpences;
}
char* PetFoodCompany::getCompany()
{
return company;
}
char* PetFoodCompany::getDivision()
{
return division;
}
void PetFoodCompany::setQuart(char quart1)
{
if (quart1 == '1' || quart1 == '2' || quart1 == '3' ||
quart1 == '4')
quart = quart1;
}
void PetFoodCompany::setTotalSales(float totalSales1)
{
totalSales = totalSales1;
}
void PetFoodCompany::setTotalExpences(float
totalExpences1)
{
totalExpences = totalExpences1;
}
void PetFoodCompany::setCompany(char name[])
{
strcpy(company, name);
}
void PetFoodCompany::setDivision(char dname[])
{
strcpy(division, dname);
}
double PetFoodCompany::netIncome()
{
return (totalSales - totalExpences);
}
PetFoodMain.cpp:
#include <iostream>
#include <cstring>
#include "PetFoodComp.h"
using namespace std;
int main()
{
double totalSales, totalExpences;
PetFoodCompany pet;
cout << "Company Name is " <<
pet.getCompany() << "\n";
cout << "Current Quarter is " <<
pet.getQuart() << "\n";
cout << "Enter Total Sales: ";
cin >> totalSales;
cout << "Enter Total Expences: ";
cin >> totalExpences;
pet.setTotalExpences(totalExpences);
pet.setTotalSales(totalSales);
cout << "Net Income: " << pet.netIncome() << "\n";
return 0;
}
In: Computer Science
A 28.5 kg block is being pulled by a force F = 245 N up along a rough incline. The coefficient of kinetic friction between the block and the incline is μk = 0.30. The block is pulled through a distace of 21.0 m. Angle is 33 degrees.
(a) Solve for the magnitude of the normal force FN (in Newtons)? Calculate the work (in Joules) done by the normal force. Pay attention to the angle in the work formula and the sign of work.
(b) What is the magnitude of the kinetic frictional force (in Newtons)? Calculate the work (in Joules) done by the kinetic frictional force. Pay attention to the angle in the work formula and the sign of work.
(c) Calculate the work (in Joules) done by the pulling force F. Pay attention to the angle in the work formula and the sign of work.
(d) The block starts from rest at the bottom of the incline. After it is pulled through a distance of 21.0 m up along the incline, what is its vertical height (in meters), hf? What is its speed (in m/s) after being pulled through 21.0 m?
(e) Add up the works (in Joules) done by all NONCONSERVATIVE Forces:
(e)
In: Physics