Skip to main content

IELTS - General Training- Eassy Writing Task - 28

Some people think that the government should be responsible for crime prevention, while others believe that it is the responsibility of the individual to protect themselves. Discuss both sides and give your opinion.

Answer :
It is undoubtedly true that nowadays, the crime rate is increasing vulnerably all over the world. A number of people believe that it is catalyst of addiction towards liquor. In addition, the consumption of alcohol affects the decision making power of that brain. However, I quibble from the above statements and propound that a liquor ban might reduce the crime rate for some time.

TO begin with, banning alcohol isn't an appropriate way to prevent crime. If a person is addicted then he/she will try to get it at any cost without any consideration of the ban. For instance, the selling and purchase of drugs and alcohol are banned in most countries, but people do have access to them because they are sold illegally. Instead of a decrease in the crime rate, it might result in an increase because of trafficking and illegal selling and purchase.

To control the crime rate, efforts are needed from the government and parents. Firstly, parents need to ensure that they guide their children through the harms of booze on the health and the society. Additionally, they should teach their children, when they reach adulthood about the importance of having hard drinks responsibly if they want to drink. From the government, more and more awareness should be created about the ill-effects of liquor.  The administration should establish rehabilitation and support centers. This step will help people who want to quit drinking habits. In such centers, He/She can meet other similar people and they can inspire each other for quitting.

In recapitulation, the excessive consumption of alcohol makes people forget the difference between right and wrong, which indeed increases lawlessness. I think that banning alcohol isn't an effective solution. On the other hand, several other measures such as spreading awareness about booze among the present and future generations could be proven to be more impactful.
 
 

Popular posts from this blog

Java interview questions and answers for experienced (Core Java, Spring Boot, Hibernate, JPA)

 Here is a list of interview questions for the experienced guy who had more than 5 years of experience in Java, Spring Boot, Spring MVC, Hibernate, JPA. Please follow the questions bank for it.   @component vs @service vs @repository @Component: It is to mark a bean as a Spring-managed component. It is a generic stereotype for any spring-managed component. Spring will only pick up and register beans with @component and doesn't look for @service and @Repository @service:  The @Service annotation represents that our bean holds some business logic. @Repository: @Repository is a stereotype for the persistence layer and it is also a type of component. Its job is to catch all persistence-related exceptions and rethrow them as Spring DataAccessExceptions. Explain spring Bean Lifecycle A Spring bean needs to be instantiated when the container starts, based on JAVA or XML bean definition. ...

Java Collections Interview Q&A List

 The collection framework is the most important concept in java programming. It is necessary that you should have strong knowledge of the Collection framework. Through this article, I will share the topmost interview question and answers that will definitely help you in clearing your interview with flying colors. 1). What is the collection in java? List down interfaces and classes. The Collection is a set framework of interfaces and classes that provides an architecture to store and manipulate the group of objects. Java Collections can achieve all the operations that you perform on data such as searching, sorting, insertion, manipulation, and deletion. 2).  What are the advantages of the Collection framework? Feature Description Performance The collection framework provides highly effective and efficient data structures that result in enhancing the speed and accuracy of a program. Maintainability The code developed ...

Java Thread Interview Questions and answer

What is Thread in Java? Threads are basically the lightweight and smallest unit of processing that can be managed independently by a scheduler.  Threads are referred to as parts of a process that simply let a program execute efficiently with other parts or threads of the process at the same time.  Using threads, one can perform complicated tasks in the easiest way.  It is considered the simplest way to take advantage of multiple CPUs available in a machine. They share the common address space and are independent of each other. What are the benefits of using Multithreading? Allow the program to run continuously even if a part of it is blocked. Improve performance as compared to traditional parallel programs that use multiple processes.  Allows writing effective programs that utilize maximum CPU time Improves the responsiveness of complex applications or programs.  Increase use of CPU re...