Functions and Custom Blocks to pluralize words

Slides:



Advertisements
Similar presentations
Suffixes –s, -es and -ies
Advertisements

Singular and Plural Nouns
Created by Gayle Hughes
Talking Letters Consonants Lessons 1 - 5
Grammar Lesson 10 Vocab: Quorum – number of persons needed at a meeting in order for business to take place Caucus – meeting to further special interests.
Prefix- -root- -suffix Word Study Fall un- prefix- not Homework- add another example to share tmw. front back middle draw a picture To match a word.
The plural of a noun is usually made by adding ‘s’ to the singular: e.g.day days dog dogs kart karts.
Singular and Plural Nouns
Singular and Plural Nouns Unit One. Singular Nouns A noun that names one person, place, thing, or idea is a singular noun.
Plural Nouns Plural means more than 1! There are several rules for making nouns plural.
MAKING NOUNS PLURAL. PLURAL NOUNS A plural form of a noun names more than one person, place, thing, or idea.
Plurals of Words Ending in -y (2nd grade) Content Standard Reading 1.1.5: Content Standard Reading 1.1.5: Identify and correctly use regular plurals (e.g.
SINGULAR AND PLURAL NOUNS
Grammar - Singular and Plural Nouns Mr. Marlon F. Bravo Instructor.
Plural Nouns.
Nouns Proper Nouns Common Nouns Concrete Nouns Abstract Nouns
Making Single Nouns Plural
Language Arts Singular and Plural Nouns. Take the paper and fold like a hot dog. Left hand Column=Singular Noun Right handColumn= Plural Noun Write the.
Noun 1. box door home beauty freedom A person, place, thing, idea, or quality.
C A Date: _______I can find examples on pages: 123 Objective: I will be able to distinguish between fact and opinion. Key Words: Fact, Opinion Notes/examples:
A singular noun names one person, place, thing or idea. A plural noun names more than one person, place, thing, or idea.
The vowels are: a, e, i, o, and u The consonants are: b, c, d, f, g, h, j, k, l, m, n, p, q, r, s, t, v, w, x, y, and z.
Singular and Plural Nouns. Nouns Noun—A person, place, or thing. Singular noun—Names one person, place, or thing. Plural noun—Names more than one person,
Regular Plurals. Noun endingForming the Plural Example Ends in s, x, ch, or sh Add –es boss bosses tax taxes bush bushes Ends in a consonant + y Change.
Suffixes: -ies Some words are singular, we can make them plural, when the special letters are right there at the end …
Grammar in Action! 5 th Grade Ms. Lentz. Making Words Plural… When you make a word plural, you make it mean more than one.When you make a word plural,
boy church daisy boys churches daisies  The boy ran past the store. The boys ran past the stores. Put the pencil in the desk. Put the pencils in the.
Possessive Nouns NOUNS REVIEW NOUNS - name a person, place or thing SINGULAR NOUNS - name only one (tree) PLURAL NOUNS - name more than one Add s (dogs)
9 Great Spelling Rules October Kindly contributed to by Judith White, Somerset Skills & Learning.
Making Nouns Plural Making articles plural Chapter 2.1.
Nouns Countable (plural, singular) Uncountable (only singular)
Plurals ending in an s sound By the end of this lesson you should be able to: Identify when the plural needs to be indicated using ies or s Identify when.
Articles (a) And (an). Indefinite articles - a and an A and an are the indefinite articles. They refer to something not specifically known to the person.
Nouns  Person, place, thing, idea happiness School bus chef The Statue of Liberty.
Nouns: Plurals & Contractions
Primary Longman Elect 2A Chapter 4 Plural nouns ―
Spelling reminders 1: Plurals of nouns
Regular Plural Nouns.
Adding s or es to the word to make it plural
Nouns.
THE RULES To most words you just add ‘s’….. dog / dogs
Making Words Plural… It’s a Piece of Cake!
Grammar Journeys Lesson 5 Singular and Plural Nouns
Singular and Plural Nouns
Singular and Plural Nouns
Making Nouns Plural Making articles plural
Forming plural form of a noun
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Singular and Plural Nouns.
B Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
B Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
LA: Tuesday, October 9, 2018 Handouts: * Grammar #9 (Nouns: Singular and Plural) Homework: * Grammar #9 (Nouns: Singular and Plural) 3.
English: Wednesday, October 10, 2018
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Plural and Singular Nouns
A singular noun names one person, place, thing or idea.
Grammar Dictionary 3 Column Notes.
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Changing a singular noun to plural
C Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Year 1 SPAG Plurals adding s or -es NCLO: Use s or –es at the end of nouns to make them plural.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Singular and Plural Nouns
Forming plural form of a noun
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
W Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
H Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
Presentation transcript:

Functions and Custom Blocks to pluralize words

Basics – dog -> dogs We want to create a function that takes a STRING of text that changes the end of our STRING to be the plural version. Dog should change to Dogs. Pluralize (string) { Report ( Join ( string, ‘s’ ) ) }

Dog or Boss? We need to create a condition to check for. Does the string end with an ‘s’? How do we find the last letter of a string?

Is Last Letter of (string) = ? Above is the condition we want to create. In this case we want to check if the last letter is = ‘s’. IF ( Last Letter of ( string ) = s ) { Report ( Join ( string , ‘es’ ) ) }

Special Case - H How many special H cases or examples does plural-h activity ask us to program for? But how many outcomes or results do we need? If ( 2nd to last letter = c OR s ) then Join (String, ‘es’) If ( 2nd to last letter = t ) then Join (String, ‘s’) And the default Report (Join (string, ‘s’) Crutch – or ch Moth – th Bush - sh -> crutchES -> mothS -> bushES = Join ( string, ‘es’ ) = Join ( string, ‘s’ )

Special Case - Y Cases for words ending in Y: a. If the word ends in a vowel (a,e,i,o,u) + y then just add s. boy/boys, journey/journeys, key/keys, tray/trays. b. If the word ends in a consonant + y then y changes to -ies country/countries, baby/babies, body/bodies, memory/memories, sky/skies, variety / varieties... The first case is easy, just add a ‘Y’. The 2nd case requires you to remove ALL BUT LAST LETTER OF the string. I wonder if there is a block that does that?

How do you replace more than one letter? In special case Y, you used the ALL BUT LAST LETTER OF () block to drop the ‘y’ and add ‘ies’ instead. But there is no block to replace 2 or 3 or 4 letter from a string of characters. We’ll have to make one. First, let’s look at how the ALL BUT LAST LETTER OF block works. Find and open that block in the editor.