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:

  1. 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.
  2. 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.
  3.  Applicant aspirations : Aspiration of the candidate enlisting – to do tasks helps professors align their work with that of candidate.
  4.  Groundwork/preparation : To have covered sufficient ground or topics in preliminary stages makes it easier for the university to accept candidate.
  5.  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.

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

Java Sip for the day – 7th October 2019

Java program to perform basic operations

public class Operator{

    public static void main(String[] args) {
       int a = 10;
       int b = 5;

                int add = a+b;
		int sub = a-b;
		int mul = a*b;
		int div = a/b;
		int mod = a%b;
		
		System.out.println(add);
		System.out.println(sub);
		System.out.println(mul);
		System.out.println(div);
		System.out.println(mod);

    }

}