answersLogoWhite

0

It is 5th November

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

When is Deepawali to be celebrated in 2010 in Varanasi India?

On November the 5th.


Is Diwali the Hindu new year?

Yea, Diwali is a holiday as per Negotiable Instruments Act in India.


How do you say happy Diwali in Indian?

You can say it in these ways: Happy Dewali Happy Deepawali Dewali Ki Subh Kamniya.


What was the Hindu festival on 2 Nov 1983 according to Indian Marathi calendar?

Deepawali, or Diwali -


How do you say have a good Diwali in Hindi?

"shubh deepawali" is the way to say Happy diwali in hindi.


You want to wright Hindi essay about deepawali so please provide you Hindi essay of deepawali?

WikiAnswers will not write your homework for you, but we WILL help you learn how to do it yourself! Click on the Related Questions to learn how you can complete this assignment on your own. If you want to write it, you have to write it yourself, not copy it!


Why is Diwali called deepavil?

Diwali is called deepavli.The reason for the same is diwali is the festival of lights , we decorate by deep that are called as diyas and also by candles. Hence, diwali is called deepawali .


What day of the week is the 1st of January 0000?

There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.There was no year zero so this date did not exist.


What is year to date Budget?

A year to date budget begins at the beginning of the year and carries through to the current date. This can be based on either the calendar year or the fiscal year.


What does Diwali consist of?

Diwali consist of 5 festivals. dhan teras chotti idiwali deepawali govardhan pooja bhai dooj


How do you write month year and date in french?

Month: Mois Year: Année Date: date


Write a c program to findout a date after adding 31 days to a date in the month of february also consider the leap year?

#include<iostream.h> main() { int year,date; cout<<"enter year\n"; cin>>year; cout<<"enter date\n"; cin>>date; if(year%4==0) date=date+2; else date=date+3; cout<<" the added date was"<<date\n; } output: enter year:2011 enter date:18 the added date was:21. Note: This program exectues only in cpp....