answersLogoWhite

0


Best Answer

Janmashtami is celebrated as the birthday of Lord Krishna, one of the reincarnations of Lord Vishnu born in the Dwapar Yug. The date of janamashtami in the year 1947 is 7th september.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The date of Ganesh Chaturthi is 11th September.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

It is 20th January

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

It is 24th March

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

It is 2nd September

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the date of Janamashtmi this year?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the day and date of janamashtmi in 1984?

it was on 19 august in year 1984 and day was sunday


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.


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


What is a year to date?

A year to date is the period from the beginning of a fiscal year to the end of a reporting period.


In Georgia can a 18 year old date a 16 year old?

No, the legal age of consent in Georgia is 16, which means that a 16-year-old can legally consent to a sexual relationship with someone of any age. However, there may still be restrictions on the relationship depending on the specific circumstances and the age gap between the individuals.


Can you date a 26 year old Date a 28 year old?

yes


What is the date and month of the leap year?

February 29 is the date of leap year.


How old would you be in 2011 if you were born in 1839?

172, assuming the date in the year in 2011 was later than the date in the year in 1839. If the date in the year in 1839 was later than the date in the year in 2011, you would be 171.


Is MDCD a date?

No that is not a valid date or year.


Write a program to find out a date after adding 31days to a date in the month of february?

#include<stdio.h> #include<conio.h> int date,year; printf(''enter date and year"0; scanf(%date,%year); if(year%4==0) { date=(date+31)-29; pf(''march month of"); pf(%d,date); } else { date=(date+31)-28; pf(''march month of"); pf(%d,date); } } pf(%d,date);