


Blogger, Engineer & Entrepreneur

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.
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:
With these parameters and purpose explained in brevity makes statement of purpose(SOP) notable.

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.

Wishing everyone a Happy Deepavali. Let the festival of lights bring happiness and joy to your lives.
Little sparks of joy with family and friends can uplift a barrel of happiness.
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
Basic operations
a=10 b=5 add = a+b sub = a-b mul = a*b div = a/b mod = a%b print(add) print(sub) print(mul) print(div) print(mod)