Skip to main content

Vocab 74

1.       Dignify (v): To cause something to be valued and respected when that is not deserved.

E.g: I’m not even going to dignify that stupid question with an answer.

2.       Revert (v): While revert means to return to something earlier or to go back, it’s often used wrongly in combination. If you’re buying the older version of the game, you might say you’re reverting back”, which is like saying “go back back”.

You can revert to a simpler way of life or revert to bad behavior. Though rare in modern use, some international English speakers do use revert back for reply in writing and e-mail, but most of the time, using revert with back is redundant, or repetitive.

E.g: Why does the conversation have to revert to money every five minutes?

3.       Evasive (1) (adj): Answering questions in a way that is not direct or clear, especially because you do not want to give an honest answer.

E.g: When Tony was caught by police, he started giving evasive answers to addle them.

(2): Done to avoid something bad happening.

E.g: By the time the pilot realized how close the plane was to the building, it was too late to take evasive action.

4.       Imperative (adj): When something absolutely has to be done and cannot be put off, use this word.

“Do it” is an imperative statement. It’s till used that way, but it’s more commonly applied to something so pressing it cannot be put off. “Hiring new workers has become imperative”. In short, it is extremely important or urgent.

E.g: The president said it was imperative that the release of all hostages be secured.

5.       Pachyderm (n): A pachyderm is a really big animal with really thick skin, like an elephant, hippo, or rhino.

If you break this word to its parts, you see pachy which means thick and derm which means skin. It is believed that thick skinned animals all belonged to the same family and categorized them together. We now know to classify them according to different features.

6.       Erstwhile (adj): If your dad used to play in a punk band, but is now a computer programmer, you could call him an erstwhile punk rocker. Erstwhile means previous or former.

You can go to your class reunion 20 years after you graduate high school and see your erstwhile friends. That means that they had been your friends, but you lost touch with them, so that they weren’t friends of yours anymore. Can you think of some people that you wish were erstwhile classmates of yours?

7.       Raucous (adj): It means unpleasantly loud, or behaving in a noisy and disorderly way. It can be hard to give an oral report in the front of a classroom when the kids in the back are being raucous.

Raucous is often used to refer to loud laughter, loud voices, or a loud party, all of which can be harsh or unpleasant. Near synonyms are strident and rowdy.

8.       Premises (n): The land and buildings owned by someone, especially by a company or organization.

E.g: The company is relocating to new premises.

9.       Conspiracy (n): When people secretly plan together to do something bad or illegal.

E.g: The three men are accused of conspiracy.

10.   Hue (n): Green, orange, yellow, and blue – each of these is a hue, a color or a shade that’s true. A rainbow shows the melting of one hue to into another, from red to violet, and all shades in between.

The noun hue means both a color and a shade of a color. Green is a hue and turquoise is a hue of both green and blue.

E.g: The speech had a hue of politics – disguised with humor – that turned the mayor’s face from pale hue to red as he laughed.

11.   Indulge (v): To allow yourself or another person to have something enjoyable, especially more than is good for you. (to enjoy freely).

E.g: I love champagne but I don’t often indulge myself.

12.   Wail (v): To wail is to let loose a long loud cry. When it comes to expressing unhappiness, wailing lies at the extreme end of the spectrum. So, it’s best to save the response for life’s most unpleasant moments.

E.g: The women gathered around the coffin and began to wail, as was the custom in the region.

13.   Brood (n): A brood is a group of young born (mostly birds) at the same time – like a brood of chicks – but your parents might use the word for you and your siblings: “We are taking the whole brood to the movies tonight”.

14.   Stupefied (v): If something leaves you stupefied it has made you so astonished you can’t speak or even really think.

E.g: After seeing Jayesh dancing on the stage, who used to get gullible easily, we were stupefied.

15.   Howl (v): If a dog or wolf howls, it makes a long, sad sound.

E.g: In the silence of the night, a lone wolf howled.



Compiled By: Chaudhary Amit V.

Source: Vocabulary.com, Cambridge Dictionary

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