Get to Know Basic Email Writing Structures(Week 1) Introduction to Course Email and Editing Basics Subject Lines and Email Text Introductions and Announcements Requests and Apologies Culture Considerations Email an Introduction of Yourself to Your Co…
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 Eff…
Request and Apology Emails(Week 4) How to Write Request Emails Write more POLITELY & SINCERELUY Please Could/Would...? Would you mind...? would like Polite Request PLEASE Please send me your resume. Please meet me today at 3PM. Please give me directi…
Let's Start Writing (Week 2) Write Effective Subject Lines be BRIEF 50 characters or less = 5-7 words for all devices: 25-30 characters = 3 - 5 words be CLEAR Include KEY WORDS Put important words at BEGINNING Introduce,introduction Introduction - Xi…
指针(二) (Week 5) 字符串与指针 指向数组的指针 int a[10]; int *p; p = a; 指向字符串的指针 指向字符串的指针变量 char a[10]; char *p; p = a; int main() { int a = 5; int *pa = &a; int b[6] = {1,2,3,4,5,6}; int *pb = b; char c[6] = {'h','e','l','l','o','\0'}; char *pc = c; cout<<a<…