Skip to main content

Pronouns Exercise

Pronouns Exercise


There are many different types of pronouns like Personal pronouns (for example he, they), Demonstrative pronouns (for example this, these), Interrogative pronouns (for example which, who), Indefinite pronouns (for example none, several) and so on. From the below pronouns exercise, choose the correct pronouns for the highlighted word in each sentence.

1. Yesterday "nobody" said a word in the meeting.

A) Indefinite
B) Interrogative
C) Reflexive
D) Personal
E) Demonstrative

2. "None" of these students were present.

A) Personal
B) Demonstrative
C) Interrogative
D) Indefinite
E) Relative

3. We couldn’t trust that it was finally "ours".

A) Possessive
B) Interrogative
C) Relative
D) Personal
E) Indefinite

4. The winning amount is "theirs".

A) Relative
B) Personal
C) Indefinite
D) Possessive
E) Interrogative

5. Michael and Jacky were talking to "each other" in the lecture hall.

A) Personal
B) Indefinite
C) Possessive
D) Reciprocal
E) Interrogative

6. We will contact "one another" once the target is accomplished.

A) Relative
B) Possessive
C) Reciprocal
D) Indefinite
E) Personal

7. Sam gave "me" his own Donut.

A) Personal
B) Indefinite
C) Relative
D) Reciprocal
E) Possessive

8. Giselle wanted to do it all by "herself".

A) Reciprocal
B) Possessive
C) Indefinite
D) Personal
E) Reflexive

9. We can’t find "them".

A) Personal
B) Demonstrative
C) Indefinite
D) Reflexive
E) Reciprocal

10. The boy "who" usually cleans my car has won the lottery.

A) Reciprocal
B) Relative
C) Reflexive
D) Personal
E) Demonstrative

11. "He" wants to go to Turkey.

A) Demonstrative
B) Indefinite
C) Relative
D) Reflexive
E) Personal

12. "Why" are you always hitting the wrong ball in the game.

A) Interrogative
B) Personal
C) Relative
D) Reflexive
E) Demonstrative

13. "These" are the perfect pair of shoes.

A) Relative
B) Indefinite
C) Demonstrative
D) Reflexive
E) Reciprocal

14. They cannot help "themselves".

A) Relative
B) Indefinite
C) Demonstrative
D) Reflexive
E) Reciprocal

15. "Some" will do anything to earn millions.

A) Relative
B) Reciprocal
C) Demonstrative
D) Reflexive
E) Indefinite

Answers

Comments

Popular posts from this blog

Conjunction Worksheet

Practice English Grammar Conjunctions with the below Conjunction worksheet. Apart from this Conjunction worksheet, you can also go through other Conjunction exercises: Conjunction exercise 1 , Conjunction exercise 2 . Co-ordinating Conjunctions A conjunction placed between words, phrases, clauses, or sentences of equal rank, e.g. and, but, or. [ Via ] Correlative Conjunctions They get their name from the fact that they work together (co-) and relate one sentence element to another. Correlative conjunctions include pairs like "both/and," "whether/or," "either/or," "neither/nor," "not/but" and "not only/but also". [ Via ] For example He'd rather run to school than walking. Identify Co-ordinating Conjunctions: 1. Many women and children came to see the movie. 2. I wrote to him, but she did not respond. 3. Her condition became worse, so she was taken to nearby hospital. 4. We should hire a cab, otherwise we will n...

50 Top DHCP Multiple Choice Questions and Answers

Below are the list of top 50 DHCP multiple choice questions and answers for freshers beginners and experienced DHCP Multiple Choice Questions and Answers 1. What is the purpose of the DHCP server? A � to provide storage for email B � to translate URLs to IP addresses C � to translate IPv4 addresses to MAC addresses D � to provide an IP configuration information to hosts Answer: D 2. How is the message sent from a PC2 when is first powers on and attempts to contact the DHCP Server? A � Layer 3 unicast B � Layer 3 broadcast C � Layer 3 multicast D � Without any Layer 3 encapsulation Answer: B 3. What is the default behavior of R1 when PC1 requests service from DHCP server? A � Drop the request B � Broadcast the request to R2 and R3 C � Forward the request to R2 D � Broadcast the request to R2, R3 and ISP Answer: A 4. Refer to the exhibit. Which rule does the DHCP server use when there is an IP address conflict? A. The address is removed from the pool until the conflict is resolved. B. Th...

PHP Constructors Multiple Choice Questions

PHP Constructors Multiple Choice Questions 1) PHP recognises constructors by the name . . . . . A) _construct B) __construct C) __constructor D) _constructor 2) In . . . . . constructors, it is important to remember that you have to call the parent constructor explicitly. A) Singleton B) secure C) public D) subclass 3) Constructor and destructor methods have no . . . . . . and are called automatically - they cannot be called explicitly and consequently their declarations need no access specifier. A) parameters B) destructor C) return value D) aproval 4) Unlike constructors, you cannot pass information to a destructor, because you are never sure when its going to be run. A) True B) False 5) You can invoke class constructors that don’t have any relation to the instantiated object by simply prefacing _constructor with the class name like A) classname::__construct() B) classname:__construct() C) classname=>__construct() D) classname->__construct() 6) . . . . . . is...