essay check

For this assignment, you will be presented with five issues. Please respond to all five issues in one cohesive essay. Please include a brief introduction and use Level I headings to differentiate between the five issues.

Issues
You were introduced to philosopher Jeremy Bentham and his idea of utilitarianism in this units readings. Analyze his ideas that a nation should do whatever is necessary to lead to the greatest possible happiness for the largest possible number of people in society and that man was a calculating animal who would balance pain and suffering versus gain when deciding to commit a criminal act. Do you agree with this? Argue your point using research to support your answer.
Based on the pure communist social model, how does capitalism lead to crime? Analyze and argue both sides of this issue.
Analyze whether developmental disabilities are a cause of criminal behavior. Take a stance on this issue and argue your point using research as support.
Describe, in your opinion, how a criminal personality is developed. No sources are required for this section.
Assume class division in society causes crime. What is a viable alternative to this system? Analyze and argue both sides of your proposed solution. In your answer, you should identify five major theoretical approaches of identifying criminal causes of behavior and describe which of these would support your proposed solution.

Unit Essay

For this assignment, you will be presented with five issues. Please respond to all five issues in one cohesive essay. Please include a brief introduction and use Level I headings to differentiate between the five issues.

Issues
You were introduced to philosopher Jeremy Bentham and his idea of utilitarianism in this units readings. Analyze his ideas that a nation should do whatever is necessary to lead to the greatest possible happiness for the largest possible number of people in society and that man was a calculating animal who would balance pain and suffering versus gain when deciding to commit a criminal act. Do you agree with this? Argue your point using research to support your answer.
Based on the pure communist social model, how does capitalism lead to crime? Analyze and argue both sides of this issue.
Analyze whether developmental disabilities are a cause of criminal behavior. Take a stance on this issue and argue your point using research as support.
Describe, in your opinion, how a criminal personality is developed. No sources are required for this section.
Assume class division in society causes crime. What is a viable alternative to this system? Analyze and argue both sides of your proposed solution. In your answer, you should identify five major theoretical approaches of identifying criminal causes of behavior and describe which of these would support your proposed solution.

financial analyst

You work as a financial analyst at a large automobile corporation that occasionally makes acquisitions of smaller companies that specialize in the production and assembly of small component parts. In order to achieve vertical integration of its newest sports sedan model, the company is evaluating a few manufacturing companies that have experienced strong financial performance in the past few years. These companies would make excellent acquisitions due to the nature and quality of the product and the anticipated ease of transition. You have been tasked to evaluate these companies from a financial perspective and choose one. To do this, you need to brush up on a few concepts by addressing the following topics:

Describe what a crediting rate/score is. Should this be a factor in evaluating companies?
The firm will need to raise funds immediately for the acquisition, and debt will be used. Should the firm borrow on a long-term or short-term basis? Why?
Explain the effect, if any, inflation rates will have on the purchase? How significant is this factor?

Define the relationship between yield curves and the term structure of interest rates.
Explain what would happen to interest rates if a new process was developed that allowed automobiles to run off oil that was formulated based on lemonade? The technology used to convert this liquid to gas would be pricey but well worth it. What impact would this technology have on interest rates?
Discuss what ratios should be used to assess the financial health of the potential acquisition?

Object Oriented Python Code Robot Car

Write Python code including object-oriented classes for a robot car’s major components: Controller(Raspberry Pi), Sensor(Anti Collision Sensor, End effector(Wheel), and Actuator(Motor).

Each of these component classes will be used to create objects that will be a part of the car robot’s type. At least one object of each of the component types must be a member of the car’s class: one robot object will have one controller and at least one object of the rest of the component classes. These component objects will be data variables of the car’s class meaning that when a car object is created, it will contain a software representation of each component, making the class a proper simulation.

(a) Define a constructor function that defines and initializes the data variables
(b) Declare objects for at least one of each robot component described as data variables
(c) Add code to make your car trigger its controller to activate its other components
(d)Add code to make your car read the value of its sensor

The Controller class:
(a) Must declare a function that can read data from a sensor object. The object is
passed in as a parameter to the function
(b) Must declare a function that sends a signal to an actuator object. The object is
passed in as a parameter to the function
i. It must print out the label/type of the controller sending the signal, and the
type of the actuator receiving it, and the signal being sent (use a string like
go if you wish)
(c) Must define a class data variable for the type/label of the controller (for example
microprocessor). Make it a string type

The Sensor class:
(a) must declare a class data variable that stores the type of sensor, as a string
(b) must declare a class data variable that hold the data value for this sensor
(c) must define a function that returns data value retrieved from this sensor
In the function body, print out what is happening

The Actuator class:
(a) must declare a class data variable that stores the type of this actuator as a string
(e.g. motor)
(b) must declare a class data variable to store the end effector object that this actuator
will actuate
(c) must declare a function that applies motion to an end effector object that is passed
in as a parameter.
In the function print out what is happening to the object

The End Effector class:
(a) must declare a class data variable that stores the type of this effector as a string
(e.g. wheel)
(b) must declare a function that manipulates a real-world object that is passed in as
a parameter
The real world object can be stored as an object or as a string, at your option.
In the function body code, print out what is happening to the object