- Explore
- Answer the following questions:
- List five lessons you learned from the data
- Contrast the statistics provided in the dataset with more recent ones
- Discuss how could you use what you learned from this data in the design of a substance use prevention program
- Post a question from the data that you would like your classmates to answer
- References used to support your statements- At least two references in APA style
Please add references
Category: uncategorised
-
Discussion Question #2
-
History in the Movies: Fact or Fiction
What role do Hollywood movies play in educating the public about historical events or figures? How do we know what’s fact and what’s fiction when we watch these movies? In this assessment, you will put yourself in the shoes of a historian as you write an essay that analyzes a movie about a historical event, person, or issue.
Step 1: Summarize a movie about a historical event, person, or movement.
Clearly identify the movie you are reviewing.
Describe the main idea and key points and events in your movie.
Step 2: Analyze a movie to separate historical fact from fiction.
Discuss the historical accuracies and inaccuracies of your movie, using credible sources for support.
Step 3: Explain the impact of a movie on the public’s understanding of a historical event, person, or movement.
Address how your film might impact the audience’s understanding of the historical event, issue, and/or person. In other words, what are the consequences of the movie’s portrayal for our current understanding of a historical event, issue, or person?
Step 4: Describe changes that would improve a movies portrayal of a historical event, person, or movement.
Explain how you would improve the film to provide a more accurate portrayal of a historical event, person, or movement.
Also, consider any important information or perspectives missing from the movie. What information or perspectives might be added?
Step 5: Integrate credible sources to support the analysis of a historical movie.
Identify credible sources about the event, issue, and/or people in your movie, and use those sources to support your arguments in Steps 2, 3, and 4.
Step 6: Write coherently with correct grammar, usage, and mechanics.
Include headings (based on the steps above, which align with the scoring guide criteria) to organize your work.
-
Marketing Question
*This project is focused on your topic idea that should have been approved by your faculty prior. If you do not have a topic yet, ensure to get one before submitting this part of the project. (Project Topic Attached)
PART 1 of Marketing Project: Foundations of the Marketing Plan (Chapters 16)
Focus: Understanding marketing, value, research, and the customer
What you will submit in written document, in APA style:
- Introduction of your project idea and title
- Mission Statement, Logo, Catch Phrase
- You will need to use AI to create the mission statement, logo and even catch phrase. You may use any generative AI of your choice. Ensure that your prompts are clear and in accordance with the project topic and project requirements. This is the only part of the project that you may use AI for.
- Define what the company stands for
- Include:
- Core values
- Purpose
- Optional slogan/tagline (logo optional)
- Situation Analysis
- Industry overview
- General market trends
- Initial competitor observations (basic)
- Introduction to SWOT (can be preliminary)
- Target Market
- Identify broad target audience
- Include:
- Demographics
- Basic behaviors
- Customer Insights
- Why customers would want this product
- What problem it solves
- Value Proposition
- What makes the product valuable
- Why customers would choose it
Requirements:
There is no required minimum word count for this part of the project.
Ensure that each section is properly explained, written in APA style and use references when needed, e.g. if you need to communicate value that customers would find by buying your project, ensure to have a reference that supports it.
***The written assignments will be checked for plagiarism and AI usage. Anything beyond what is allowed in this class as communicated in the assignments’ requirements, will result in academic integrity issues and could earn you a zero on the assignment all the way to failure of the course.
Note that Grammarly will also trigger your AI report so YOU MAY NOT use Grammarly for this class.
-
BMHTC2-01-153 International Business Strategy
Hello,
Please make sure the assignment is completed exactly according to the instructions and by strictly following the files and template I shared with you. The work must be fully original and written without using any AI tools.
Kindly complete the report as follows:
1. Introduction
Introduce briefly the chosen hospitality business (existing or hypothetical) that is planning to expand internationally.
1.1 Profile of the business
Explain the business profile including:
Main field of operation in hospitality
Main competitors
Target audience
Current headquarters (city and country)1.2 Motivation behind expansion
Explain the problem or market gap the company wants to solve through international expansion and mention existing alternatives offered by competitors.2. Expansion Routes and Market Analysis
Select 4 potential countries for expansion and analyze them using the following global rankings:
- IMD World Competitiveness Ranking
Transparency International Corruption Perception Index
World Bank Ease of Doing Business
WIPO Global Innovation Index2.1 Overview of the country rankings
Create Table 1 presenting the raw ranking data for the four countries.
Create Figure 1 (Bar Chart) showing the rankings comparison and briefly explain the observations.2.2 Presentation of normalized rankings
Insert Table 2 with normalized scores based on the Excel calculations so that all rankings become comparable. Provide a short explanation of the results.2.3 Final rank of the destination markets
- Insert Table 3 showing the weights assigned to each ranking (the total weight must equal 1).
Explain why certain rankings received higher weight depending on the business priorities.
Insert Table 4 with the final weighted results (normalized scores weights).Based on the results, clearly recommend which country is the best destination for expansion and explain the reasons. Also mention at least one possible market risk or limitation for the recommended country.
Insert Figure 2 (Bar Chart) showing the final ranking of the countries.
3. Conclusion
Write a short concluding paragraph summarizing the results and the recommended market for expansion.
References
List all references in APA 7th edition format, in alphabetical order.
Please follow the structure exactly as in the template and make sure the report is well organized, clearly written, and based on the provided data and rankings.
Thank you.
- IMD World Competitiveness Ranking
-
535 – Digital Design
Project Assignment Instructions Digital Design (Quartus II & ModelSim)
You are required to complete a full digital design project that includes design, implementation, simulation, report writing, and presentation. The project consists of two main sections: Dice Game and GCD Calculator. Make sure all work is accurate, complete, and professionally presented.
—
# Section 1: Electronic Dice Game Design
Design and implement an electronic dice game using VHDL based on the given rules.
## Steps to follow:
### 1. Understand the System
– Two counters simulate two dice (values from 1 to 6).
– The sum ranges from 2 to 12.
– Apply the game rules exactly as described.
—
### 2. Design the System Architecture
You must divide the system into:
– Data Path:
– Two counters (16)
– Adder (sum)
– Comparator
– Point Register
– Control Unit (FSM):
– Design an ASM (Algorithmic State Machine)
—
### 3. FSM States (Required)
Include at least the following states:
– IDLE
– ROLL
– CHECK_FIRST
– STORE_POINT
– CHECK_NEXT
– WIN
– LOSE
—
### 4. VHDL Implementation
– Write clean, modular VHDL code:
– Separate files for datapath and control unit
– Use meaningful signals and proper naming
– Add clear comments
—
### 5. Simulation (ModelSim)
– Create a testbench
– Verify:
– Dice rolling
– Sum calculation
– Win/Lose conditions
– Provide waveform screenshots
—
—
# Section 2: GCD Calculator Design
Design a digital circuit to compute the GCD of two N-bit numbers (e.g., 8-bit) using the Euclidean algorithm.
—
## Steps to follow:
### 1. Understand the Algorithm
Repeat:
– If A < B B = B – A
– Else A = A – B
Until A = B
—
### 2. Design the Architecture
– Registers: A, B
– Subtractor
– Comparator
– MUX
– Control Unit (FSM)
—
### 3. FSM States
– IDLE
– LOAD
– COMPARE
– SUBTRACT
– DONE
—
### 4. VHDL Implementation
– Modular design (datapath + control unit)
– Use clocked processes
– Ensure correct reset behavior
—
### 5. Simulation
– Apply different test cases
– Show:
– Input values
– Iterations
– Final GCD
– Done signal
—
—
# Quartus II Requirements
– Compile all designs successfully
– Show:
– RTL Viewer screenshots
– No critical errors
—
# ModelSim Requirements
– Full simulation for both sections
– Include waveform results
– Clearly label signals
—
—
# Report Requirements (Max 10 Pages)
## Must include:
### 1. Introduction
– Brief explanation of both systems
### 2. Design Approach
– Explain architecture (datapath + control)
– Include block diagrams
### 3. ASM / FSM Diagrams
– Clearly drawn and explained
### 4. VHDL Code
– Well-commented
– Organized into modules
### 5. Simulation Results
– Waveforms (ModelSim)
– Explanation of results
### 6. Discussion
– Challenges faced
– How they were solved
—
—
# Presentation Requirements
## Slides must include:
1. Project Title & Team Members
2. Overview of Dice Game
3. Dice Game Design (FSM + Diagram)
4. Simulation Results
5. GCD Algorithm Explanation
6. GCD Hardware Design
7. Simulation Results
8. Conclusion
—
## Important:
– Include live demonstration (Quartus or ModelSim)
– Each member must explain their part
– Keep slides simple and visual
—
—
# Work Quality Requirements
– No errors in logic
– Clean and readable code
– Accurate simulations
– Professional report formatting
– Clear explanation in presentation
—
—
# Final Deliverables
– VHDL files (Dice + GCD)
– ModelSim simulations
– Report (WORD, 10 pages)
– Presentation slides
– Demonstration ready
—
Make sure everything is complete, tested, and matches the assignment requirements exactly before submission.
-
BMHTC2-01-154 Hotel Real Estate Investment Strategy
Hello,
Please make sure the assignment is completed exactly according to the instructions and by strictly following the files and Excel template I shared with you. The work must be fully original and written without using any AI tools.
Kindly complete the project as follows:
Sheet 1 Scenario A (Operating Independently)
Prepare a full 10-year financial analysis for the hotel investment. This should include the initial investment, room revenues based on occupancy and room rates, F&B revenues, operating expenses, undistributed operating expenses, fixed expenses, interest expenses, and taxes.
From these calculations, determine:
Gross Operating Profit (GOP)
Net Operating Income (NOI)
Internal Rate of Return (IRR)Then clearly state whether the investment should proceed if the required rate of return is 12%.
Sheet 2 Scenario B (Management Contract with Marriott)
Repeat the same 10-year financial analysis, but include Marriotts management fees as follows:
Management Fee: 4%
Incentive Fee: 7%
Marketing Fee: 2%
Loyalty Program Fee: 1.5%Then calculate the IRR again and determine whether the investment should proceed if the required rate of return is 20%. Also include the calculation related to the brokers offer mentioned in the instructions.
Sheet 3 Question 2
Read the article about John Lewis and answer the following questions in maximum 200 words:- What has driven John Lewis strategy?
- Why might this strategy be effective? Please mention at least two reasons.
Please follow the files exactly, keep the structure clear and accurate, and do not add anything outside the required instructions.
Thank you.
-
Research Methodology
I am attaching a PDF with step-by-step instructions for the project, and I am also including the specific article you must use to complete it. This assignment. It will require more time and work than previous Research Application Assignments because this one counts as your final project for the semester. Because of that, I suggest you get started on it soon!
-
Political Science Question
I need help with a 35004000 word research paper for a political science course.
Its about proposing a policy idea for NATO 2030 and supporting it with theory and sources. and the idea should be from and releted to course
-
Studypool Professional
Waiting
Kamal Das
I have but one dream in lifeto buy a river.
In the twilight hour, I sit by its bank counting the waves,
Wondering to myself, how would it be to release fish into this water?
Suddenly, brother Subal arrived and sat beside me;
It is his habit to smoke tobacco.
With a single puff, he began to speak
(Subal:)
“Tell me brother, do you truly know what sorrow is?
I have only one desireto sleep on a kings bed.
That wish remains unfulfilled;
I could not become a king, I am but a slave to my dreams.
Yet, I live in hope of lying on that royal bed,
I havent given up; I keep weaving new dreams.
One day, I released a tiny fish into this river’s water,
Believing it would grow large within this river’s heart.
When it is grown, I shall catch it in the corner of my net,
But will it recognize methe one who set it free?”
(I said:)
“Oh brother Subal, you harbor a futile hope,
Does a fish stay in one place once released into the river?
It roams far and wide, spreading its fins like wings,
The one you let go, you shall never see again.
Perhaps it is already trapped in someone elses net,
Or maybe it has traveled a path far, far away.”
(Subal replied:)
“When you know all this, then why do you sit by this shore?
Just as you used to sit here with that person from your past;
She is gone, oh friend, she will never return,
Why wait for her in vain, watching the path?
Perhaps she is someone’s wife now, or living in happiness
Why nurse this pain in your heart by waiting for her?
Forget her, let go of that hope;
If a farmer lives only on hope, his crops will surely drown,
Don’t sit idle in hope, put your mind to work
If luck favors, the harvest will thrive; why wither away in thought?”
“Why be crestfallen over something that is lost?
So I say, forget that person; when someone new arriveslove them instead.”