2 Years of MOHANMA.COM: Statistics for January 2020
Firstly, I want to acknowledge that MOHANMA.COM completed its 2nd Anniversary on 26th January 2020. I take this opportunity to thank each one of you who have visited the website.
Stats for Jan 2020
Unique visitors for MOHANMA.COM in January 2020 is 2627.
Number of visits between January 1 to January 31 is 4132.
24th January 2020 clocked the highest number of hits in a day for January 2020 – 4,870.
Average hits received per day for January 2020 is 870.
Above 3 Lakh Hits & 55000 Plus Visits – Statistics for MOHANMA.COM in 2019
Wishing everyone a Happy New Year 2020.
MOHANMA.COM recorded best numbers ever for a year in the calendar year 2019.
Total number of visits in 2019 was 55,319.
Total Hits in 2019 was 3,44,110.
Total number of unique visitors was 17,141.
Please find below the statistics for December 2019.
December 2019 had the highest number of unique visitors in a month at 2,159.
Thank you all for visiting the website.
6 Months Statistics for MOHANMA.COM – November 2019 Inclusive
Unique visitors for MOHANMA.COM in November 2019 was the highest ever in a calendar month at 1877.
Number of visits between November 1 to November 30 is 4204.
14th November 2019 clocked the highest number of hits in a day for November 2019 – 1,411.
Average hits received per day for November 2019 is 817.
Thank you all for visiting the website.
Writing Statement of Purpose(SOP) for Universities
Admissions to leading universities globally require transcripts, letters of recommendation from professors and most importantly statement of purpose for pursuing course along with valid scores of qualifying exam.
Purpose – It is the basic objective for performing any task.
Statement of purpose is a succinct information from the candidate to university expressing the objectives of candidate during and after course period.
Important parameters to consider while writing statement of purpose:
- Short-term goal : It is important to explain the applying university about candidate’s immediate goals soon after completing the course. It may be continuing research or getting into industry, a precise statement about it helps university evaluate the candidate.
- Long-term goal : Putting forth where the candidate and what candidate intends to do in 10 years would make the university gauge far-sight of a candidate.
- Applicant aspirations : Aspiration of the candidate enlisting – to do tasks helps professors align their work with that of candidate.
- Groundwork/preparation : To have covered sufficient ground or topics in preliminary stages makes it easier for the university to accept candidate.
- University specification : Every university is unique in a particular field, being aware of that uniqueness by candidate and applying into that stream clearly outlining path is crucial from candidate’s point.
With these parameters and purpose explained in brevity makes statement of purpose(SOP) notable.
Statistics for October 2019 – MOHANMA.COM
Unique visitors for MOHANMA.COM in October 2019 is 1184.
Number of visits between October 1 to October 31 is 2903.
6th October 2019 clocked the highest number of hits in a day for October 2019 – 1,901.
Average hits received per day for October 2019 is 839.
Thank you all for visiting the website.
Happy Deepavali 2019
Wishing everyone a Happy Deepavali. Let the festival of lights bring happiness and joy to your lives.
Quote for the day – 14th October 2019
Little sparks of joy with family and friends can uplift a barrel of happiness.
AI Context for the day – 9th October 2019
Java Sip for the day – 8th October 2019
Increment and Decrement operators
public class Incdec {
public static void main(String[] args) {
int a1 = 5;
--a1; //predecrement
int a2 = 10;
++a2; //preincrement
int b1 = 15;
b1--; //postdecrement
int b2 = 20;
b2++; //postincrement
System.out.println(a1);
System.out.println(a2);
System.out.println(b1);
System.out.println(b2);
}
}
OUTPUT
4
11
14
21