Coursera课程笔记----Write Professional Emails in English----Week 5
Culture Matters(Week 5)
High/Low Context Communication
High Context Communication
- The Middle East, Asia, Africa, South America
- Non-explicit
 - Descriptive
 - Longer Emails
 
 
Low Context Communication
- North America, Western Europe
- Straight forward
 - Concise
 - Efficient
 - Logic
 - Facts
 - Directness
 
 
Low Context Writer + High Context Reader
- Status & identity need acknowledgement
 - Building a relationship is important
 
High Context Writer + Low Context Reader
- Efficiency & effectiveness through tasks
 - Direct questions are used for clarity
 
Age & Gender Considerations
DO:
- Use RESPECTFUL words(Mr., Ms., Mrs.)
 - Use official TITLES
 
DON'T:
- Don't use SLANG words
 - Limit references to POP culture
 
Gender
- Keep Gender NEUTRAL
 - NO BIAS
 
Assignment: Write an Email to Yourself
Subject:
Learning Impressions from English Courses
Message:
Dear Me,
I come from China and my mother language is Chinese, and it's a high-context communication culture. So if you would like to write a letter to one Chinese person, you'd better build a good relationship with that person. If you want to write a professional email, I recommend you to remenber keep your subject line clean and specific, keep your message concise and humble and do not forget to review before send it out. The best advice I received through this course is the inportance of efficient and logic. I hope you will enjoy the next course.
Regards,
Xinzhe Wang
Coursera课程笔记----Write Professional Emails in English----Week 5的更多相关文章
- Coursera课程笔记----Write Professional Emails in English----Week 1
		
Get to Know Basic Email Writing Structures(Week 1) Introduction to Course Email and Editing Basics S ...
 - Coursera课程笔记----Write Professional Emails in English----Week 3
		
Introduction and Announcement Emails (Week 3) Overview of Introduction & Announcement Emails Bas ...
 - Coursera课程笔记----Write Professional Emails in English----Week 4
		
Request and Apology Emails(Week 4) How to Write Request Emails Write more POLITELY & SINCERELUY ...
 - Coursera课程笔记----Write Professional Emails in English----Week 2
		
Let's Start Writing (Week 2) Write Effective Subject Lines be BRIEF 50 characters or less = 5-7 word ...
 - 操作系统学习笔记----进程/线程模型----Coursera课程笔记
		
操作系统学习笔记----进程/线程模型----Coursera课程笔记 进程/线程模型 0. 概述 0.1 进程模型 多道程序设计 进程的概念.进程控制块 进程状态及转换.进程队列 进程控制----进 ...
 - Coursera课程笔记----C++程序设计----Week3
		
类和对象(Week 3) 内联成员函数和重载成员函数 内联成员函数 inline + 成员函数 整个函数题出现在类定义内部 class B{ inline void func1(); //方式1 vo ...
 - Coursera课程笔记----C程序设计进阶----Week 5
		
指针(二) (Week 5) 字符串与指针 指向数组的指针 int a[10]; int *p; p = a; 指向字符串的指针 指向字符串的指针变量 char a[10]; char *p; p = ...
 - Coursera课程笔记----C程序设计进阶----Week 4
		
指针(一) (Week 4) 什么是"指针" 互联网上的资源--地址 当获得一个地址,就能得到该地址对应的资源,所以可以把"网址"称为指向资源的"指针 ...
 - Coursera课程笔记----C程序设计进阶----Week 3
		
函数的递归(Week 3) 什么是递归 引入 函数可以嵌套调用:无论嵌套多少层,原理都一样 函数不能嵌套定义:不能在一个函数里再定义另一个函数,因为所有函数一律平等 问题:一个函数能调用它自己吗? 举 ...
 
随机推荐
- redis 分布式锁的 5个坑,真是又大又深
			
引言 最近项目上线的频率颇高,连着几天加班熬夜,身体有点吃不消精神也有些萎靡,无奈业务方催的紧,工期就在眼前只能硬着头皮上了.脑子浑浑噩噩的时候,写的就不能叫代码,可以直接叫做Bug.我就熬夜写了一个 ...
 - python3购物车
			
python3实现购物车小程序,优化后将程序分成函数,用文件注册和验证用户名密码. #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 20 ...
 - Python爬取养眼图片
			
1.准备 各位绅士们,你可能会觉得疫情在家无聊,那么现在我们的Python语言可以满足你们的需求.项目需要的工具(1)Python3(2)requests库requests库可以通过代码pip ins ...
 - spring boot 项目 mvn clean install 报 "Unable to find main class" 的解决方法
			
按照步骤来总会解决的 检查pom.xml中是否加入了spring boot maven插件 <build> <plugins> <plugin> <group ...
 - Linux 设置秘钥登录(SSH免密连接)
			
Secure Shell 协议,简称 SSH,是一种加密网络协议,用于客户端和主机之间的安全连接,并支持各种身份验证机制,目前最实用的身份验证机制就是基于密码的身份验证和基于公钥的身份验证两种.Lin ...
 - poj_1323 Game Prediction 贪心
			
Game Prediction Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 11814 Accepted: 5701 ...
 - 徐州H
			
#include<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<=b;++i) #defi ...
 - 初篇:我与Linux
			
据悉,红帽认证将于本年的8月份更换Rhel7为Rhel8.所以我想趁这次机会搏一搏. 我个人是初中就神仰Linux已久,只不过那个时候的我只知道Linux系统,不知道有什么区分.奈何那 ...
 - python连接mysql数据表查询表获取数据导入到txt中
			
import pymysql'''连接mysql数据表查询表获取数据导入到txt中'''#查询结果写入数据到txtdef get_loan_number(file_txt): connect = py ...
 - MySQL用另一张表的字段值Update本表
			
SQL示例: UPDATE TABLE1 a, TABLE2 b SET a.field1 = b. field1 [, a.field2 = b.field2, ...] WHERE a.connn ...