Your community has been struck by a tornado at 7:30 am on a September Wednesday. Right now you know that the school gymnasium, which was to be

 Your community has been struck by a tornado at 7:30 am on a September Wednesday. Right now you know that the school gymnasium, which was to be the temporary shelter was struck, but reports are at best sketchy. Right now power is out, people are confused and the phone is ringing off the hook. What would you do to bring order and assistance to your community in the first two hours of the emergency?  

Event Design Applied Theories in a Successful Application.

I will pay for the following article Event Design Applied Theories in a Successful Application. The work is to be 5 pages with three to five sources, with in-text citations and a reference page. The focus on the core management objective allows for a central concentrated effort on the event design to outline the needed tasks. The approach provides for the daily organization’s functions as a business specification that creates a solution base deterring element (Wild, Wild, and Han, 2006).

The general delivery of effective event design is the fundamental research decisions and associated problems that define the project. The application of the event design can be characterized as an efficient means to market the project for an informative and useful study concept (Henderson, 1990). The event design presents the investigation into the value of received data in using the information to form an efficient platform of design. The element of designing presents the designating of the information event of interest for the steps in accomplishing the desired results to become classic (O’Conner, 2000). The steps for an efficient approach to defining the process necessary in event design are as follows:

Retrospectively, the potentially important event design choice for the core elements to measure the specified project in concert means relates to the merit of the desired outcome. Case in point of the series steps project. The event should be something of wide focus that presents the anticipated market the desired reaction to reaching the cornerstone of effectiveness. Therefore, the exploration in event design to recognize the project and get the research done and executed accordingly is the goal (Rosenberg, 1982). The associated risk management involved relates to the collective consensus of project management within an organization to consider having an event designing management office. The approach provides a productive step in centralizing the need for better event design planning.

The reason for the event design management office presents the centralization of the responsibility and authority for the achievement of organizational goals. The event design constitutes a project or non-project that will present a temporary nature or long term result for reaching a predetermined outcome. Therefore, the basic event design series of the basic types of event studies presents a directive in market efficiency, information value, and metric explanation. The defined event classifications present the sometimes mutually exclusive concepts to outlining how the event studies are analyzed effectively (Williams, 2008).

Hi I have written this code and I am having problems with the equals method and

