Category: Tech

  • Insertion Sort

            Insertion Sort merely means that we insert one number at a time into its correct position comparing with the numbers to the left of it. At each iteration, the key value is compared to the values at its left and swapped if necessary. Insertion_Sort (Ascending order): 1.  for j = 2…

  • Android : Spinner

    Android : Spinner

    Implement Android Spinner to select an item from an array of items. Also Android Intents and SharedPreferences. Android Series.

  • Android : Intents & Shared Preferences

    Android : Intents & Shared Preferences

    Learn how to switch between one activity to other activity using Intents. Learn how to share data between activities using SharedPreferences. Implement Spinner element. Android Series.