Saturday 24 May 2014

Birthday Reminder for Android


                      This application is a simple and user friendly to store birth dates and the other informations.It will trigger a notification and show you an alert on the birth date. From inside the app allows you to send greetings message and make call feature.

Key Features:
- Birthday information and user photo are stored internally and able to take backup
- Simple UI gives easy access.
- Allowing to import from phone contacts
- Simple settings to set default greetings message and reminder time.









Download this app from google play  

Monday 12 May 2014

Write the given number as summation of n numbers in m different ways

                       Let say N is the given number. You need to write N as summation of n numbers in m different ways without repetition.
For example N is 5 then possible results are

N = 5
- 1 1 1 1 1
- 1 1 1 2
- 1 2 2
- 1 1 3
- 1 4
- 2 3

N = 6
- 1 1 1 1 1 1
- 1 1 1 1 2
- 1 1 2 2
- 2 2 2
- 1 1 1 3
- 1 2 3
- 3 3
- 1 1 4
- 2 4
- 1 5

I have implemented by using Java

Code

public void algorithm(String result, int n, int max){
if(n==0){
System.out.println(result);
return;
}
for(int i=1; i<=max && i<=n; i++)
algorithm(i+" "+result, n-i,i);
}





Sunday 11 May 2014

EMI Calculator for Android


                         This application is used to calculate EMI (Equated Monthly Installment) for home loan, car loan, personal loan and other loan.

Key Features
  • You can share the emi details with others through SMS/Mail
  • You can see the detailed statistical report of emi calculation (Monthly Basis).
  • There is a option to have default values when loading the application.
  •  You can compare two EMI plans





Download this app from GooglePlay https://play.google.com/store/apps/details?id=com.sathish.emi

Saturday 10 May 2014

2048 Number Puzzle for Android

                                It's a very simple but interesting game. The task is, you have to make a single tile value as 2048, 4096 and 8192. Just do swipe to move all the tiles from one side to another side. At that time two adjacent tiles (have the same number) will become double and one tile will become empty. Play and have fun.

- Scores will be saved in Cloud.
- Play well and unlock the Achievements.
- Game State will be saved while doing proper game exit.







Download it from Google Play