SlideShare a Scribd company logo
(2) Project Proposal- Literature Review- Discussion 75 words
each question (Capstone)
1.Why is research important to what we do?
2.What tools will you use to conduct your literature review?
What are the strengths and differences of each tool you chose?
Project Proposal- Literature Review-Assignment/Research and
Record References 1000 words
In order to better understand the problem that you wish to
investigate for your capstone topic, you will need to conduct a
review of the research literature. Your project should include a
review of the existing research on your topic and a discussion
comparing this research to your project focus. The review
should address what others have discovered or written about
your topic and how the research helps you with investigating
your capstone project.
For this step of your capstone project, you will need to
complete an annotated bibliography related to your APPROVED
TOPIC from the Week 1 proposal. Please refer to this link to
learn more about the purpose and contents of the annotated
bibliography:OWL at Purdue
Be sure to complete all three components of the annotated
bibliography (summarize, assess, reflect). Your initial annotated
bibliography should include 12-15 sources/references and
should follow APA writing style. References should be no older
than five years, but classic texts that outline well-established
theories may be included in three of the sources.
For those familiar with Excel, an Excel template is provided.
You can use this template while researching each reference or
use a text-based format as shown at the OWL at Purdue weblink
(above). Filling in a template as you research saves time when
trying to find a specific reference during the writing phase.
(3) Project Proposal- Procedures and Evaluations -Discussion
75 words for each question
1. What are things that get in the way of you achieving your
daily tasks/goals? How will you proactively address those
during the capstone?
2. What are some tangible items that you will need to access
and read for your capstone investigation? These should be
related to the problem you seek to solve.
Project Proposal- Procedures and Evaluations- Assignment 1000
words
Procedures and Evaluations Plan- Capstone
Describe how you plan to use your time over the next month
(Weeks 3-6 of this course) to investigate and gather information
related to your project. This could involve interviews,
observations, surveys, phone calls, review of critical
documents, etc. Explain what you will do to learn more about
the problem you are trying to solve and how you plan on
becoming an expert on both this topic and the setting in which
the problem you want to solve exists. This usually involves
learning everything you can about the people, culture, policies,
procedures, demographics, programs, strengths and weaknesses
of the context.
Your plan should be 1000-words in length, with title page and
reference page not counting towards the minimum word amount.
You may include tables, but your plan must follow the APA
standards as shown in Chapter 5 of the APA Publication
Manual, 6th edition. Clearly label the sections of your paper so
that the instructor knows exactly what topics you are addressing
in your discussion.
Procedures
Over the next three weeks, you will be completing the Project
Investigation phase of the capstone project. Therefore, you need
to describe your plan for how you will spend your time over the
next month, on a daily basis in order to achieve the goals you
describe in your Topic Proposal in Week 1. Provide a step-by-
step analysis of how you intend to meet your goals, including
resources you will need, where you intend to find them, and an
estimated timeline of how long each step will take. This is a
very important section of your proposal. Describe in detail
exactly what you will achieve and investigate in relation to your
capstone topic for every day over the next four weeks. You
literally need to label the days of your plan (Day 1, Day2, Day
3… Day 28). Outline what deliverables will be targeted each
week.
A deliverable is a tangible product (e.g., locate and read the
organization’s Use of Force policy, review the process for
investigating officer-involved shootings, evaluate the agency’s
critical incident management program, etc.). This represents
your work plan and schedule of deliverables. By knowing which
deliverables you need to collect, you will know what you need
to gather and accomplish each week. The plan should be
thoughtful, laser-focused, detailed, and scaffolded so that
earlier pieces and deliverables support later pieces.
Evaluations
Explain how your project is to be evaluated. Is your
organization going to evaluate it? How? Community evaluation?
Problem-oriented policing and the SARA model? What
specifically will make your project a success, both to you and to
others? In relation to the evaluation of your project by
outsiders, describe who, what, when, where and how.
class Home:
# constructor
def __init__(self):
self.__squarefeet = 0
self.__address = ""
self.__city = ""
self.__state = ""
self.__zipcode = 0
self.__modelname = ""
self.__slaestatus = ""
def addNewHome(self):
self.__squarefeet = int(input('Enter squarefeet: '))
self.__address = input('Enter adress: ')
self.__city = input('Enter city: ')
self.__state = input('Enter state: ')
self.__zipcode = int(input('Enter zipcode: '))
self.__modelname = input('Enter Modelname: ')
self.__slaestatus = input('Enter salestatus (sold, avilable,
under contract): ')
def removeHome(self):
self.__squarefeet = 0
self.__address = ""
self.__city = ""
self.__state = ""
self.__zipcode = 0
self.__modelname = ""
self.__slaestatus = ""
print(" removed! ")
def updateHome(self):
self.__squarefeet = int(input('Enter squarefeet: '))
self.__address = input('Enter adress: ')
self.__city = input('Enter city: ')
self.__state = input('Enter state: ')
self.__zipcode = int(input('Enter zipcode: '))
self.__modelname = input('Enter Modelname: ')
self.__slaestatus = input('Enter salestatus (sold, avilable,
under contract): ')
def getAddress(self):
return self.__address
def getSquarefeet(self):
return self.__squarefeet
def getCity(self):
return self.__city
def getState(self):
return self.__state
def getZipcode(self):
return self.__zipcode
def getModelName(self):
return self.__modelname
def getSaleStatus(self):
return self.__slaestatus
home = []
while True:
print('1. Create new home ')
print('2. Update home')
print('3. remove home')
print('4. save to file')
print('5. Exit')
option = int(input('Enter your response [1, 2, 3, 4, 5]: '))
if option == 1:
temp = Home()
temp.addNewHome()
home.append(temp)
elif option == 2:
address = input('Enter adress to update: ')
index = -1
for i in range(len(home)):
if home[i].getAddress() == address:
index = i
break
else:
print('Address not found')
if(index != -1):
home[index].updateHome()
elif option == 3:
address = input('Enter adress to update: ')
index = -1
for i in range(len(home)):
if home[i].getAddress() == address:
index = i
break
if(index != -1):
home[index].removeHome()
del home[index]
else:
print('Address not found')
elif option == 4:
myfile = open("home.txt","w")
for x in range(len(home)):
myfile.write(str(home[x].getAddress())+' n')
myfile.write(str(home[x].getSquarefeet())+' n')
myfile.write(str(home[x].getCity())+'n')
myfile.write(str(home[x].getState())+'n')
myfile.write(str(home[x].getZipcode())+' n')
myfile.write(str(home[x].getModelName())+' n')
myfile.write(str(home[x].getSaleStatus())+'n')
elif option == 5:
break
else:
print("wrong option !")

