Skip to main content

Quiz on World Leaders

Quiz on World Leaders


Below are some of the world's top leaders. Your task is to identify these world leaders by answering these multiple choice quiz questions.

1.
[Image via]
A) Charlie Chaplin
B) Adolf Hitler
C) Bashar al-Assad
D) Boris Yeltsin

2.
[Image via]
A) Hassan Rouhani
B) Mahmoud Ahmadinejad
C) Bashar al-Assad
D) Ali Khamenei

3.
[Image via]
A) Angela Merkel
B) Theresa May
C) Margaret Thatcher
D) Nicola Sturgeon

4.
[Image via]
A) Joe Biden
B) John McCain
C) Barack Obama
D) Boris Yeltsin

5.
[Image via]
A) Hafez al-Assad
B) Muammar Gaddafi
C) Saddam Hussein
D) Bashar al-Assad

6.
[Image via]
A) Bakhtawar Bhutto Zardari
B) Benazir Bhutto
C) Nusrat Bhutto
D) Fatima Bhutto

7.
[Image via]
A) Benjamin Netanyahu
B) Vladimir Putin
C) Boris Yeltsin
D) David Cameron

8.
[Image via]
A) Mikhail Gorbachev
B) Leonid Brezhnev
C) Vladimir Putin
D) Boris Yeltsin

9.
[Image via]
A) Leonid Brezhnev
B) Boris Johnson
C) David Cameron
D) Gordon Brown

10.
[Image via]
A) François Hollande
B) Nicolas Sarkozy
C) François Fillon
D) Jacques Chirac

11.
[Image via]
A) Pia Olsen Dyhr
B) Margrethe Vestager
C) Mette Frederiksen
D) Helle Thorning

12.
[Image via]
A) Sonia Gandhi
B) Indira Gandhi
C) Priyanka Gandhi
D) Smriti Irani

13.
[Image via]
A) King Salman bin Abdulaziz al Saud
B) King Abdullah
C) King Fahd
D) Muqrin bin Abdulaziz

14.
[Image via]
A) Graça Machel
B) Morgan Freeman
C) Nelson Mandela
D) Desmond Tutu

15.
[Image via]
A) Jacques Chirac
B) Emmanuel Macron
C) Laurent Wauquiez
D) Nicolas Sarkozy

16.
[Image via]
A) Shinzō Abe
B) Tarō Asō
C) Junichiro Koizumi
D) Yukio Hatoyama

17.
[Image via]
A) Martti Ahtisaari
B) Tarja Halonen
C) Leymah Gbowee
D) Shirin Ebadi

18.
[Image via]
A) Angela Merkel
B) Nicola Sturgeon
C) Margaret Thatcher
D) Theresa May

19.
[Image via]
A) Dmitry Medvedev
B) Vladimir Putin
C) Alexei Navalny
D) Boris Yeltsin

20.
[Image via]
A) Xi Jinping
B) Wang Qishan
C) Li Keqiang
D) Hu Jintao

Answers

Comments

Popular posts from this blog

Conjunction Worksheet

Practice English Grammar Conjunctions with the below Conjunction worksheet. Apart from this Conjunction worksheet, you can also go through other Conjunction exercises: Conjunction exercise 1 , Conjunction exercise 2 . Co-ordinating Conjunctions A conjunction placed between words, phrases, clauses, or sentences of equal rank, e.g. and, but, or. [ Via ] Correlative Conjunctions They get their name from the fact that they work together (co-) and relate one sentence element to another. Correlative conjunctions include pairs like "both/and," "whether/or," "either/or," "neither/nor," "not/but" and "not only/but also". [ Via ] For example He'd rather run to school than walking. Identify Co-ordinating Conjunctions: 1. Many women and children came to see the movie. 2. I wrote to him, but she did not respond. 3. Her condition became worse, so she was taken to nearby hospital. 4. We should hire a cab, otherwise we will n...

50 Top DHCP Multiple Choice Questions and Answers

Below are the list of top 50 DHCP multiple choice questions and answers for freshers beginners and experienced DHCP Multiple Choice Questions and Answers 1. What is the purpose of the DHCP server? A � to provide storage for email B � to translate URLs to IP addresses C � to translate IPv4 addresses to MAC addresses D � to provide an IP configuration information to hosts Answer: D 2. How is the message sent from a PC2 when is first powers on and attempts to contact the DHCP Server? A � Layer 3 unicast B � Layer 3 broadcast C � Layer 3 multicast D � Without any Layer 3 encapsulation Answer: B 3. What is the default behavior of R1 when PC1 requests service from DHCP server? A � Drop the request B � Broadcast the request to R2 and R3 C � Forward the request to R2 D � Broadcast the request to R2, R3 and ISP Answer: A 4. Refer to the exhibit. Which rule does the DHCP server use when there is an IP address conflict? A. The address is removed from the pool until the conflict is resolved. B. Th...

PHP Constructors Multiple Choice Questions

PHP Constructors Multiple Choice Questions 1) PHP recognises constructors by the name . . . . . A) _construct B) __construct C) __constructor D) _constructor 2) In . . . . . constructors, it is important to remember that you have to call the parent constructor explicitly. A) Singleton B) secure C) public D) subclass 3) Constructor and destructor methods have no . . . . . . and are called automatically - they cannot be called explicitly and consequently their declarations need no access specifier. A) parameters B) destructor C) return value D) aproval 4) Unlike constructors, you cannot pass information to a destructor, because you are never sure when its going to be run. A) True B) False 5) You can invoke class constructors that don’t have any relation to the instantiated object by simply prefacing _constructor with the class name like A) classname::__construct() B) classname:__construct() C) classname=>__construct() D) classname->__construct() 6) . . . . . . is...