Hi I have written this code and I am having problems with the equals method and hash method and some other problems when I run a check on the uni website. I just need you to run a check on the code against the requirements and make the necessary changes please.
These are the requirements:
Launch BlueJ, open the project TMA03_Q1 in the TMA03Download folder you unzipped earlier and then immediately save the project as TMA03_Q1_SolXX, in the TMA03Download folder, where XX represents your own initials.
The provided project contains the completed class ThemePark as well as the partially completed class Ride. You should make no changes to ThemePark.
In this part you will complete the class Ride which has been provided for you. Ride already has the following private fields as well as getter and setter methods for these and a toString method:
name, the name of the ride, which is a String.
carCapacity, of type int, which holds the capacity of a single car on the ride.
operational, of type boolean, which is true if the ride is running and otherwise false.
i.Add a public constructor to the class Ride with the modifier and header public Ride(String aName, int aCarCapacity)
The constructor uses its two parameters to set the values of the corresponding fields.
The field operational should be set to false.
(5 marks)
ii.Add an equals method to Ride that overrides the Object equals method and returns true if the ride name and car capacity of the argument are the same as this object’s and false otherwise. For the purpose of this method, objects of a subclass of Ride should not be considered equal.
(5 marks)
iii.Add a hashCode method to Ride that returns the sum of the ride name’s length and car capacity.
(5 marks)
b.In this part you will add a new class RollerCoaster which should extend Ride.
i.Begin by adding the new class called RollerCoaster as a subclass of Ride. Retain but edit the class comment to include your own name and the date and a description of the class RollerCoaster. Remove the sample field, constructor and method and add a private int field numberOfCars representing the number of cars the roller coaster ride has.
(5 marks)
ii.Write a public constructor for RollerCoaster with the signature RollerCoaster(String, int, int) to initialise the instance variables using its parameters. The third parameter will be used to set the number of cars the roller coaster has.
(5 marks)
iii.Write a public method getCapacity in RollerCoaster that returns the total capacity for the roller coaster, which is the ride carCapacity multiplied by the numberOfCars.
(5 marks)
iv.Write a toString method in RollerCoaster that overrides that in Ride and returns in addition to the superclass description of the ride the total capacity of the ride, in the following format:
has car capacity and is .
The total capacity of the ride is .
The total capacity needs to be replaced by the appropriate value for the current object.
Note that there is a newline character between the two sentences.
The first sentence should be provided by the Ride class toString method.
(5 marks)
v.Add an equals method to RollerCoaster which should override equals in Ride and return true if the ride name and capacity are the same. It should allow instances of subclasses to be considered equal.
(5 marks)
vi.Override the inherited hashCode method so that it returns a hash code using the Objects.hash method, to which you should pass the ride name and total capacity in that order.
(5 marks)
This is my code for (a):
import java.util.Objects;
/**
* Ride is a class that abstracts the common features
* of rides at a theme park. Rides have a single car that can
* take a certain number of people in them (their capacity).
*
* @author M250 Module Team
* @version v1
*/
public class Ride
{
private String name;
private int carCapacity;
private boolean operational;
public Ride(String name, int aCarCapacity)
{
this.name = name;
this.carCapacity = aCarCapacity;
this.operational = false;
}
/**
* Getter for the ride name.
* @return The name of the ride
*/
public String getName()
{
return name;
}
/**
* Setter for the ride name.
* @param the ride’s name
*/
public void setName(String aName)
{
name = aName;
}
/**
* Getter for the ride’s car capacity.
* @return The number of people a car can carry
*/
public int getCarCapacity()
{
return carCapacity;
}
/**
* Setter for the ride’s car capacity.
* @param aCapacity The capacity of a car on this ride
*/
public void setCarCapacity(int aCapacity)
{
carCapacity = aCapacity;
}
/**
* Getter for the operational status of the ride.
* @return the operational status of the ride
*/
public boolean isOperational()
{
return operational;
}
/**
* Setter for the operational status of this ride.
* @param rideState true if operational, otherwise false
*/
public void setOperational(boolean rideState)
{
operational = rideState;
}
/**
* Return a String representation of a Ride including
* its class name, allowing for extension by subclasses.
* @return the string representation of the ride
*/
@Override
public String toString()
{
String outputString = String.format(“%s %s has car capacity %d and”,
getClass().getSimpleName(), name, carCapacity);
if (operational) {
outputString += ” is running.”;
}
else {
outputString += ” is not running.”;
}
return outputString;
}
@Override
public boolean equals(Object obj)
{
if(this == obj)
return true;
if(!(obj instanceof Ride))
return false;
Ride ride = (Ride) obj;
return getCarCapacity() == ride.getCarCapacity() && Objects.equals(getName(), ride.getName());
}
@Override
public int hashCode()
{
return Objects.hash(getName().length()+getCarCapacity());
}
}
And this is my code for (b):
import java.util.Objects;
/**
* Write a description of class RollerCoaster here.
*
* @author (your name)
* @version (a version number or a date)
*/
class RollerCoaster extends Ride
{
// instance variables – replace the example below with your own
private int numberOfCars;
/**
* Constructor for objects of class RollerCoaster
*/
public RollerCoaster(String rollercoaster, int capacity, int numberofCars)
{
// initialise instance variables
super(rollercoaster, capacity);
this.numberOfCars = numberOfCars;
}
/**
* An example of a method – replace this comment with your own
*
* @param y a sample parameter for a method
* @return the sum of x and y
*/
public int getCapacity()
{
// put your code here
return getCarCapacity()*numberOfCars;
}
@Override
public String toString()
{
return super.toString() + “r” + “The total capacity of the ride is : ” + getCapacity();
}
@Override
public boolean equals(Object object)
{
RollerCoaster rollerCoaster = (RollerCoaster) object;
return super.equals(object) && numberOfCars == rollerCoaster.numberOfCars;
}
@Override
public int hashCode()
{
return Objects.hash(getName(), getCapacity());
}
}
I have attached pictures of the checks

3 Assignments 1 Feed back paper

Assignment #1 Part 1 Due Wenesday the 17 by Midnight CST.· Identify one 19th or early 20th century philosopher or psychologist from this unit’s assigned readings.· Analyze and summarize the individual’s major contributions to scientific, philosophical, or psychological thought.· Explain how the individual’s ideas adhere to psychophysiological, evolutionism, empiricism, materialism, creationism, intelligent design, phrenological, vitalism, scientific, sensational, perceptual, psychophysics, comparative, psychometric, statistical, eugenic, LaMarckianism, neuroanatomical, functionalism, structuralism, pragmaticism, phenomenological, or dynamic psychology system of thought.Assignment #1 Part 2 Due Thursday the 18 by Midnight CST.Summarize the article and provide the URL link to where it is located; identify any relationship between the research article and the main points of the assigned chapters; and discuss how it relates to any main point(s) in this unit’s assigned chapters. Article abstracts are not sufficient for analysis of relationships between the article and the assigned readings historical ideas main points. You must read the entire article to come to your conclusions.Assignment #2 Due Thursday the 18 by Midnight CST.Each student will provide a short biography and summarize the prominent individual’s major ideas and contributions to the development of psychology.Each student will also evaluate and explain how the individual’s ideas and contributions are significant to modern psychology today.This paper will need to be written in APA style and citations, and will need at least three APA style references retrieved from expert sources or professional journals.  Other credible references can be obtained from the internet or other means. Wikipedia is not considered a credible academic source.The Biography and Analysis Paper is due by Thursday 11:59 PM CST . The paper is required to contain a minimum of 600 words(approximately 2.5pg), not including title and references page. This paper will be graded on overall quality of content, critical thinking, writing style, and adherence to minimum references and word count guidelines. A minimum of 4 academic references are required.Reply to at least one other classmate’s ( I will supply you with the other student paper.) posted paper and will discuss how their own chosen philosopher/psychologist/scientist’s ideas and contributions compare and contrast to those of their classmate’s identified eminent individual. Each student will be expected to come up with information that is not found in another student’s paper. The student peer reply is required to be substantive, containing at least 300 words. The peer response reply is due Unit 6 by Sunday 11:59 PM CST.