Skip to main content

English is so simple - 6

Noun – Case

A noun (or pronoun) is said to be in the nominative case if it is used as the subject of a verb. The subject is that part of the sentence which contains the person or thing we are speaking about. For example, in

The batsman scored more than 10,000 runs.

We have the batsman as the subject. Hence, batsman is in the nominative case. You can find the nominative case if you put “who?” or “what?” before the verb.

A noun (or pronoun) is said to be in the accusative case if it is used as the object of a verb. The accusative case is also known as the objective case. It can be found if you put “whom?” or “what?” after the subject and the verb. In the above example, runs is in the objective case.

Let us take one more example.

1.      The cat killed the mouse.

In (1), if we ask Who killed (verb)?, the answer is cat. So, cat is in the nominative case.

If we ask The cat killed what? or, more refinedly, what did the cat kill?, the answer is mouse. So, mouse is in the accusative case.

A noun is said to be possessive case if it denotes possession, authorship, origin, kind. It answers the question whose? The possessive case is also known as the genitive case. Look at the following examples:

The museum houses Mahatma Gandhi;s watch. (Whose watch?)
Elkazi’s group is staging O’Neik’s plays. (Whose group?, whose plays)

How is POSSESSIVE CASE formed?

1.      By adding ’s to a singular noun. Ex: minister’s, saint’s.
2.      By adding only an apostrophe (‘) to a singular noun when there are too many hissing sounds. Ex: Moses’s laws, for goodness’ sake, for justice’ sake.
3.      By adding apostrophe to plural nouns ending in s. Ex: stewards’, pilgrims’.
4.      By adding ‘s to plural nouns not ending in s. Ex: children’s, women’s.

Rule: When a noun consists of several words, the possessive sign is attached only to the last word.

Incorrect: The Queen’s of England reaction was important in the Diana episode.

Do not get mistaken that since it is the Queen’s reaction, the ‘s should come after Queen. You might think that putting it after England would make the reaction England’s and not the Queen’s. this is short-sightedness. Do not see Queen and England in isolation. Queen of England is one whole and the apostrophe should come at its end. So,

Correct: The Queen of England’s reaction was important in the Diana episode.

Rule: When two nouns are in apposition, the possessive sign is put to the later only.

What is noun in apposition? When one noun follows another to describe it, the noun which follows is said to be in apposition to the noun which comes before it. Both the nouns are in the same case. In

            Stephen Hawking, the scientist, has written A Brief History of Time.

the noun scientist is in apposition to the noun Stephen Hawking. Now, here is a sample of incorrect and correct sentences if you are going to Hawking’s country.

Incorrect: I am going to Stephen Hawking’s the scientist’s country.

Correct: I am going to Stephen Hawking the scientist’s country.

Rule: When two or more nouns show joint possession, the possessive sign is put to the latter only.

Incorrect: Amitabh and Ajitabh are Bachchanji’s sons. So Bachchanji is Amitabh’s and Ajitabh’s father.

The above grammatical usage would tantamount to there being two fathers (see next rule). This would lead to confusion. The first sentence categorilly says that they are sons of the same father. So,

Correct: So Bachchanji is Amitabh’s and Ajitabh’s father.

Rule: Each of the two or more connected nouns implying separate possessions must take the possessive sign.

Incorrect: The audience listened to Javed and Vajpayee’s poems.

Now, Javed and Vajpayee do not write poems together. The above usage would have been correct if used for Javed and Salim’s script because the Salim-Javed duo jointly wrote the scripts (see previous rule). Here, however, the authorship being different, we have

Correct: The audience listened to Javed’s and Vajpayee’s poems.

Rule: The possessive case is chiefly used with the names of living things.

Incorrect: The cart’s wheel was broken.

The cart is not a living thing. So the possessive case should not be used here.

Correct: The wheel of the cart was broken.

Rule: The possessive is also used with nouns denoting time, space or weight.

Incorrect: His house is at the throw of a stone from here.

The correct expression is a stone’s throw. Though the stone is not living thing, the possessive is used because the phrase denotes distance. The phrase means that the place is so near that if you throw a stone from here, it will reach there. Figuratively used, a stone’s throw from here.

Correct: His house is at a stone’s throw from here.



Compiled By: Chaudhary Amit V.

Post Credit: (Books: English Made Easy)

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...