Hello!! I need help with these questions. Can someone please help me finish answer

Food manufacturers are

expanding the range of nutrients they add to foods as well as the types of foods to which they are added. The increasing presence of fortified and enhanced foods in supermarkets has the potential to affect the nutrient intake and health of individuals. What role do functional foods play in your diet?

1.     Choose a functional food product (one that has one or more added nutrients or dietary constituents) that you typically consume.  Name and manufacturer of product you chose:  

2.     What nutrients or dietary constituents have been added to this product?

3.     Are any health claims on the food label? If so, list the claim. How would you classify the claim? (Health claim, Structure-Function claim, or Nutrient Content claim?)

4.     Would you consider the added nutrients to be nutrients that most people need more of in their diets?

5.     Why might you use this particular food product? Would you purchase it for the taste, the added nutrients, the potential health benefit, or other reasons?

6.     Is this particular type of product available without the added nutrients or extra fortification? For example, if you chose orange juice with added calcium, the answer would be “yes,” this product is available as orange juice without added calcium. Do you know if there is a cost difference between the regular product and the functional food version? Are you willing to pay more for the enhanced product?

7.     What role do you think functional foods should play in the food market and in the diet of the population overall?

8.     Do you see any potential for misuse or excessive nutrient intake through the use of this or similar products? What if an individual is also taking a dietary supplement that includes the same nutrient?

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

$15/hour                           $15/hour    

Machine Hours (MH)             4 MH/unit                       6 MH/unit

Volumes Produced                 50,000                            25,000

Orders Served                         500 orders                    2500 orders                                                                                                                                      

Indirect costs consist of manufacturing costs of $ 900,000 and support costs of $ 900,000.

To determine product line profitability, the current costing system pools all indirect costs (i.e., manufacturing plus support) in one single pool and allocates these costs based on direct labor hours. However, the company is considering adopting a two-stage costing system which would treat the two categories of indirect costs separately. Specifically, the total manufacturing costs (which include material handling ($ 200,000) and processing ($ 700,000)) will be allocated using the sum of direct material and direct labor costs, while the support costs (which include packaging and shipping ($ 325,000) and order handling ($ 575,000)) will be allocated based on the number of orders received. 

Required: 1) Determine the per unit cost of each product under the current costing system.

               2) Determine the per unit cost of each product under the proposed two-stage system.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello,

I need help with the following discussion assignment. This assignment should be no longer than 2 paragraphs in length. Thank you!

A newborn incorrectly received methylergonovine maleate, a synthetic ergonovine analogue indicated for the management of postpartum atony. What was actually ordered was the hepatitis B vaccine, Engerix-B. While these two medications do not sound alike, they are similar looking and were stored in the same cabinet in the perinatal area. The infant sustained diminished urinary output for a twelve-hour period and required an additional day of hospitalization for monitoring. In your initial post, pose a potential organizational reporting strategy that you think would be appropriate in this situation. What information should be disclosed in this case to the responsible adult family member? How does the patient being a minor impact this process? 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello, I need help with the following assignment. 

References

Unit 8: Women in the public sector: 1960 to present

Read Chapters 11 & 12** in Through Women’s Eyes

Dubois, E.C. & Dumenil, L. (2019). Through women’s eyes (5th ed.). Boston, MA: Bedford/St. Martin’s.

**Chapter 11: Read pp. 644 – 654 and pp. 660 – 675.

**Chapter 12: Read entire chapter.

Review: Read about the 1963 Equal Pay Act and the 2009 Lilly Ledbetter Fair Pay Act:

http://www.eeoc.gov/eeoc/publications/brochure-equal_pay_and_ledbetter_act.cfm

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello, I need help with my decision brief paper. The attached file is the scenario and what they are looking for. The other attached file is FM 6-0. Go to PDF page 90, it will show an example of what the format needs to be in. The paper I have to brief has to last for 10 minutes

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello, i need help with my assignment

1) This assignment is to create an informative message, so turn the content of the assignment prompt into an INFORMATIVE MESSAGE. 

2) It needs to be in a memo

  • 3) It needs to have a goodwill ending
  • Attachment 1
  • Attachment 2
  • Attachment 3

