Skip to main content

Vocab 43


1.       Astute (adj): Clever and quick to see how to take advantage of a situation.
An astute businessman.
Astutely (adv)
Astuteness (n)

2.       Avarice (n): An extremely strong want to get or keep money or possessions; greed.
Success can lead to either to either great generosity or avarice.

3.       Banal (adj): Boring, ordinary and not original.
He just sat there making banal remarks all evening.

4.       Beguile (v): To persuade, attract or interest, sometimes in order to deceive.
He was completely beguiled by her beauty.
The salesman beguiled him into buying a car he didn’t want.

5.       Cajole (v): To persuade someone to do something they might not want to do, by pleasant talk and (sometimes false) promises.
He really knows how to cajole people into doing what he wants.

6.        Capacious (adj): Able to contain a lot; having a lot of space.
A capacious pocket/handbag.

7.       Jaunty (adj): Showing that you are happy and confident.
A jaunty smile.
Jauntily (adv)
Jauntiness (n)

8.       Jettison (v): To throw goods, fuel or equipment from a ship or aircraft to make it lighter.
The captain was forced to jettison the cargo and make an emergency landing.

To decide not to use an idea or plan.
We have had to jettison our holiday plans because of David’s accident.

9.       Jocular (adj): A funny or intended to make someone laugh.
Michael was in a very jocular mood at the party.
Jocularly (adv)
Jocularity (n)

10.   Kindle (v): To cause a fire to start burning by lightning paper, wood etc.

11.   Laconic (adj): Using very few words to express what you mean.
She had a laconic wit.

12.   Laud (v): To praise
The Indian leadership lauded the Russian initiative.

13.   Lionize (v): To make someone famous, or to treat someone as if they were famous.
Lionization (n)

14.   Lofty (adj): High
A high ceiling/mountain/wall

15.   Lucid (adj): Clearly expressed and easy to understand or (of a person) thinking or speaking clearly.
She gave a clear and lucid account of her plans for the company’s future.


Compiled By: Chaudhary Amit V.

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