Skip to main content

Vocab 66


1.       Detriment (n): It is the hurt or harm as a result of damage, loss, or a bad decision. The developers won the lawsuit, much to the detriment of the people who live near the construction site.

2.       Cubicle                 (n): It is a small space partitioned off within a larger space for a particular purpose usually reading or studying. Or just surfing the Internet.

E.g: I was getting undressed in one of the cubicles.

3.       Tenuous (adj): If something is tenuous it’s thin, either literally or metaphorically. If you try to learn a complicated mathematical concept by cramming for 45 minutes, you will have a tenuous gap of that concept, at best.
Something can physically tenuous, like a spiderweb or ice on a pond. We more often use it in a metaphorical sense, to talk about weak ideas. Tenuous arguments won’t win any debate tournaments.

4.       Hereditary (n): It is the biological process responsible for passing on physical traits from one generation to another. If your mom and dad both have dreamy blue eyes and so do you, then you have got hereditary to thank for your movie-star gaze.

It can refer to inheriting characteristics from your parents, or it can refer more broadly to the passing on of genetic factors from one generation to the next. Hereditary will determine a person’s hair color and height.

5.       Upbringing (n): The way in which someone is treated and educated when they are young, especially by their parents, especially in relation to the effect which this has on how they behave and make moral decisions.

E.g: Is it right to say all the crimes he committed were simply the result of his upbringing.

6.       Exploratory (adj): In order to discover more about something.

E.g: She’s having some exploratory tests done to find out what’s causing the illness.

7.       Reserved (adj): Describes people who do not often talk about or show their feelings or thoughts. In short, if you are reserved, you’re the opposite of a loudmouth, you’re polite, you have a lot of self-control, and you don’t show your feelings.

8.       Beastly (adj): Unkind or unpleasant.

E.g: We’ve had beastly weather all summer.

9.       Antagonism (n): It means hostility. You might feel antagonism to the teacher who gave you a D on your last test, and she might be angry at you for not working harder – there’s antagonism between you.

Antagonism is one of the few things you can share easily with someone you don’t like. You might feel antagonism toward your school, or at least the idea of going to school. If you’re an antagonistic person, you feel antagonism to lots of people and things.

10.   Proliferate (v): To increase a lot and suddenly in number.

E.g: The past two years have seen the proliferation of TV channels.

11.   Gnawing (adj): Continuously uncomfortable, worrying or painful.

E.g: I have had gnawing doubts about this project for some time.

12.   Dithering (v): To be unable to make a decision about doing something.

E.g: Stop dithering and choose which one you want!

13.   Resent (v): To feel angry because you have been forced to accept someone or something that you do not like.

To resent is a strong, negative feeling. You may resent the accusation that you were stealing cookies, or when a teacher yelled at you for whispering, even though everyone else was too. You might resent a friend who has more money or friends than you. Lots of people resent celebrities because they’re famous and wealthy.

14.   Gloat (v): If you gloat, you express great satisfaction at the misfortune of others. If your team scores a big win, it would be better not to gloat. Be happy for your win, but don’t laugh at their loss.

If your little sister won’t listen to your advice on how to improve her essay and then comes home with a bad grade, it will be very hard not to gloat and say “I told you so”.

15.   Commodity (n): It is any useful or valuable thing, especially something that is bought and sold. Grain, vegetables, and precious metals are commodities, but so are personal qualities that can be used to make money: Originality and imagination are rare commodities in the film business.

E.g: The country’s most valuable commodities include tin and diamonds.

 Compiled By: Amit V. Chaudhary

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