answersLogoWhite

0


Best Answer

21st November 2008 is the 36th annual World Hello Day. Anyone can participate in World Hello Day simply by greeting ten people.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When is world hello day?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why do you celebrate world hello day?

We celebrate World Hello Day because its the day for us to say HELLO to everyone


When is the international hello day?

Every year, November 21 is World Hello Day.[1] The objective is to say hello to at least ten people on the day. By greeting others, the message is for world leaders to use communication rather than using force to settle conflicts.[2]The event began in 1973 by Brian and Michael McCormack in response to the Yom Kippur War.[1] Since then World Hello Day has been observed by people in 180 countries.[1]November 21, 2013 is the 40th annual World Hello Day. Anyone can participate in World Hello Day simply by greeting ten people or more. This demonstrates the importance of personal communication for preserving peace. World Hello Day was begun in response to the conflict between Egypt and Israel in the fall of 1973. People around the world use the occasion of World Hello Day as an opportunity to express their concern for world peace. Beginning with a simple greeting on World Hello Day, their activities send a message to leaders, encouraging them to use communication rather than force to settle conflicts. As a global event World Hello Day joins local participation in a global expression of peace. 31 winners of the Nobel Peace Prize are among the people who have realized World Hello Day's value as an instrument for preserving peace and as an occasion that makes it possible for anyone in the world to contribute to the process of creating peace. Brian McCormack, a Ph.D. graduate of Arizona State University, and Michael McCormack, a graduate of Harvard University, work together to promote this annual global event.


How do you say hello my name is Tiffany .. how is your day?

You can say, "Hello, my name is Tiffany. How is your day?"


What was celebrated on Nov 11 1918 before 1954?

hello world! Veteran's day


How do you write hello world in PHP?

<?php echo "Hello world"?>


How do you say Good day or hello?

You can say "Good day" or "Hello" to greet someone in English.


The correct way to write Hello World in PHP is?

echo("hello world");


printing haricts of hello world?

use $(documeny).echo("hello world");


What is the correct JavaScript syntax to write Hello World?

document.write("hello world");


How do you convert string hello world into hello world?

They are identical, no conversion required.


How do you make a flowchart for 'hello world'?

( start ) -> / Write "Hello World" / -> ( end ) *try to search an example on google. *type "flowchart of hello world"


Hello world program?

A "Hello world" program is usually the very first program you write when learning a new programming language, it simply prints out the text "Hello World". Below are a few examples: PHP: echo "Hello World"; _____________________________________ JavaScript: document.write("Hello World"); _____________________________________ Visual Basic: Module Hello Sub Main() MsgBox("Hello, World!") ' Display message on computer screen. End Sub End Module