C++ || STL || standard template libraries

Image
                                       C++ STL  1.      Pair :  Syntax :      pair <int,char> p1;     it creates a pair {2,'c'} like this.           pair <int,int> p2;     it creates a pair {2,3} like this .  Basic Code :  #include <bits/stdc++.h> using namespace std; int main() {     // cout<<"hello world\n";     pair <int,int> p1 = {1,2};     cout<<p1.first<< " "<< p1.second<<endl;          pair <int, pair<int ,char>> p2 = {1,{2,'c'}};     cout<<p2.first<<" "<<p2.second.first<<" "<<p2.second.second<<endl;          pair <int,int> arr[] = {{2,3},{4,5},{6,7}};     cout...

English vocabulary / 28-6-2020 /

👑 Friday, 26 June 2020 👑

Vocabulary For All Competitive Exams.

1. MALICIOUS (ADJECTIVE):   spiteful
Synonyms: malevolent, hostile
Antonyms: benevolent
Example :
He had been found guilty of malicious damage.

2. INAUGURATE (VERB):   initiate
Synonyms: begin, start
Antonyms: wind up
Example :
He inaugurated a new policy of trade and exploration.

3. ANXIOUS (ADJECTIVE):   worried
Synonyms: concerned, apprehensive
Antonyms: carefree
Example Sentence:
She was extremely anxious about her exams.

4. RESUMPTION (NOUN):  restart
Synonyms: restarting, reopening
Antonyms: suspension
Example Sentence:
The rain has stopped, but we're still waiting for the resumption of the game.

5. NORMALITY (NOUN):   routine
Synonyms: business as usual, order
Antonyms: insanity
Example Sentence:
The office gradually returned to a semblance of normality.

6. SEMBLANCE (NOUN): appearance
Synonyms: approximation, show
Antonyms: difference
Example Sentence:
She tried to force her thoughts back into some semblance of order.

7. SNARL (VERB):   tangle
Synonyms: entangle, entwine
Antonyms: untangle
Example Sentence:
The trailing lead got snarled up in a bramble bush.

8. SPECTRE (NOUN):  ghost
Synonyms: phantom, apparition
Antonyms: body, flesh
Example Sentence:
A dread of spectres and witches affected every aspect of daily life.

9. VETERAN (NOUN): old hand
Synonyms: old-timer, old stager
Antonyms: novice
Example Sentence:
Napoleon was at the head of a veteran army.

10. EXPATRIATE (ADJECTIVE):  emigrant
Synonyms: non-native, émigré
Antonyms: native
Example Sentence:
Expatriate workers are found everywhere.

Comments

Popular posts from this blog

1050. Actors and Directors Who Cooperated At Least Three Times || Leetcode sql solution || Simple and Easy Approach || ✅✅✅✅💯💯💯🔥🔥🔥🔥

Power of Millets || Happy And Healthy Life

Typing Lesson PART-3