Date: February 9, 2916 To: Jill Hillings From: Jane Smith Subject: New 401k Plan As you are very aware of the current business situation, there is a dire need to adjust on ourservice delivery…

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello,

I need help with this assignment.

Please strictly follow the rubric, and use the Sample Patient Safety Plan document as a guideline.

The case study used for this assignment is CASE STUDY B!

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello,

I need help with java programming using data structures & algorithms. Please help me as soon as possible. I am attaching the file containing all the details regarding the question.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello,

I need to develop an automobile class that will be used by a dealership as a vehicle inventory program. The following attributes should be present: Private string make, model, color, int year, and int mileage. The program needs a constructor, add new vehicle, remove vehicle, update vehicle attributes

Below is the code that I have had help on but when ran it is stating I need to define vehicle.Please help. Thank you

class Automobile:

  def __init__(self, make, model, color, year, mileage):

    self._make = make

    self._model = model

    self._color = color

    self._year = year

    self._mileage = mileage

def set_make(self, m):

  self._make= m

def set_model(self, m):

  self._model = m

def set_color(self, m):

  self._color = m

def set_year(self, m):

  self._year = m

def set_mileage(self, m):

  self._mileage = m

def get_make(self):

  return self._make

def get_model(self):

  return self._model

def get_color(self):

  return self._color

def get_year(self):

  return self._year

def get_mileage(self):

  return self._mileage

vehicles = [ ]

def add_vehicle(vehicle):

    global vehicles

    vehicles.append(vehicle)

def remove_vehicle(make):

    for i in range(len(vehciles)):

      if vehicles[i].get_make( ) == make:

        del vehciles[i]

def update_vehicle(index, make, model, color, year, mileage):

    global vehicles

    v = vehicles[index]

    v.set_make(make)

    v.set_model(model)

    v.set_color(color)

    v.set_year(mileage)

def write_file( ):

    file = open (‘vehicles.txt’, ‘k’)

    for a in vehicles:

      file.write(a)

      file.write(‘n’)

    file.close( )

def main( ):

  menu = { }

  menu [‘1’] = ‘Add vehicle’

  menu [‘2’]= ‘Remove vehicle’

  menu [‘3’] = ‘Find Vehicle’

  menu [‘4’] = ‘Quit/Exit’

user = True

while user:

  print(“””

  1. Add vehicle

  2. Remove vehicle

  3. Find vehicle

  4. Quit/Exit

  “””)

  ans= input(‘Choose options, 1. to add a vehicle, 2. to remove a vehicle, 3. to find a vehicle, or 4. to quit/exit. ‘)

  if ans == ‘1’:

    vehicle.add_vehicle

  elif ans == ‘2’:

    vehicle.remove_vehicle

  elif ans == ‘3’:

    print(‘Automobile.vehicle’)

  elif ans == ‘4’:

    print (‘Goodbye’)

  elif ans != ”:

    print(‘Invalid entry’)

if __name__ == ‘__main__’:

  main ( )

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hello,

I need this question answered for my MBA 565 class, (Marketing). The professor asks that we support our thoughts and be thorough, your help is greatly appreciated. Here is the task:

A friend recently approached you with a new business idea he/she wants to open. Knowing that you are working on your MBA, this friend has asked for your assistance with trying to figure out who might be willing to shop at the new business.

The Bark and Brew is a coffee/tea shop similar to a Starbucks. However, there is a twist to this shop: pets (specifically dogs) are welcome. The plan is to carry products that will cater to dogs as well as humans, including drinks and snacks. The intent is not to compete with pet stores but to compete with coffee shops.

Reflecting on the above from a Marketing Strategy Perspective, address the following issues: a.) Develop a target market for this project. Make sure to address at least three market segmentation variables that would be important to consider and how you arrived at the target market you are suggesting for this project. b.) Develop a customer retention program for your friend to implement. Discuss the concept of customer orientation and the importance of a customer retention program and what factors should be considered for this business. Identify the type of information the company needs to design this program and from where the company will obtain this information. c.) Marketing strategy focuses on solving problems. Many of the problems originate from specific needs. Identifying the appropriate needs assists in the product differentiation process, as well. Identify the Primary Needs and Secondary Needs this product will satisfy. How will this be used in the product differentiation, positioning of the product, and the impact within the consumer buying process?

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW