I need a new answer to avoid plagiarism
Question Four: (Word count 300 words)
In: Operations Management
Most people do not get the recommended dosage of exercise a week. What is that recommended dose, and why do you think people are not getting enough of it?
As a health psychologist, what are some things you could do to get people to exercise more? How could you buffer against the perceived barriers people face in getting enough exercise?
If you are someone who does get the recommended dose of exercise a week, you might in your response mention the habits and strategies you do personally.
In: Psychology
Pick a pure risk (except fire). Discuss how close to an ideally insurable risk is your choice. Make sure you mention each of the requirements for an ideally insurable risk.
2. Discuss how adverse selection could impact the insurability of that risk.
3. Add a section on how insuring that risk is not gambling.
4. Conclude your paper.
You will be graded on your use of the vocabulary in this course and your content. So, use words found in your text in the paper for the strongest grade. Place the paper in this Dropbox
In: Finance
Question Four: (Word count 300 words) *this is all information i have
In: Operations Management
Observation Techniques: Film Analysis
This week, you will analyze a three- to five-minute segment of a movie or a television episode depicting cultural diversity and gender issues.
After watching the movie segment, create a report on your analysis. In your report:
Mention the name of the movie.
Describe the setting and overall storyline of the movie.
Describe the main characters in the observed movie section.
Describe the situation that you analyzed and interpret the action of the characters depicting cultural diversity and gender issues.
Draw conclusions based on social psychological concepts and theories.
In: Psychology
B3.1
Assume that you are working as IT Security head in RLCare hospital. You hospital has 90 employees in two departments which are IP and OP. The hospital had no firewall to secure its network and the entire hospital is in two LANs for each department and both connected separately to internet. However, RLCare hospital has one application proxy for FTP protocol. RLCare hospital has a Server that has all the patient records from IP and OP departments. As per the government rule at most security is to be provided to patient records maintained in hospital.
You have to create a proposal to submit in front of RLCare hospital management for purchasing three new firewalls with 15000 OMR. In the proposal you have to design/draw the new network architecture for the company for improving security with firewalls. Mention the advantages of each design components and its importance in improving security of the company. Also, if possible in your design give higher level of security to the server with available firewalls.
Note: You can assume the type of firewalls that you need for your design. Mention your assumption clearly in the answer.
B3.2
Estimate the impact of a backdoor on choke point security strategy. How you can prevent backdoor in your company.
B3.3
Develop a real example case to show the importance of scalability while selecting firewall product for your company.
In: Computer Science
( I am posting this for the third time. The first time I posted, whoever did it, he did not read the instruction and did not mention the letters with the answer, such as which one is A, B, C, D, E, F, while he was answering. The 2nd time I posted, whoever did it, he had handwritten it. So, I faced difficulty to understand the handwriting. The handwriting was horrible. Please mention the letters with the answers this time and do not handwrite it, PLEASE. Thank you very much for helping me.)
Managerial Economics Question
1. The Poster Bed Company believes that its industry can best be classified as monopolistically competitive. An analysis of the demand for its canopy bed has resulted in the following estimated demand function for the bed:
P= 1760 - 12Q
The cost analysis department has estimated the total cost function for the poster bed as
TC = (1/3)Q^3 - 15Q^2 + 5Q + 24,000
A) Calculate the level of output that should be produced to maximize short-run profits.
B) What price should be charged?
C) Compute total profits at his price-output level.
D) Compute the point price elasticity of demand at the profit-maximizing level of output.
E) What level of fixed costs is the firm experiencing on its bed production?
F) What is the impact of a $5,000 increase in the level of fixed costs on the price charged, output produced, and profit generated?
In: Economics
Part 1 – Classes and objects Create a new Java project called usernamePart1 in NetBeans. In my case the project would be called rghanbarPart1. Select the option to create a main method. Create a new class called Vehicle. In the Vehicle class write the code for: • Instance variables that store the vehicle’s make, model, colour, and fuel type • A default constructor, and a second constructor that initialises all the instance variables • Accessor (getters) and mutator (setters) methods for all instance variables • A method called printDetails that prints the Vehicle details e.g. “The vehicle details are:” followed by all instance variables. The output must be formatted for readability In the main method write the code to: • Create 2 vehicles, one using the default constructor, the other using the constructor that initialises all the instance variables for the vehicle. • Demonstrate the use of one accessor method, and one mutator method for one of the vehicles you created. • Print the vehicle’s details using the printDetails method for one of the vehicles you created. Part 2 – Inheritance, collections and polymorphism Create a new Java project called usernamePart2 in NetBeans. Select the option to create a main method. Create a new class called Car. Create a second class called Vehicle. Copy the code from the Vehicle class you created in Part 1 into the new Vehicle class. Modify the new Car class so that it extends Vehicle (Vehicle is the superclass, Car is the subclass). In the Car class write the code for: • The instance variables that store the transmission type, and body type • Accessor and mutator methods for the 2 instance variables • A default constructor, and a second constructor that initialises all the instance variables in the Car and the Vehicle classes using the super keyword • The Vehicle class has a method called printDetails that prints the Vehicle details. Override the printDetails method in the Car class and print all of the car’s details. The printDetails method in the Car class must use the super keyword to call the printDetails method in the Vehicle class. • The Car class must also demonstrate the use of overloaded methods In the main method write the code to: • Declare an ArrayList with a type parameter of Car 3 • Add at least 2 Cars to the ArrayList • Use an Iterator (java.util.Iterator) to loop through the cars in the ArrayList and print out some of their details. Please note that use of any other kind of loop will not receive any marks. • Check if the ArrayList contains a particular car • Get a car from the ArrayList • Remove a car from the ArrayList • Print the size of the ArrayList • Clear the ArrayList Please note that collections are covered in Topic 3 and 4. You may need to wait until we have covered these topics to implement your ArrayList. Polymorphism In the class that contains the main method, create a second method that takes a Vehicle as a parameter and write the code to print out the vehicle’s fuel type using one of the vehicle’s accessor methods. Then create an object of type Car and an object of type Vehicle in the main method and use the method you have just created to demonstrate polymorphism. Part 3 – Abstract classes Create a new Java project called usernamePart3 in NetBeans. Select the option to create a main method. Create a new class called Car. Create a second new class called Vehicle. Rewrite your code from Part2 so that: • The Vehicle class is abstract • Car extends Vehicle • The Vehicle class contains at least one abstract method All methods, constructors and instance variables that were in the Car and Vehicle classes in part 2 must be included in part 3. You need to rewrite the Car and Vehicle classes from part 2 so that Vehicle is abstract and there are multiple ways to create a Car. Check your code works by creating a new Car in your main method. Part 4 – Interfaces Create a new Java project called usernamePart4 in NetBeans. Select the option to create a main method. Create a new class called Car. Create a new interface called Vehicle. Rewrite your code from Part 2 so that: • Vehicle is an interface 4 • Car implements Vehicle • The Vehicle interface contains at least one abstract methods All methods, constructors and instance variables that were in the Car and Vehicle classes in part 2 must be included in part 4. You need to rewrite the Car and Vehicle classes from part 2 so that Vehicle is an interface and there are multiple ways to create a Car. In the main method of your project write the code to: • Declare a Stack with a type parameter of Car • Add at least 3 cars to the Stack • Demonstrate the use of: o peek() o pop() o empty() Part 5 – UML Create a word document called usernamePart5. Draw 2 UML diagrams to show the inheritance relationship for the Vehicle and Car in part 3 and part 4. Make sure that each diagram has a heading and the header of the word document contains your name and student ID.
In: Computer Science
In: Economics
In: Economics