The following is a list of costs that were incurred in producing a textbook. Please indicate whether
each cost is: (a) a product or period cost, and
(b) if it is a product cost, whether it is a direct material, direct labor, or factory overhead cost.
In: Accounting
Classifying Costs
The following is a list of costs incurred by several businesses. Classify each of the following costs as product costs or period costs. Indicate whether each product cost is a direct materials cost, a direct labor cost, or a factory overhead cost. Indicate whether each period cost is a selling expense or an administrative expense.
| Costs | Classification |
| a. Salary of quality control supervisor | |
| b. Packing supplies for products sold. These supplies are a very small portion of the total cost of the product. | |
| c. Factory operating supplies | |
| d. Depreciation of factory equipment | |
| e. Hourly wages of warehouse laborers | |
| f. Wages of company controller’s secretary | |
| g. Maintenance and repair costs for factory equipment | |
| h. Paper used by commercial printer | |
| i. Entertainment expenses for sales representatives | |
| j. Protective glasses for factory machine operators | |
| k. Sales commissions | |
| l. Cost of hogs for meat processor | |
| m. Cost of telephone operators for a toll-free hotline to help customers operate products | |
| n. Hard drives for a microcomputer manufacturer | |
| o. Lumber used by furniture manufacturer | |
| p. Wages of a machine operator on the production line | |
| q. First-aid supplies for factory workers | |
| r. Tires for an automobile manufacturer | |
| s. Paper used by Computer Department in processing various managerial reports | |
| t. Seed for grain farmer | |
| u. Health insurance premiums paid for factory workers | |
| v. Costs of information technology support for the corporate headquarters | |
| w. Costs for television advertisement | |
| x. Executive bonus for vice president of marketing |
In: Accounting
10. Arrange the following compounds in a vertical list from highest boiling point (top) to lowest boiling point (bottom) and explain your answer on the basis of whether the substance is Polar, Nonpolar, Ionic, Metallic or Hydrogen bonding: O2, KF, NH3, Cu, HBr (Please note in this question you are not being asked to list BPs but the compounds in a list from highest to lowest BP on the basis of the type of compound.)
In: Chemistry
1) How are symptoms of heart disease detected and why?
2) List and describe three common heart diseases, and describe their signs and symptoms.
3) List the types of tools used to diagnosis heart disease.
4) List the different techniques used to diagnose heart disease, and describe how each technique works.
5) Define the principles of pedigree analysis and describe how it is used to diagnose heart disease.
In: Anatomy and Physiology
Discussion 04.2: Indirect and Direct Cost
Use your household as a pretend organization.
List each family member as a cost object within your pretend family organization.
For your household organization, list all expenses and cost during a 3-month period.
For each of your monthly costs, list whether it is a direct or indirect cost based on its association with a cost object (family member).
In: Accounting
The directions say to "create two methods:
-enrollStudent (Student newStudent) which adds newStudent into the enrolled list and increment numOfEnroll by 1, if the section is full, print out an error message and no change with numOfEnroll.
-removeStudent (String studentId) which removes the student with studentId from the enrolled list and decrement numOfEnrollby 1, if the target student is not found in the enrolled list, print out an error message and no change with numOfEnroll."
In: Computer Science
write a program to perform the following in C
In: Computer Science
Create two lists; one contains 5 elements and the other one is empty. Write a python program that iterates through the first one, pops the elements from the end of it, then it pushes them one by one to the empty list. As your program iterates through the first list, clean it before processing the data, meaning if any element is like a special character ( , . ; : ) it must be discarded and not gets pushed to the second list.
In: Computer Science
Bucket List
Many people have "Bucket Lists" - things that they want to experience/accomplish before they die. What are some of the things that are on your Bucket List? Why are these things important to you? How do those wishes reflect your developmental stage in life? Do you think they will change as you get older?
****If you have not seen the movie, The Bucket List, I highly suggest it!
In: Psychology
C++ only
Large Program
Create a magical creature (or monster) zoo inventory program that will allow a zookeeper to add magical creatures (either manually or from a file), delete a creature, and display all creatures in the zoo.
The zoo creatures will be organized in a linked list.
----------------------------------------------------------------------------
Zoo.cpp – this file will contain your main function that will allow the user to enter, delete, and print creatures. The main function will create the linked list of creatures.
Creature.h – class specification for the Creature class
Creature.cpp – class implementation for the Creature class
LinkedList.h – a Singly-Linked List template class that you create (DO NOT USE THE LIST CLASS PROVIDED IN THE STANDARD TEMPLATE LIBRARY). All the member functions should be defined in this file as well (either inline or below the class declaration).
creatureFile.txt – this is the text file that contains creature data in it. You should submit a file with at least five creatures/monsters.
----------------------------------------------------------------------------
Create a template class (LinkedList.h) that declares a singly-linked list. This template class should be able to create a linked list of any type of object.
LinkedList class should have the following attributes:
A structure (struct) ADT named ListNode, which defines a node with a value & a pointer to the next ListNode.
A pointer to a ListNode named head
A pointer to a ListNode named tail
An integer named numNodes
LinkedList class should have the following member functions:
Constructor – should initialize head & tail to point to nothing and initialize numNodes to zero
Destructor – like a “RemoveAll” function – should deallocate memory for all existing nodes
getLength – should return the number of nodes in the list
getNodeValue – this function accepts a position (integer) as a parameter and then returns the value (object) inside the node at that position
appendNode – this function accepts a value (object) as a parameter. It creates a new node at the end of the list with the sent object inside of it and increments the number of nodes. This function does not return anything.
deleteNode – this function accepts a position (integer) as a parameter, which indicates the position of the node to be deleted. It updates the links of the nodes on either side of this node to be deleted. Then it deletes the node. Then, it decrements the number of nodes.
----------------------------------------------------------------------------
Create a class specification (Creature.h) & class implementation (Creature.cpp) file for a class named Creature. The purpose of the Creature class is to allow for creation of a Creature object.
Creature should have the following attributes:
The creature’s name (string)
A description of the creature (string)
The cost (float) of the creature (per month) to care for it (food, grooming, destruction, etc)
A boolean representing whether the creature is dangerous or not (1 means true – it is dangerous and 0 means false, it is not dangerous)
Creatures should have the following member functions:
Constructor – default constructor (doesn’t have to have anything inside it)
Constructor with parameters – string, string, bool, & float – should initialize the creature’s attributes
Accessor functions
getName
getDescription
getDangerous
getCost
Mutator functions
setName
setDescription
setDangerous
setCost
printCreature – a function to print a single creature’s information to the screen in a nice, easy to read format
printCreatureToFile – a function to print a single creature’s information to the file – unformatted – one piece of information per line. This is so the program would be able to read the creature’s information back later.
----------------------------------------------------------------------------
This is the driver. This file should have a main function and several other functions to organize or help the main function as described below:
main – This function should create a creature linked list, based on the LinkedList template class you create. Then it should display a menu of four options until the user chooses option 4, which is to end the program. Look at sample output to see the flow of the program.
If user chooses option 1, then a sub-menu should be shown to ask user if they want to enter creatures manually or from file. If manually, then the enterMagicalCreature function should be called, sending the address of the creatureList to this function. If from a file, then the enterMagicalCreatureFromFile function should be called, sending the address of the creature list to this function.
If user chooses option 2, then the deleteCreature function should be called, sending the address of the creature list to this function.
If user choses option 3, then the printCreatures function should be called, sending the address of the creature list to this function.
If user chooses
option 4, then the program should ask the user if they want to save
their creature list to a file. If user chooses yes, then call the
saveCreaturesToFile function, sending the creature
list to this function. Print “GOODBYE!” before the program
ends.
enterMagicalCreature – this function should ask
the user for the creature’s name, description, if it is dangerous,
and the cost per month to care fo rhte creature. Then it should
create a new creature object with this data. Then, it should append
the creature object to the linked creature list. Then it should
print a confirmation that the creature (print creature’s name) has
been added to the zoo. The function should then ask the user if
they want to add more creatures. If they answer yes, then repeat
this process. Otherwise, the function should end and it doesn’t
return any data.
enterMagicalCreatureFromFile – this function
should ask the user for the name of the file they want to read
from. Then, if the file is able to be opened (print a message if
can’t be opened) then read the creature data from the file (one at
a time) with a loop and after reading in one creature, create a new
creature object with this data, then append the creature to the
creature linked list. After reading all the creatures from the file
& adding them to the linked list, print how many creatures FROM
THE FILE were added to the zoo. This may or may not be the current
number of creatures in the linked list! This function does not
return any data.
deleteCreature – this function should first print
a numbered list of the names of all the creatures in the linked
list. Then ask the user which creature number they want to delete.
Then the creature should be removed from the linked list. A
confirmation should be printed out that the creature was removed.
This function does not return anything.
printCreatures – this function should print “THERE
ARE NO CREATURES AT YOUR ZOO!” if there are no creatures in the
linked list. If there are creatures in the linked list then it
should print each creature’s detail in the list. This function does
not return anything.
saveCreaturesToFile – this function should either print “THERE ARE NO CREATURES AT YOUR ZOO!” if there are no creatures in the linked list. If there are creatures in the linked list then it should ask the user for the filename that they wish to use to save the creatures and then use a loop to get a creature from each node, and then call this creature’s printCreatureToFile function, sending the filename to the function.
--------------------------------------------------------------------------
In: Computer Science