Letter S Pronounced [z]

Since English is not a phonetic language, one letter is not always pronounced the same way.  The letter S is often pronounced as a Z in words like cousin, husband, and business.

YouTube blocked? Click here to see the video.

Video Text:

This video comes to you from Dillon, Colorado, where I’m spending Christmas with my family. I’m going to introduce you to my cousin and my cousin’s husband. Do you notice anything interesting about how those words are pronounced? If not, stay tuned.

>> Hi, I’m Rachel’s cousin Nikki.
>> I’m Rachel’s cousin’s husband, Steve.
>> Did you notice how they pronounced the words ‘cousin’ and ‘husband’? Listen again.
>> Hi, I’m Rachel’s cousin Nikki.
>> I’m Rachel’s cousin’s husband, Steve.

Did you notice how they pronounced the S as a Z sound? This is actually quite common in American English. I’ve done a video on how to pronounce plural nouns. There are many cases there where the final S will be pronounced as a final Z. The same rules apply to third person verb conjugations. But in the words ‘cousin’ and ‘husband’, they’re not plural nouns, and they’re not third person verb conjugations. They’re simply words where the S is pronounced as a Z. Unfortunately, there are no rules to tell you why the S is pronounced as a Z. But there are a whole slew of words where this is the case, and they just have to be memorized.

Two days ago, my cousin’s husband Steve took me snowboarding. Unfortunately, because I’m not very good at it, I fell many times. And I’ve ended up with a huge bruise on my knee. Both knees, actually. Did you notice? Because, with a Z. But also, did you notice, bruise. Spelled with an S, pronounced with a Z.

>> Don’t believe her, she did an excellent job. Do believe her about the bruise, though.
>> Yes, the bruise is, is not a lie.

Other words where the S is pronounced as a Z: is, his, use. Now, let’s stop for a minute and talk about use. In verb form, the S in ‘use’ is pronounced as a Z. But when it’s a noun, use, it’s pronounced as an S. So that’s one way you can differentiate between which form of the word is being used. This also applies to a few other words, for example, house. As a noun it is an S, and as a verb, house, it is a Z. Was, design, lose. These are just some of the many words where the S will be pronounced as a Z. Special thanks to my cousin and her husband for being in this video with me. That’s it, and thanks so much for using Rachel’s English.

Video:

Letter S Pronounced [z]的更多相关文章

  1. <java基础学习>RE 基础语法

    public class MyFirstJavaProgram{ public static void main(String[] args ){ System.out.println("H ...

  2. phpexcel操作

    <?php include './PHPExcel/PHPExcel.php'; include './PHPExcel/PHPExcel/Writer/Excel2007.php'; //或者 ...

  3. uva 11520 - Fill the Square

    http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&p ...

  4. ZOJ 1240 IBM Minus One

    /* You may have heard of the book '2001 - A Space Odyssey' by Arthur C. Clarke, or the film of the s ...

  5. SZU:G34 Love code

    Judge Info Memory Limit: 32768KB Case Time Limit: 10000MS Time Limit: 10000MS Judger: Normal Descrip ...

  6. POJ 3923 HDU 2487 Ugly Windows 简单计算

    Ugly Windows Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Tot ...

  7. [LeetCode] Pyramid Transition Matrix 金字塔转变矩阵

    We are stacking blocks to form a pyramid. Each block has a color which is a one letter string, like ...

  8. [Swift]LeetCode756. 金字塔转换矩阵 | Pyramid Transition Matrix

    We are stacking blocks to form a pyramid. Each block has a color which is a one letter string, like ...

  9. Kotlin基础(四)Lambda编程

    Lambda编程 一.Lambda表达式和成员引用 一)Lambda表达式语法 //注意与Java8中的区别 val sum={ x:Int,y:Int -> x+y } println(sum ...

随机推荐

  1. Android Studio启动后出现cannot bind to 127.0.0.1:5037 10048的解决办法

    第一次:先连接测试手机,然后启动Android studio时出现下面的弹框,网上查找资料说是360手机助手导致的,但是发现没有安装360手机助手只有360,卸载360后再启动Android stud ...

  2. c#day05

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ccc ...

  3. gulp 编译es6 react 教程 案例 配置

    1.gulp基本配置: var gulp = require('gulp'), watch = require('gulp-watch'), babel = require('gulp-babel') ...

  4. jquery选择器筛选器

    jQuery对象 Query 对象就是通过jQuery包装DOM对象后产生的对象.jQuery 对象是 jQuery 独有的. 如果一个对象是 jQuery 对象, 那么它就可以使用 jQuery 里 ...

  5. 18 LVM逻辑卷管理

    根据上一节的内容,我们知道md这个内核模块可以用来做软RAID的管理.同时RAID实现了两个功能:1.提高了磁盘的读写能力:2.对于数据进行了冗余备份: 但是,如果是管理员手动误删的数据,则一样无法找 ...

  6. VMware NAT模式多个虚拟机相互访问

    在一台主机上只允许有一个NAT模式的虚拟网络.因此,同一台主机上的多个采用NAT模式网络连接的虚拟机也是可以相互访问的.

  7. 前端笔记二:DOM事件

    ---恢复内容开始--- ---恢复内容结束---

  8. python-ddt 数据驱动测试

    # @File : learn_ddt.py #-*- coding:utf-8 -*- #本次学习:ddt ---data drive test--数据驱动测试 #1.安装 pip install ...

  9. day5--装饰器函数的信息打印,迭代器,生成器,列表推导式,内置函数

    本文档主要内容: 一 装饰器函数的信息打印 二 迭代器 三 生成器 四 生成器表达式和列表推导式 五 内置函数 一 装饰器函数的信息打印 一个函数一旦被装饰器给装饰后,这个函数的信息使用原来的命令打印 ...

  10. Python中__new__的作用

    __new__ 的作用 依照Python官方文档的说法,__new__方法主要是当你继承一些不可变的class时(比如int, str, tuple), 提供给你一个自定义这些类的实例化过程的途径.还 ...