In a busy classroom filled with nearly 20 children, Sabriye Tenberken lectures her pupils to always help others who need it.

Norms can be defined as the established standard of behaviour maintained by a society.
规范可定义为已建立的由社会维护的行为标准。

Spray some insect repellent on your arms and legs before setting off. And you needn't worry too much about insects when you cycle.
出发前给你胳膊和腿部喷些驱虫剂。然后你骑车时就不需要太担心虫子了。

Recently, it held a gala party in New York City with a futuristic theme.

Some groups of synonyms are just words of different origins but refer to the same thing.

Certainly there are no two words that are interchangeable in all contexts.
当然,没有哪两个词语在任何语境下都可以互换。

There is much more social equality between parents and children than in most aristocratic societies or societies ruled by centuries of tradition.
比起大多数贵族社会或由几世纪传统统治的社会,(这个社会)的父母和孩子之间更平等。

The Bachelor of Social Science is in one faculty within the university: that is the faculty where I am working, known as Arts and Social Sciences.
社会科学学士学位设在大学一个系里:这就是我工作的系,称为人文社会科学系。

Our university works as a hierarchical system. At the top of the faculty we have a dean and below the dean we have three divisions.

Mores are norms that are regarded as highly necessary to the welfare of a society, often because they embody the most valuable principles of a people.
习俗被认为是社会的幸福极其需要的规范,往往是因为他们体现了一个民族最宝贵的原则。

After the Norman Conquest, the English vocabulary was doubled by the addition of French words, especially those words reflecting a higher standard of living and a more complex social life.

The next point I'd like to talk about is equality in the family.
接下来我想谈的是在家庭中的平等。

Sun cream is essential in hot weather because you can very easily get sun burned without even realizing it.

防晒霜在炎热天气中非常必要,因为如果没有意识到这一点,那么你很可能被晒伤。

Married American adults will name their husband or wife and their children, if they have any, as their "immediate family".

With the rise of the United States to a position of world influence in politics, science, industry, trade and popular arts, American words and phrases have gained recognition and prestige everywhere.
随着美国崛起,并在政治、科学、工业、贸易及流行文化上对世界产生影响,美国的词汇与用语到处受到认可与推崇。

BEC listen and translation exercise 34的更多相关文章

  1. BEC listen and translation exercise 11

    When you are in any contest you should work as if there were — to the very last minute — a chance to ...

  2. BEC listen and translation exercise 37

    You're supposed to do that before 10.30 in the morning, but obviously, if it's an emergency, you can ...

  3. BEC listen and translation exercise 35

    高中听力: At five o'clock, we have afternoon tea, but we don't have it in the kitchen. Father's Day is t ...

  4. BEC listen and translation exercise 31

    听力练习: All societies have ways of encouraging and enforcing what they view as appropriate behaviour w ...

  5. BEC listen and translation exercise 40

    However, recently there's been more and more interest in the development of ostrich farming in other ...

  6. BEC listen and translation exercise 13

    The old lady sits on a mobile chair every morning. He got a large fortune when his father died, but ...

  7. BEC listen and translation exercise 12

    More than 220 cities now have air quality monitoring systems and 42 others will have systems in plac ...

  8. BEC listen and translation exercise 9

    You will do foolish things, but do them with enthusiasm. 你难免会做傻事,但要做,就做得满怀激情. In addition, there sho ...

  9. BEC listen and translation exercise 8

    The double-decker plane that can carry over 550 passengers dwarfs all other commercial jets. In just ...

随机推荐

  1. python selenium2示例 - email发送

    前言 在进行日常的自动化测试实践中,我们总是需要将测试过程中的记录.结果等等等相关信息通过自动的手段发送给相关人员.python的smtplib.email模块为我们提供了很好的email发送等功能的 ...

  2. linux用一键安装包 禅道

    ----------------1.重启apache 和 mysql /opt/zbox/zbox restart -----------------2.问题1:发现端口被占用 apache启动报错( ...

  3. [c++]对象指针,引用的操作

    1.time类保存在"htime.h"中.要求: ⑴ 数据成员包括时(hour).分(minute).秒(second),为私有成员: ⑵ 能给数据成员提供值的成员函数(默认值为0 ...

  4. 一篇文章彻底弄清ARC始末

    本文转载至 http://blog.csdn.net/allison162004/article/details/38758265 自动引用计数(ARC)是编译器的一个特色,提供了Objective- ...

  5. OKR与KPI管理的区别与联系

    OKR是一种新兴的管理体系,最近几年被引进中国.由于在IT.互联网.金融.游戏等知识密集型企业中有着显著的效果,得到中国企业的认可. OKR是英文Objectives & Key Result ...

  6. 使用ILookup<TKey, TElement> 接口查找集合

    public class Program { public static void Main() { // 创建一个放入ilookup数据结构的School清单. List<School> ...

  7. Java中线程和线程池

    Java中开启多线程的三种方式 1.通过继承Thread实现 public class ThreadDemo extends Thread{ public void run(){ System.out ...

  8. 【python】-- 类的反射

    反射 反射我们以后会经常用到,这个东西实现了动态的装配,通过字符串来反射类中的属性和方法 一.反射函数 1.hasarttr(obj,name_str) 作用:判断一个对象obj中是否有对应的name ...

  9. Windows下重置MySQL密码(最开始是因为Access denied for user 'root'@'localhost'这个原因,无法登陆 'root'@'localhost')

    本人使用的MySQL5.5,其他版本未测试过. 方法一: 更改密码: mysql -u root -p Enter password:*** mysql>use mysql; 选择数据库 Dat ...

  10. setTimeout解决循环值的几种方法

    for(var i=0;i<5;i++){ setTimeout(function(){ console.log(`错误 ${i}`); },0) } for(var i=0;i<5;i+ ...