More Related Content

Similar to (2) Project Proposal- Literature Review- Discussion 75 words each

CBR 600 Imagine Your Future/newtonhelp.com   
CBR 600 Imagine Your Future/newtonhelp.com   CBR 600 Imagine Your Future/newtonhelp.com   
CBR 600 Imagine Your Future/newtonhelp.com   
bellflower39
 
CBR 600 Life of the Mind/newtonhelp.com   
CBR 600 Life of the Mind/newtonhelp.com   CBR 600 Life of the Mind/newtonhelp.com   
CBR 600 Life of the Mind/newtonhelp.com   
llflowerbe
 
Finance homework help
Finance homework helpFinance homework help
Finance homework help
Dissertation59
 
Cbr 600 Enhance teaching / snaptutorial.com
Cbr 600    Enhance teaching / snaptutorial.comCbr 600    Enhance teaching / snaptutorial.com
Cbr 600 Enhance teaching / snaptutorial.com
Baileyabq
 
CBR 600 Focus Dreams/newtonhelp.com
CBR 600 Focus Dreams/newtonhelp.comCBR 600 Focus Dreams/newtonhelp.com
CBR 600 Focus Dreams/newtonhelp.com
bellflower79
 
Unit 7 project briefing
Unit 7 project briefingUnit 7 project briefing
Unit 7 project briefing
Les Bicknell
 
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advertSheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
rock73
 
Cbr 600 Extraordinary Success/newtonhelp.com
Cbr 600 Extraordinary Success/newtonhelp.com  Cbr 600 Extraordinary Success/newtonhelp.com
Cbr 600 Extraordinary Success/newtonhelp.com
amaranthbeg140
 
