Skip to main content

Participle exercises with answers - Set 1

Participle exercises with answers - Set 1


Participle is a word formed from a verb (for example going, gone, being, been) and used as an adjective (for example working woman, burnt toast) or a noun (for example good breeding). In English language participles are also used to make compound verb forms (e.g. is going, has been). [Via]

Present participle is formed by adding ing to the base form of a verb. If the verb ends with the letter g, l, m, n, p or t (with a short vowel sound before it), this letter is doubled, for example: dig - digging, swim - swimming etc.
If the verb ends with the letter e, this letter is dropped, for example come - coming, have - having etc.
If the verb ends with the letters ie, these letters are changed to y, for example die - dying, tie - tying etc. [Source: English Grammar And Exercises 3, Book 4 by Chapman L.R.H.]

Complete the following sentences using present participle:

1) The sisters fell asleep after . . . . . . a sumptuous meal. (eat)

2) Did you hear the child . . . .? (cry)

3) There are some pretty flowers . . . . . in the garden. (bloom)

4) My brother is next to the woman . . . . . . the pink hat. (wear)
[This is example of present participle being used as an adjective. The participle phrase 'wearing the pink hat' describes the woman.]

5) We thought that the guidelines were . . . . . . (confuse)
[This is an example of present participle being used as an adjective.]

6) The milkman’s son watched his father . . . . . the goats. (milk)

7) She left home without . . . . . . goodbye to her husband and children. (say)

8) Tina turned off the television after . . . . . . the news. (hear)

9) . . . . . . a vehicle without good brakes is unsafe. (drive)

10) Yesterday John saved the . . . . . child. (drown)

11) I saw the Lion . . . . . . . (approach)

12) Mini truck . . . . . vegetables crashed on the highway. (carry)

13) The XYZ company is . . . . . sub standard products. (make)

14) The . . . . . sound is coming from the adjacent room. (annoy)

15) Bravo, you kids are . . . . . (amaze)

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...