In this lesson you will learn to describe an object.

课上内容(Lesson)

You want to rent a car. Go to the rental company and tell them  What you need.(你要去租赁公司租辆车,告诉他们你需要什么样的?)

I want to rent a car.

I am going to...

There are ... people.

I want a ..., and ... car.

You partner will tell you which car is best for you and why.

This car is best. It is very...and... What do you think?

A: Excuse me, I want to rent a car. I'm going to Hangzhou.

B: OK, What color  do you like?

A: I like a red car.

B: How many people are there?

A: 4 people.

B: OK,this car is the best for you.

A: Yeah. Is it expensive?

B: Yes, $450 for one day. But it is very fast and stylish.

A: Is it new?

B: Yes.

A: Oh,I don't want to rent a new car. Are there any old cars?

B: Yes, of course.How about this one?

A: ...

词汇(Key Word )

rent  英 [rent]  美 [rɛnt]

  • n. 租金
  • vt. 出租;租用;租借
  • vi. 租;出租
  • n. (Rent)人名;(瑞典)伦特

stylish  英 ['staɪlɪʃ]  美 ['staɪlɪʃ]

  • adj. 时髦的;现代风格的;潇洒的

countries 国家(country的复数)

at least  至少

dialogue  英 ['daɪəlɒg]  美 [ˈdaɪəˌlɔɡ]

  • n. 对话;意见交换
  • vi. 对话
  • vt. 用对话表达

Write the opposites(反义词)

big  ->  small

fast  ->  slow

new  ->  old

black  ->  white

expensive  ->  cheap

safe -> dangerous

easy -> difficult

句型(Sentences)

Is it a nice color?

Is it fast?

Is it big?

Is it cheap?

Is it easy to park?

Is it safe?

语法(Grammar)

"Be" Verb

I   am

He/She/It   is                from Canada.

You/we/They   are

缩写(Short questions):

I'm

He's/She's/It's              Canada.

You're/We're/They're

Am I

Is   he/she/it             Australian?

Are  you/we/they

回答:

Yes,I  am.

he/she/it    is.

you/we/they    are.

No,    I'm not.

he/she/it    isn't

you/we/they   aren't

English trip M1 - AC1 My Dream Car Teacher:Corrine的更多相关文章

  1. English trip M1 - PC6 Likes and Dislike Teacher:Jade

    In this lesson you will learn to talk about likes and dislikes. 课上内容(Lesson) # 通常在习惯性的表达式用 it's 来表达w ...

  2. English trip M1 - PC9 Where am I Teacher:Jade

    In this lesson you will learn to ask for and give directions    # 在本课中,您将学习如何提出要求并给出指示 Words North  ...

  3. English trip V1 - 23. Big and Bigger Teacher:Corrine Key: adjective comparisons 形容词 比较级

    In this lesson you will learn to make comparisons. 课上内容(Lesson) compare   n. 比较  vt. 比拟,喻为:[语]构成  vi ...

  4. English trip V2 - 3. A Healthy Diet Teacher:Corrine Key:各种前缀 im- un- in- re- over- under-

    In this lesson you will learn to talk about foot and drink for a healthy diet. 课上内容(Lesson) What do ...

  5. English trip M1 - AC11 I Dreamed a Dream? 我做了一个梦 Teacher:Lamb

    In this lesson you will learn to describe an experience.  这节课你讲学习到描述经历 课上内容(Lesson) 词汇(Key Word ) 句型 ...

  6. English trip M1 - PC1 Are you a Model? 你是模特吗? Teacher:Taylor

    In this lesson you will learn to talk about jobs. 课上内容(Lesson) What's your partner name? Her name is ...

  7. English trip M1 - AC9 Nosey people 爱管闲事的人 Teacher:Solo

    In this lesson you will learn to talk about what happened. 在本课中,您将学习如何谈论发生的事情. 课上内容(Lesson) # four “ ...

  8. English trip M1 - PC7 Can I Borrow Your Ping-Pong? Teacher:Patrick

    In this lesson you will learn to desribe abilities.  这节课你将学习到描述你的能力 课上内容(Lesson) 三种常见情态动词 can aux. 能 ...

  9. English trip V1 - 7.My dream car 我梦想的车 Teacher:Lamb Key: famous for

    中华In this lesson you will learn to describe an object(目标). 课上内容(Lesson) famous for   以…著称,闻名 国家(名词)  ...

随机推荐

  1. C# 字典常用方法

    /* ######### ############ ############# ## ########### ### ###### ##### ### ####### #### ### ####### ...

  2. 使用vs code搭建C开发环境

    关于搭建vscode的开发环境来开发c网上已经有很多类似的贴子,但是几乎都是直接给出tasks.json和launch.json文件,并未说明这两个文件的作用以及如何配置.这里面向纯小白着重说明下(1 ...

  3. JXOI2018守卫 区间DP

    链接 https://loj.ac/problem/2545 思路 f[i][j]表示i到j区间的最小监视人数 可以预处理出来g[i][j],表示i能否监视到j (其实预处理的关系不大,完全可以直接判 ...

  4. Oracle 基础学习笔记

    知识点 一.登陆数据库: 登陆数据库: sqlplus system/oracle123456 二.新建用户.授权(连接数据库.创建表.表空间.查询某用户下的表) 语法: create user [用 ...

  5. 【Mybatis】-- Mapper动态代理开发注意事项

    1.1. Mapper动态代理方式 1.1.1. 开发规范 Mapper接口开发方法只需要程序员编写Mapper接口(相当于Dao接口),由Mybatis框架根据接口定义创建接口的动态代理对象,代理对 ...

  6. JavaScript深入

    BOM(浏览器对象模型)——与浏览器对话: Window对象(代表浏览器的窗口——不包括工具栏.滚动条): //所有全局对象.全局函数,均自动成为window对象的成员(document属于浏览器,所 ...

  7. C++类的大小——sizeof(class)

    第一:空类的大小 class CBase { }; 运行cout<<"sizeof(CBase)="<<sizeof(CBase)<<endl; ...

  8. 【Django】【环境配置】Mac

    mysql环境配置:http://www.cnblogs.com/chenmo-xpw/p/6102933.html

  9. 【Python】【socket】

    [server.py] """#练习1import socketimport threading sock = socket.socket()sock.bind(('12 ...

  10. dataTables使用整理(一)

    初次使用dataTables,对一些用到的属性及遇到的问题做一个简要的记录 参考资料: http://blog.csdn.net/mickey_miki/article/details/8240477 ...