Briefing 10th dec
Briefing 10th decBriefing 10th dec
Briefing 10th dec
Les Bicknell
 
Dissertation Structure GuidelinesIt will be important to set
Dissertation Structure GuidelinesIt will be important to setDissertation Structure GuidelinesIt will be important to set
Dissertation Structure GuidelinesIt will be important to set
DustiBuckner14
 
Cbr 600 Believe Possibilities / snaptutorial.com
Cbr 600  Believe Possibilities / snaptutorial.comCbr 600  Believe Possibilities / snaptutorial.com
Cbr 600 Believe Possibilities / snaptutorial.com
Davis5a
 
Cbr 600 Education Organization-snaptutorial.com
Cbr 600 Education Organization-snaptutorial.comCbr 600 Education Organization-snaptutorial.com
Cbr 600 Education Organization-snaptutorial.com
robertlesew1
 
Cbr 600 Exceptional Education - snaptutorial.com
Cbr 600  Exceptional Education - snaptutorial.comCbr 600  Exceptional Education - snaptutorial.com
Cbr 600 Exceptional Education - snaptutorial.com
DavisMurphyA87
 
MODULE 3- Planning and Conceptualizing.pptx
MODULE 3- Planning and Conceptualizing.pptxMODULE 3- Planning and Conceptualizing.pptx
MODULE 3- Planning and Conceptualizing.pptx
FrenzDelaCruz2
 
Apply Information System Auditing AssignmentResearch an art.docx
Apply Information System Auditing AssignmentResearch an art.docxApply Information System Auditing AssignmentResearch an art.docx
Apply Information System Auditing AssignmentResearch an art.docx
armitageclaire49
 
Cbr 600Education Specialist / snaptutorial.com
Cbr 600Education Specialist / snaptutorial.comCbr 600Education Specialist / snaptutorial.com
Cbr 600Education Specialist / snaptutorial.com
McdonaldRyan73
 

Similar to (2) Project Proposal- Literature Review- Discussion 75 words each (16)

CBR 600 Imagine Your Future/newtonhelp.com   
CBR 600 Imagine Your Future/newtonhelp.com   CBR 600 Imagine Your Future/newtonhelp.com   
CBR 600 Imagine Your Future/newtonhelp.com   
 
CBR 600 Life of the Mind/newtonhelp.com   
CBR 600 Life of the Mind/newtonhelp.com   CBR 600 Life of the Mind/newtonhelp.com   
CBR 600 Life of the Mind/newtonhelp.com   
 
Finance homework help
Finance homework helpFinance homework help
Finance homework help
 
Cbr 600 Enhance teaching / snaptutorial.com
Cbr 600    Enhance teaching / snaptutorial.comCbr 600    Enhance teaching / snaptutorial.com
Cbr 600 Enhance teaching / snaptutorial.com
 
CBR 600 Focus Dreams/newtonhelp.com
CBR 600 Focus Dreams/newtonhelp.comCBR 600 Focus Dreams/newtonhelp.com
CBR 600 Focus Dreams/newtonhelp.com
 
Unit 7 project briefing
Unit 7 project briefingUnit 7 project briefing
Unit 7 project briefing
 
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advertSheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
Sheet1 your name hereadvertiser #1advertiser #2advertiser #3advert
 
Cbr 600 Extraordinary Success/newtonhelp.com
Cbr 600 Extraordinary Success/newtonhelp.com  Cbr 600 Extraordinary Success/newtonhelp.com
Cbr 600 Extraordinary Success/newtonhelp.com
 
Briefing 10th dec
Briefing 10th decBriefing 10th dec
Briefing 10th dec
 
Dissertation Structure GuidelinesIt will be important to set
Dissertation Structure GuidelinesIt will be important to setDissertation Structure GuidelinesIt will be important to set
Dissertation Structure GuidelinesIt will be important to set
 
Cbr 600 Believe Possibilities / snaptutorial.com
Cbr 600  Believe Possibilities / snaptutorial.comCbr 600  Believe Possibilities / snaptutorial.com
Cbr 600 Believe Possibilities / snaptutorial.com
 
