Skip to main content

Vocab 69

1.       Thrill (n): A feeling of extreme excitement usually caused by something pleasant.

E.g: The thrill of winning a competition.

2.       Endeavour (v): To endeavour is to strive for something. The endeavor itself is the thing you’re striving for, the enterprise or undertaking. So if you endeavour something, you do it with earnestness and a fair amount of effort.

E.g: Engineers are endeavoring to locate the source of the problem.

3.       Singe (v): To burn slightly on the surface, without producing flames.

E.g: My jumper started to singe when I leaned over a burning candle.

4.       Scorch (v): To (cause to) change colour with dry heat, or to burn slightly.

E.g: The iron was too hot and it scorched the shirt.

5.       Elm (n): A large tree which loses its leaves in winter, of the wood from his tree.

6.       Devastate (v): If a storm devastates your town, it comes pretty close to destroying it. To devastate is to cause destruction.

Really bad news can devastate a person, or leave them devastated. They are so upset, they feel crushed.

7.       Transfusion (n): The process of adding an amount of blood to the body of a person or animal, or the amount of the blood itself.

E.g: She suffered kidney failure and needed a blood transfusion.

8.       Protest (v): A protest is a formal declaration of objection. When there are big meetings of powerful countries and corporations, there are often protests staged in front of the meeting building, by people who think that what’s happening inside is wrong.

E.g: A formal protest was made by the German team about their disqualification from the relay final.

9.       Induce (v): To induce is to move or lead someone to action. A promise of lollipop can induce a toddler to do just about anything, even sit down and be polite to Aunt Edna. Older kids need something more substantial.

Some people believe that if you offer someone a large enough sum of money, you could induce them to do almost anything.

10.       Prolong (v): I don’t want to prolong this definition, so I’ll keep it short. To prolong is to make something last longer or to stretch it out in time.

You see the word long in prolong and it’s no trick. If you prolong an argument with a sibling, you make it longer than it naturally would be. Prolong always has to do with time. When you stretch your neck or a piece of cloth to make it appear longer, you are elongating, not prolonging it.

11.       Onslaught (n): It is a military term that refers to an attack against an enemy. It’s safe to say that no one wants to be caught on the receiving end of an onslaught, because there will be lots of danger, destruction and probably death.

E.g: Scotland’s onslaught on Wales in the second half of the match earned them a 1 – 4 victory.

12.       Prescribe (v): To prescribe is make orders or give directions for something to be done. These days, the word is mainly used by doctors who prescribe medication to take.

Doctors do a lot of prescribing: they prescribe drugs, rest, exercise, and getting rid of bad habits like smoking. When a doctor prescribes something, he or she is saying, “You need to do this. You should do it.”

13       Steadily (adv): Gradually.

E.g: Prices have risen steadily.

14.       Neglect (v): It is worse than ignoring something. It’s ignoring it, failing to create for it, and probably harming it in the process.

You can neglect to do your chores, meaning fail to do them, but this word is usually reserved for cases when you willingly refuse to care for something appropriately.

15.       Intravenous (adj): If you are surely dehydrated, your nurse will rig up an intravenous drip to get liquid into you: she’ll skip your mouth and plug directly into your veins.

Often in hospitals you will be given water or nutrients from intravenous drips – you’ve surely seen these on TV if not in the hospital: plastic bags of liquid connected to a tube going into someone’s arm. It’s a way to get needed stuff into your body without waiting for the digestive system to handle it.


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