Skip to main content

Posts

Showing posts from January, 2018

Subject Pronouns Exercise - 1

Subject Pronouns Exercise - 1 Subject Pronouns are of two types - Singular (like I, You, He/She/It) and Plural (like We, You, They). Choose the correct subject pronouns: 1. (Your aunt Rita) . . . . . works for a large company in Finland. A) It B) She C) I 2. (John and I) . . . . . . have a favorite restaurant in downtown. A) You B) They C) We 3. Is this ice-cream for ...... or for you? A) he B) me C) mine 4.(Sam's motorbike) . . . . . has a very noisy engine. A) She B) You C) It 5. Did anyone see . . . . ? A) we B) us C) Any one of above 6. (The green banana) . . . . will be ripe in a couple of days. A) It B) they C) That 7. Michael has a dog.   . . . . is white. A) he B) it C) She 8. Hi! My name is James Bond.  . . . . . am twenty nine years old. A) You B) us C) I 9. (Jim, Dick, and Harry) . . . . . went biking on the long road together. A) That B) They C) You 10. (Our parents) . . . . . live in a sweet home in the a village. A) They B) He C) She 11. (My friend,...

Prepositions Exercise - 1

Prepositions Exercise - 1 Preposition is a word or group of words, such as in, from, to, away etc. used before a noun or pronoun to show place, position, time or method. [ Ending Sentences with Prepositions: Useful Tips by Manik Joshi ] Choose the correct Prepositions from the below Preposition's exercise: 1. Peter is unfit . . . . the hard work. A. for B. except C. because of D. into 2. They are fond . . . . reading romantic novels. A. against B. of C. because of D. towards 3. Always be respectful . . . . your elders. A. of B. under C. to D. from 4. Shanaya is great . . . . mathematics. A. in case of B. into C. of D. in 5. Little Anthony writes . . . . . a pen. A. with B. through C. towards D. under 6. Pizza delivery boy is . . . . the door. A. on B. at C. Outside D. To 7. The book is . . . . the table. A. instead of B. lying C. into D. on 8. You can achieve what you dream . . . . . . A. off B. for C. about D. by means of 9. The dark cloud was ....

AngularJS Promises

AngularJS Promises Answer AngularJS Promises questions below and test your knowledge about AngularJS Promises. 1. A promise implementation in one of its simplest forms is as follows: A) var promise = new Promise( () => ()); B) var promise = new Promise( () -> {}); C) var promise = new Promise( () => []); D) var promise = new Promise( () => {}); 2. A promise represents the final result of an . . . . . . . operation. A) asynchronous B) synchronous 3. A promise may be in one of the following states:(choose all that apply) A) Pending state B) Resolved state C) Rejected state D) Controlled state 4. The . . . . . method is a shorthand for promise.then(null, errorCallback). A) errorCallback() B) Call() C) catch() D) reject() 5. Promises require the caller to have access to the original function that returned the Promise in order to have a retry capability. A) True B) False 6. The promise constructor doesn't care at all about how the executor function b...

Angular 4 Observables

Angular 4 Observables The result of the Http.get method is an object, which is an example of an observable. Observables are part of a library called Reactive Extensions, produced by Microsoft, which is used by Angular to connect different parts of the appplication. [Essential Angular for ASP.NET Core MVC by Adam Freeman] Below are Angular 4 Observables questions and answers for your practice. 1. You import Observable from rxjs/observable to be used within a component. Once you have it imported, you can create an observable object by using the following syntax, where 'vname' is an observable name: 2. Observables allow you to watch values for changes over time and also Observables can have multiple values over time. A) True B) False 3. We can subscribe to an observable using the . . . . . . . . The benefit of this is that Angular deals with your subscription during the lifecycle of a component. Angular will automatically subscribe and unsubscribe for you. A) sync pi...

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