Cbr 600 Education Organization-snaptutorial.com
Cbr 600 Education Organization-snaptutorial.comCbr 600 Education Organization-snaptutorial.com
Cbr 600 Education Organization-snaptutorial.com
 
Cbr 600 Exceptional Education - snaptutorial.com
Cbr 600  Exceptional Education - snaptutorial.comCbr 600  Exceptional Education - snaptutorial.com
Cbr 600 Exceptional Education - snaptutorial.com
 
MODULE 3- Planning and Conceptualizing.pptx
MODULE 3- Planning and Conceptualizing.pptxMODULE 3- Planning and Conceptualizing.pptx
MODULE 3- Planning and Conceptualizing.pptx
 
Apply Information System Auditing AssignmentResearch an art.docx
Apply Information System Auditing AssignmentResearch an art.docxApply Information System Auditing AssignmentResearch an art.docx
Apply Information System Auditing AssignmentResearch an art.docx
 
Cbr 600Education Specialist / snaptutorial.com
Cbr 600Education Specialist / snaptutorial.comCbr 600Education Specialist / snaptutorial.com
Cbr 600Education Specialist / snaptutorial.com
 

More from SilvaGraf83

1 Evidence-Based Practices to Guide Clinica
1  Evidence-Based Practices to Guide Clinica1  Evidence-Based Practices to Guide Clinica
1 Evidence-Based Practices to Guide Clinica
SilvaGraf83
 
1 Green Book Film Analysis Sugiarto Mulj
1  Green Book Film Analysis  Sugiarto Mulj1  Green Book Film Analysis  Sugiarto Mulj
1 Green Book Film Analysis Sugiarto Mulj
SilvaGraf83
 
1 Film Essay 1 Film from 1940-1970
1  Film Essay 1 Film from 1940-1970 1  Film Essay 1 Film from 1940-1970
1 Film Essay 1 Film from 1940-1970
SilvaGraf83
 
1 Department of Health and Human Performance, College of Ch
1  Department of Health and Human Performance, College of Ch1  Department of Health and Human Performance, College of Ch
1 Department of Health and Human Performance, College of Ch
SilvaGraf83
 
1 FIN 2063 INSURANCE FINANCIAL PLANNING Case As
1  FIN 2063 INSURANCE FINANCIAL PLANNING Case As1  FIN 2063 INSURANCE FINANCIAL PLANNING Case As
1 FIN 2063 INSURANCE FINANCIAL PLANNING Case As
SilvaGraf83
 
1 Faculty of Science, Engineering and Computi
1  Faculty of Science, Engineering and Computi1  Faculty of Science, Engineering and Computi
1 Faculty of Science, Engineering and Computi
SilvaGraf83
 
1 EARLY C
1  EARLY C1  EARLY C
1 EARLY C
SilvaGraf83
 
1 Case Grading Procedure Your grade from each case
1  Case Grading Procedure Your grade from each case 1  Case Grading Procedure Your grade from each case
1 Case Grading Procedure Your grade from each case
SilvaGraf83
 
1 Kilimanjaro is a snow-covered mountain 19,710 feet hi
1  Kilimanjaro is a snow-covered mountain 19,710 feet hi1  Kilimanjaro is a snow-covered mountain 19,710 feet hi
1 Kilimanjaro is a snow-covered mountain 19,710 feet hi
SilvaGraf83
 
1 Assignment 2 Winter 2022Problem 1 Assume yo
1  Assignment 2 Winter 2022Problem 1 Assume yo1  Assignment 2 Winter 2022Problem 1 Assume yo
1 Assignment 2 Winter 2022Problem 1 Assume yo
SilvaGraf83
 
1 COU 680 Adult Psychosocial Assessment Sabrina Da
1  COU 680 Adult Psychosocial Assessment Sabrina  Da1  COU 680 Adult Psychosocial Assessment Sabrina  Da
1 COU 680 Adult Psychosocial Assessment Sabrina Da
SilvaGraf83
 
1 Literature Review on How Biofilm Affect the
1  Literature Review on How Biofilm Affect the1  Literature Review on How Biofilm Affect the
1 Literature Review on How Biofilm Affect the
SilvaGraf83
 
1 Canterbury Tales (c. 12th century)
1  Canterbury Tales        (c. 12th century)  1  Canterbury Tales        (c. 12th century)
1 Canterbury Tales (c. 12th century)
SilvaGraf83
 
