Skip to main content

I need help with critiquing four different journal articles from the FBI Law Enforcement Bulletin. The articles must have been published in last 2...

Here are critiques of four articles from the last two years of the FBI Law Enforcement Bulletin:


1. "Law Enforcement Chaplains: Defining Their Roles" by Richard Braswell, Bryan Steinkopf, M.S., and Angela Beamer, M.A. Published online on 11/9/2016.


This article is about the variety of the roles chaplains play in law enforcement. The thesis is that the variety of their roles is a strength. These roles include corrections, departmental functioning, community-police relations, line-of-duty deaths, officer wellbeing, and crisis interventions. The article presents evidence and details about all these roles. The conclusion is that these roles can also present ambiguity about chaplains' roles and that organizations must define the chaplains' roles more clearly. Future research can look at how to define these roles (though this isn't mentioned in the article) and reduce ambiguity. This article presents ambiguities and raises important questions about chaplains' roles that should be resolved to help chaplains function most effectively. 


2. "No-Body Homicide Cases: A Practical Approach"  by Michael L. Yoder, M.A. Published online on 11/9/2016.


This article is about the high number of missing persons reported each day and the reasons for their disappearance. Officers must act quickly to identify homicide cases and must immediately preserve electronic data that can be erased quickly. This article does not present evidence but presents best practices that officers must follow in the case of no-body homicide cases. The conclusion is that investigators should follow the practices established by the FBI’s Behavioral Analysis Unit 4. There are no calls for future research, but future research can evaluate the effectiveness of the routines and practices established by the Behavioral Analysis Unit 4. This article is a springboard for future discussions about these practices.


3. "Mental Preparedness Training" by Judith P. Andersen, Ph.D., Konstantinos Papazoglou, M.A., Harri Gustafsberg, M.Sc., Peter Collins, M.D., and Bengt Arnetz, M.D. Published 3/9/2016.


This article presents medical evidence about the long-term effects of stress on officers, including elevated levels of cortisol, depression, and heart disease. The thesis is that given these stressors, law enforcement agencies must have mental preparedness exercises as part of their training for officers. The study presents the literature on officers' mental preparedness programs, including a study on training officers in breathing techniques that were shown to improve judgment and decision making among officers. The article presents the components, costs, and need for such training programs and draws the conclusion that law enforcement agencies must put into place empirically validated mental preparedness programs before officers become stressed so that officers can have the best health outcomes and be most effective at their jobs. The study calls for increased collaboration between law enforcement agencies and psychologists to implement these types of programs. This is a valid suggestion for future research.


4. "Policing in the Casino Gaming Environment: Methods, Risks, and Challenges" by Kenneth J. Peak, Ph.D. Published 5/5/2015.


This article looks at the functions of private security officers in casinos and examines their roles, including surveillance and security. The article does not include methods but introduces details about private casino security and their practices, including their need not to follow Miranda warnings. The article draws the conclusion that these officers have similar duties to public officers but also have unique duties and that private casino security officers must work with law enforcement. There is no call for future research, but future research can look at how the collaboration between private officers and public law enforcement might work most effectively in casinos. This article clarifies the roles of private security officers in casinos. 

Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...