Bierce Corporation has two manufacturing departments--Machining and Finishing. The company used the following data at the beginning of the year to calculate predetermined overhead rates:
Machining | Finishing | Total | ||||
Estimated total machine-hours (MHs) | 4,000 | 6,000 | 10,000 | |||
Estimated total fixed manufacturing overhead cost | $ | 10,000 | $ | 33,000 | $ | 43,000 |
Estimated variable manufacturing overhead cost per MH | $ | 2.80 | $ | 6.00 | ||
During the most recent month, the company started and completed two jobs--Job B and Job K. There were no beginning inventories. Data concerning those two jobs follow:
Job B | Job K | |||||
Direct materials | $ | 16,000 | $ | 8,200 | ||
Direct labor cost | $ | 22,600 | $ | 2,700 | ||
Machining machine-hours |
2,700 | 1,300 | ||||
Finishing machine-hours | 600 | 5,400 | ||||
Required:
a. Assume that the company uses a plantwide predetermined manufacturing overhead rate based on machine-hours. Calculate that overhead rate. (Round your answer to 2 decimal places.)
b. Assume that the company uses a plantwide predetermined manufacturing overhead rate based on machine-hours. Calculate the amount of manufacturing overhead applied to Job B. (Do not round intermediate calculations.)
c. Assume that the company uses a plantwide predetermined manufacturing overhead rate based on machine-hours. Calculate the amount of manufacturing overhead applied to Job K. (Do not round intermediate calculations. Round your answer to the nearest whole dollar amount.)
d. Assume that the company uses departmental predetermined overhead rates with machine-hours as the allocation base in both departments. What is the departmental predetermined overhead rate in the Machining department? (Round your answer to 2 decimal places.)
e. Assume that the company uses departmental predetermined overhead rates with machine-hours as the allocation base in both production departments. What is the departmental predetermined overhead rate in the Finishing department? (Round your answer to 2 decimal places.)
f. Assume that the company uses departmental predetermined overhead rates with machine-hours as the allocation base in both production departments. How much manufacturing overhead will be applied to Job B? (Do not round intermediate calculations.)
g. Assume that the company uses departmental predetermined overhead rates with machine-hours as the allocation base in both production departments. How much manufacturing overhead will be applied to Job K?. (Do not round intermediate calculations.)
In: Accounting
Price indicates and reflects product value, prestige, quality, etc. It needs to fit with the brand and image and make sense for the target market. there are many different ways to price like bundling or freemium or subscription or odd pricing and more. Do some online searching and find a business with a unique pricing structure. Discuss why or why not you think the strategy is a good idea.
**site source**
In: Operations Management
how did psychology develop as a science? Please discuss how either 1) the rules of scientific method, 2) experiments, 3) psychological research or investigation, 4) ethics in animal research, or 5) human subjects contributed to the development of psychology. Please use at least 2 of the above topics in your discussion
Please answer in 250 words or less, no copy pasting from other websites
In: Psychology
You are given an undirected graph A. The problem P asks, if there exists a cycle that contains more than half of the nodes in graph A? Is this problem in NP(nondeterministic polynomial time)? How is it related to the Hamiltonian cycle problem?
Construct your example in python.
Input: Graph A as either an edge list or adjacent list.
Output: Yes or No. If the output is yes, display the cycle as a
sequence of nodes.
In: Computer Science
Explain one application of portable CMM(Coordinate Measuring
Machine) in the automobile field with
details.
In: Mechanical Engineering
identify the social issues that have changed urban planning from a study of architectural and engineering outputs to a study of human needs and the planning response.
In: Psychology
Which of the following are not typical problems of traditional costing approaches (as compared to Activity-Based Costing)?
Under-costing of low-volume, high-complexity products
Over-costing of high-volume, low-complexity products
Over-producing unprofitable products
Under-producing profitable products
None of the above
Under variable costing, Gross Profit is equal to:
Sales - Variable Costs
Sales - Fixed Costs
Sales - Variable Costs - Fixed Costs
Contribution Margin - Fixed Costs
Variable costing does not calculate Gross Profit
Which of the following is not a factor to consider when deciding whether to accept a special order?
Whether this order will hurt the brand name of the company
Whether other potential orders would be more profitable
Whether additional fixed costs would need to be incurred
Whether the offered price is sufficient to cover prime costs and fixed overhead allocated
All of the above
If a company has sufficient excess capacity, which of the following costs are relevant to the decision to make or buy a new product?
Direct materials
Variable overhead
Fixed overhead
Costs of buying from the outside vendor
A, B, and D only
In: Accounting
why is the marketing plan one of the most important elements of the marketing process? Be specific. Provide an example.
In: Operations Management
please write the code in C not c++, and not to use Atoi or parseint to parse the string, Thank you.
#include <stdio.h>
#include <stdbool.h>
/*
* The isinteger() function examines the string given as its first
* argument, and returns true if and only if the string represents a
* well-formed integer. A well-formed integer consists only of an
* optional leading - followed by one or more decimal digits.
* Returns true if the given string represents an integer, false
* otherwise.
*/
bool isinteger(char *str);
/*
* The parseint() function parses a well-formed string representation of
* an integer (one which would return true from isinteger()) and returns
* the integer value represented by the string. For example, the string
* "1234" would return the value 1234. This function does not need to
* handle badly-formed strings in any particular fashion, its operation
* on badly-formed strings is undefined.
* Returns the integer value stored in the given string.
*/
int parseint(char *str);
/*
* The main function is where C programs begin.
* This function parses its arguments and returns the value they
* represent. Its arguments are either:
* - A single argument representing an integer
* - Three arguments, where the first and third are integers and the
* second is an operator to be performed on those integers
* Remember that the argument in argv[0] is the name of the program, so
* a program passed exactly one argument on the command line will
* receive _two_ arguments: its name in argv[0] and the provided
* argument in argv[1].
* Arguments:
* argc - The number of arguments received
* argv - The arguments received as an array of C strings
*
* Returns 0 if the arguments are well-formed and the calculation could
* be performed, non-zero otherwise.
*/
int main(int argc, char *argv[]) {
/* Your main program logic should go here, with helper logic in the
* functions isinteger() and parseint(), which you can place below
* the closing brace of main() */
return 0;
}
In: Computer Science
Complete the implementation of the Die class. Note that the Die class uses an array to represent the faces of a die.
You need to complete the no-argument constructor and the two methods compareTo and equals.
Code:
import java.util.Arrays;
import java.util.Objects;
import java.util.Random;
/*
* NOTE TO STUDENTS:
* The constructor that you need to complete can be found on line
47.
*
* The two methods you need to complete can be found at the end of
this file.
*/
public class Die implements Comparable<Die> {
/**
* A random number generator to simulate rolling the
die.
* DO NOT CHANGE THE DECLARATION OF rng. THE UNIT TESTS
RELY
* ON BEGIN ABLE TO ACCESS THE RANDOM NUMBER
GENERATOR.
*/
Random rng = new Random();
/**
* The array of face values.
*/
private int[] faces;
/**
* The current value of the die.
*/
private int value;
/**
* The number of faces on a die.
*/
public static int NUMBER_OF_FACES = 6;
/*
* You need to implement the no-argument constructor
below, and the
* methods compareTo and equals found at the end of the
class.
*/
public Die() {
}
private static boolean isInAscendingOrder(int[] a)
{
for (int i = 1; i < a.length;
i++) {
if (a[i] <
a[i - 1]) {
return false;
}
}
return true;
}
public Die(int[] faces) {
if (faces.length != 6) {
throw new
IllegalArgumentException();
}
if (!Die.isInAscendingOrder(faces))
{
throw new
IllegalArgumentException();
}
this.faces = Arrays.copyOf(faces,
NUMBER_OF_FACES);
this.value = this.faces[0];
}
public void setValueToFace(int face) {
if (face < 0 || face >=
NUMBER_OF_FACES) {
throw new
IllegalArgumentException();
}
this.value =
this.faces[face];
}
public int value() {
return this.value;
}
public int roll() {
int idx =
rng.nextInt(Die.NUMBER_OF_FACES);
this.value = this.faces[idx];
return this.value;
}
@Override
public int hashCode() {
return Objects.hash(this.value,
this.faces);
}
/*
* You need to implement the compareTo and equals
methods below.
*
*/
@Override
public int compareTo(Die other) {
}
@Override
public boolean equals(Object obj) {
// The method Arrays.equals may be
useful for helping
// to implement this method.
}
}
In: Computer Science
Java.
Part 1 of 4 - Amusement Park Programming Project
Requirements:
Class:
Ticket – models admission tickets.
Instance Fields:
Constructors and Methods:
In: Computer Science
How to do this in Python (using Lists):
Create a python program that allows a user to display, sort and update as needed a List of U.S States containing the State Capital and State Bird.
You will need to embed the State data into your Python code. The user interface will allow the user to perform the following functions:
1. Display all U.S. States in Alphabetical order along with Capital and Bird
2. Search for a specific state and display the appropriate Capital and Bird
3. Update a Bird for a specific state
4. Exit the program
In: Computer Science
C++
Write a definition for a structure type for records for books. The record contains ISBN number, price, and book cover (use H for Hard cover and P for paper cover). Part of the problem is appropriate choices of type and member names. Then declare two variables of the structure.
Write a function called GetData use the structure as function argument to ask the user to input the value from the keyboard for structure variables.
In: Computer Science
Is psychology common sense?
Why study psychology?
*** Provide information from one or more scholarly sources with an in-text citation and match referencing to support your discussion. Wikipedia is not a scholarly source. Discussion without a source will receive zero (0) point.
*** Responses to Discussion Question should be 200 words or more and substantive-this does not include assignment or references. A good practice to produce a response in Word Document to monitor word count, copy and paste into the message area. Please be sure to include proper APA an in-text citation and reference for all information.
In: Psychology
In 200 words discuss Managing IT in organizations (i.e., the role of information systems departments) has become much more complex over the past decade but some organizations may still use IT primarily for back-office support.
In: Computer Science