1 Math 140 Exam 2 COC Spring 2022 150 Points
1  Math 140 Exam 2 COC Spring 2022 150 Points  1  Math 140 Exam 2 COC Spring 2022 150 Points
1 Math 140 Exam 2 COC Spring 2022 150 Points
SilvaGraf83
 
1 Lessons from the past How the deadly second wave
1  Lessons from the past How the deadly second wave1  Lessons from the past How the deadly second wave
1 Lessons from the past How the deadly second wave
SilvaGraf83
 
1 Lockheed Martin Corporation Abdussamet Akca
1  Lockheed Martin Corporation Abdussamet Akca  1  Lockheed Martin Corporation Abdussamet Akca
1 Lockheed Martin Corporation Abdussamet Akca
SilvaGraf83
 
1 Lab 9 Comparison of Two Field Methods in a Scien
1  Lab 9 Comparison of Two Field Methods in a Scien1  Lab 9 Comparison of Two Field Methods in a Scien
1 Lab 9 Comparison of Two Field Methods in a Scien
SilvaGraf83
 
1 LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
1  LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P1  LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
1 LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
SilvaGraf83
 
1 Instructions for Coming of Age in Mississippi
1  Instructions for Coming of  Age in Mississippi 1  Instructions for Coming of  Age in Mississippi
1 Instructions for Coming of Age in Mississippi
SilvaGraf83
 
1 Institutional Assessment Report 2012-13
1  Institutional Assessment Report 2012-13  1  Institutional Assessment Report 2012-13
1 Institutional Assessment Report 2012-13
SilvaGraf83
 

More from SilvaGraf83 (20)

1 Evidence-Based Practices to Guide Clinica
1  Evidence-Based Practices to Guide Clinica1  Evidence-Based Practices to Guide Clinica
1 Evidence-Based Practices to Guide Clinica
 
1 Green Book Film Analysis Sugiarto Mulj
1  Green Book Film Analysis  Sugiarto Mulj1  Green Book Film Analysis  Sugiarto Mulj
1 Green Book Film Analysis Sugiarto Mulj
 
1 Film Essay 1 Film from 1940-1970
1  Film Essay 1 Film from 1940-1970 1  Film Essay 1 Film from 1940-1970
1 Film Essay 1 Film from 1940-1970
 
1 Department of Health and Human Performance, College of Ch
1  Department of Health and Human Performance, College of Ch1  Department of Health and Human Performance, College of Ch
1 Department of Health and Human Performance, College of Ch
 
1 FIN 2063 INSURANCE FINANCIAL PLANNING Case As
1  FIN 2063 INSURANCE FINANCIAL PLANNING Case As1  FIN 2063 INSURANCE FINANCIAL PLANNING Case As
1 FIN 2063 INSURANCE FINANCIAL PLANNING Case As
 
1 Faculty of Science, Engineering and Computi
1  Faculty of Science, Engineering and Computi1  Faculty of Science, Engineering and Computi
1 Faculty of Science, Engineering and Computi
 
1 EARLY C
1  EARLY C1  EARLY C
1 EARLY C
 
1 Case Grading Procedure Your grade from each case
1  Case Grading Procedure Your grade from each case 1  Case Grading Procedure Your grade from each case
1 Case Grading Procedure Your grade from each case
 
1 Kilimanjaro is a snow-covered mountain 19,710 feet hi
1  Kilimanjaro is a snow-covered mountain 19,710 feet hi1  Kilimanjaro is a snow-covered mountain 19,710 feet hi
1 Kilimanjaro is a snow-covered mountain 19,710 feet hi
 
1 Assignment 2 Winter 2022Problem 1 Assume yo
1  Assignment 2 Winter 2022Problem 1 Assume yo1  Assignment 2 Winter 2022Problem 1 Assume yo
1 Assignment 2 Winter 2022Problem 1 Assume yo
 
1 COU 680 Adult Psychosocial Assessment Sabrina Da
1  COU 680 Adult Psychosocial Assessment Sabrina  Da1  COU 680 Adult Psychosocial Assessment Sabrina  Da
1 COU 680 Adult Psychosocial Assessment Sabrina Da
 
