IELTS Writing Task 2: 'music' essay

Here's my band 9 sample answer for the question below.

Some people say that music is a good way of bringing people of different cultures and ages together. To what extent do you agree or disagree with this opinion?

It is often said that music has the power to unite and connect people, regardless of their cultural backgrounds or ages. I completely agree with this view, and will give my reasons below.

Music can certainly reach across cultural and national boundaries and bring people together. Perhaps the best example of this would be the Live Aid concerts that took place back in the 1980s, and which were broadcast to a global audience. Two live events were held simultaneously in the UK and the US, and the objective was to raise funds for famine relief in Ethiopia. The concerts were a huge success, both in terms of the number of people around the world who watched them and their impact on international public awareness of the famine. They demonstrated, I believe, that music truly is the planet’s global language.

Just as it transcends cultures, music also has the ability to connect people from different generations. Regardless of age, we can all enjoy a memorable melody, a strong rhythm or a beautiful singing voice, and the best songs seem to have the same magical effect on all of us. This would explain why televised music competitions, such as ‘The X Factor’ or ‘The Voice’, are such popular prime-time shows. These programmes attract incredibly broad audiences because singing and popular songs appeal to children, parents and grandparents alike. I would argue that no other form of entertainment can bring families together in this way.

In conclusion, I believe that music is unique in its capacity to create shared experiences between people, irrespective of culture and age.

(265 words)

接下来:

https://ielts-simon.com/ielts-help-and-english-pr/2020/01/ielts-listening-oceans-gap-fill.html

IELTS Writing Task 2: 'music' essay的更多相关文章

  1. IELTS Writing Task 1: two-chart answer

    Thursday, January 09, 2020 The chart below shows the value of one country's exports in various categ ...

  2. IELTS Writing Tips

  3. 【251】◀▶IEW-Unit16

    Unit 16 Commodities and Manufacturered Goods 多幅饼图的写作技巧 1.model1对应图片分析 2.Model1范文分析 Model 1 The pie c ...

  4. 【236】◀▶IEW-Unit01

    Unit 1  Fast Food I.动名词的用法 Doing(V-ing) 核心思想:词性是名词,作用是动词 1. 名词 3)主语(句首) 保护环境是我们每个人的责任. Protecting th ...

  5. Await, and UI, and deadlocks! Oh my!

    It’s been awesome seeing the level of interest developers have had for the Async CTP and how much us ...

  6. How to (seriously) read a scientific paper

    How to (seriously) read a scientific paper Adam Ruben’s tongue-in-cheek column about the common diff ...

  7. Deadclock on calling async methond

    Issue: HttpClient.GetAsync(…) never returns when using await/async Related Posts: http://stackoverfl ...

  8. Java8新特性之Collectors

    参考:Java8新特性之Collectors 在第二天,你已经学习了Stream API能够让你以声明式的方式帮助你处理集合.我们看到collect是一个将管道流的结果集到一个list中的结束操作.c ...

  9. Java8学习笔记(七)--Collectors

    本系列文章翻译自@shekhargulati的java8-the-missing-tutorial 你已经学习了Stream API能够让你以声明式的方式帮助你处理集合.我们看到collect是一个将 ...

随机推荐

  1. BFS和DFS详解以及java实现(转载)

    作者:Leo-Yang 原文都先发布在作者个人博客:http://www.leoyang.net/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连 ...

  2. 2020牛客寒假算法基础集训营3 - G. 牛牛的Link Power II(线段树)

    题目链接:牛牛的Link Power II 题意:给你一个只含$0$和$1$的串,定义串的$Link$值为串中两个的$1$之间的距离的和,$(u,v)$和$(v,u)$被看认为是同一对,有$m$次操作 ...

  3. 【Python与线程】

    "   目录 一.全局解释器锁GIL 二.Python线程模块的选择 三.线程的创建 三.锁机制 四.信号量 五.事件 六.条件 七.定时器 八.线程队列 九.线程池 补充:线程安全 imp ...

  4. java中LinkedList源码分析

    ArrayList是动态数组,其实本质就是对数组的操作.那么LinkedList实现原理和ArrayList是完全不一样的.现在就来分析一下ArrayList和LinkeList的优劣吧LinkedL ...

  5. 《JavaScript高级程序设计》读书笔记(三)基本概念第三小节 String、Object类型

    内容---语法 上一小节---数据类型 本小节 String类型---流程控制语句---理解函数 String类型--零个或者多个16位Unicode字符组成字符序列,即字符串--可以由双引号&quo ...

  6. 复变函数知识总结(2)——Cauchy理论

    复变函数知识总结(2)——Cauchy理论 版本:2020-01-01 此版本不是最终版本,还有后续的补充和更新. 如有错误请指出,转载时请注明出处! page1 page2 page3 page4 ...

  7. Java中引用类型、对象的创建与销毁

    引用类型 在java中,除了基本数据类型之外的,就是引用数据类型了,引用指的是对象的一个引用,通过引用可以操作对象,控制对象,向对象发送消息. 简单来说,引用可以访问对象的属性,并调用对象的方法 创建 ...

  8. SQL 查询每组的第一条记录

    CREATE TABLE [dbo].[test1]( [program_id] [int] NULL, [person_id] [int] NULL ) ON [PRIMARY] /*查询每组分组中 ...

  9. MediaCreationTool制作WIN10安装U盘,安装纯净版win10的通用教程

    注意: 1.准备8G或8G以上U盘. 2.安装系统前备份好个人需要数据(制作U盘会格式化U盘,U盘内有需要的数据也事先备份好) 3.有预装office的务必记住自己激活office账户和密码以免重装后 ...

  10. GO面向接口

    Go 语言提供了另外一种数据类型即接口,它把所有的具有共性的方法定义在一起,任何其他类型只要实现了这些方法就是实现了这个接口. 实例 实例 /* 定义接口 */ type interface_name ...