1 Literature Review on How Biofilm Affect the
1  Literature Review on How Biofilm Affect the1  Literature Review on How Biofilm Affect the
1 Literature Review on How Biofilm Affect the
 
1 Canterbury Tales (c. 12th century)
1  Canterbury Tales        (c. 12th century)  1  Canterbury Tales        (c. 12th century)
1 Canterbury Tales (c. 12th century)
 
1 Math 140 Exam 2 COC Spring 2022 150 Points
1  Math 140 Exam 2 COC Spring 2022 150 Points  1  Math 140 Exam 2 COC Spring 2022 150 Points
1 Math 140 Exam 2 COC Spring 2022 150 Points
 
1 Lessons from the past How the deadly second wave
1  Lessons from the past How the deadly second wave1  Lessons from the past How the deadly second wave
1 Lessons from the past How the deadly second wave
 
1 Lockheed Martin Corporation Abdussamet Akca
1  Lockheed Martin Corporation Abdussamet Akca  1  Lockheed Martin Corporation Abdussamet Akca
1 Lockheed Martin Corporation Abdussamet Akca
 
1 Lab 9 Comparison of Two Field Methods in a Scien
1  Lab 9 Comparison of Two Field Methods in a Scien1  Lab 9 Comparison of Two Field Methods in a Scien
1 Lab 9 Comparison of Two Field Methods in a Scien
 
1 LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
1  LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P1  LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
1 LAB MODULE 5 GLOBAL TEMPERATURE PATTERNS Note P
 
1 Instructions for Coming of Age in Mississippi
1  Instructions for Coming of  Age in Mississippi 1  Instructions for Coming of  Age in Mississippi
1 Instructions for Coming of Age in Mississippi
 
1 Institutional Assessment Report 2012-13
1  Institutional Assessment Report 2012-13  1  Institutional Assessment Report 2012-13
1 Institutional Assessment Report 2012-13
 

Recently uploaded

PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 

Recently uploaded (20)

PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 

(2) Project Proposal- Literature Review- Discussion 75 words each

  • 1. (2) Project Proposal- Literature Review- Discussion 75 words each question (Capstone) 1.Why is research important to what we do? 2.What tools will you use to conduct your literature review? What are the strengths and differences of each tool you chose? Project Proposal- Literature Review-Assignment/Research and Record References 1000 words In order to better understand the problem that you wish to investigate for your capstone topic, you will need to conduct a review of the research literature. Your project should include a review of the existing research on your topic and a discussion comparing this research to your project focus. The review should address what others have discovered or written about your topic and how the research helps you with investigating your capstone project. For this step of your capstone project, you will need to complete an annotated bibliography related to your APPROVED TOPIC from the Week 1 proposal. Please refer to this link to learn more about the purpose and contents of the annotated bibliography:OWL at Purdue Be sure to complete all three components of the annotated bibliography (summarize, assess, reflect). Your initial annotated bibliography should include 12-15 sources/references and should follow APA writing style. References should be no older than five years, but classic texts that outline well-established theories may be included in three of the sources. For those familiar with Excel, an Excel template is provided. You can use this template while researching each reference or use a text-based format as shown at the OWL at Purdue weblink (above). Filling in a template as you research saves time when trying to find a specific reference during the writing phase.
  • 2. (3) Project Proposal- Procedures and Evaluations -Discussion 75 words for each question 1. What are things that get in the way of you achieving your daily tasks/goals? How will you proactively address those during the capstone? 2. What are some tangible items that you will need to access and read for your capstone investigation? These should be related to the problem you seek to solve. Project Proposal- Procedures and Evaluations- Assignment 1000 words Procedures and Evaluations Plan- Capstone Describe how you plan to use your time over the next month (Weeks 3-6 of this course) to investigate and gather information related to your project. This could involve interviews, observations, surveys, phone calls, review of critical documents, etc. Explain what you will do to learn more about the problem you are trying to solve and how you plan on becoming an expert on both this topic and the setting in which the problem you want to solve exists. This usually involves learning everything you can about the people, culture, policies, procedures, demographics, programs, strengths and weaknesses of the context. Your plan should be 1000-words in length, with title page and reference page not counting towards the minimum word amount. You may include tables, but your plan must follow the APA standards as shown in Chapter 5 of the APA Publication Manual, 6th edition. Clearly label the sections of your paper so that the instructor knows exactly what topics you are addressing in your discussion. Procedures Over the next three weeks, you will be completing the Project Investigation phase of the capstone project. Therefore, you need to describe your plan for how you will spend your time over the next month, on a daily basis in order to achieve the goals you
  • 3. describe in your Topic Proposal in Week 1. Provide a step-by- step analysis of how you intend to meet your goals, including resources you will need, where you intend to find them, and an estimated timeline of how long each step will take. This is a very important section of your proposal. Describe in detail exactly what you will achieve and investigate in relation to your capstone topic for every day over the next four weeks. You literally need to label the days of your plan (Day 1, Day2, Day 3… Day 28). Outline what deliverables will be targeted each week. A deliverable is a tangible product (e.g., locate and read the organization’s Use of Force policy, review the process for investigating officer-involved shootings, evaluate the agency’s critical incident management program, etc.). This represents your work plan and schedule of deliverables. By knowing which deliverables you need to collect, you will know what you need to gather and accomplish each week. The plan should be thoughtful, laser-focused, detailed, and scaffolded so that earlier pieces and deliverables support later pieces. Evaluations Explain how your project is to be evaluated. Is your organization going to evaluate it? How? Community evaluation? Problem-oriented policing and the SARA model? What specifically will make your project a success, both to you and to others? In relation to the evaluation of your project by outsiders, describe who, what, when, where and how. class Home: # constructor
  • 4. def __init__(self): self.__squarefeet = 0 self.__address = "" self.__city = "" self.__state = "" self.__zipcode = 0
  • 5. self.__modelname = "" self.__slaestatus = "" def addNewHome(self): self.__squarefeet = int(input('Enter squarefeet: ')) self.__address = input('Enter adress: ') self.__city = input('Enter city: ')
  • 6. self.__state = input('Enter state: ') self.__zipcode = int(input('Enter zipcode: ')) self.__modelname = input('Enter Modelname: ') self.__slaestatus = input('Enter salestatus (sold, avilable, under contract): ') def removeHome(self):
  • 7. self.__squarefeet = 0 self.__address = "" self.__city = "" self.__state = "" self.__zipcode = 0 self.__modelname = ""
  • 8. self.__slaestatus = "" print(" removed! ") def updateHome(self): self.__squarefeet = int(input('Enter squarefeet: ')) self.__address = input('Enter adress: ') self.__city = input('Enter city: ')
  • 9. self.__state = input('Enter state: ') self.__zipcode = int(input('Enter zipcode: ')) self.__modelname = input('Enter Modelname: ') self.__slaestatus = input('Enter salestatus (sold, avilable, under contract): ') def getAddress(self): return self.__address
  • 10. def getSquarefeet(self): return self.__squarefeet def getCity(self): return self.__city def getState(self): return self.__state
  • 11. def getZipcode(self): return self.__zipcode def getModelName(self): return self.__modelname def getSaleStatus(self): return self.__slaestatus
  • 12. home = [] while True: print('1. Create new home ') print('2. Update home') print('3. remove home') print('4. save to file')
  • 13. print('5. Exit') option = int(input('Enter your response [1, 2, 3, 4, 5]: ')) if option == 1: temp = Home() temp.addNewHome() home.append(temp)
  • 14. elif option == 2: address = input('Enter adress to update: ') index = -1 for i in range(len(home)): if home[i].getAddress() == address: index = i
  • 15. break else: print('Address not found') if(index != -1): home[index].updateHome() elif option == 3:
  • 16. address = input('Enter adress to update: ') index = -1 for i in range(len(home)): if home[i].getAddress() == address: index = i break
  • 17. if(index != -1): home[index].removeHome() del home[index] else: print('Address not found') elif option == 4:
  • 18. myfile = open("home.txt","w") for x in range(len(home)): myfile.write(str(home[x].getAddress())+' n') myfile.write(str(home[x].getSquarefeet())+' n') myfile.write(str(home[x].getCity())+'n') myfile.write(str(home[x].getState())+'n')