Android Pull or Swipe Down to Refresh Using SwipeRefreshLayout Example
Here you will learn about android pull or swipe down to refresh using SwipeRefreshLayout example. You may have seen the pull to refresh feature in apps like Facebook, Twitter, Gmail, etc. We can...
View ArticleProgram for Quick Sort in C++
Here you will get program for quick sort in C++. Quick Sort is one of the most efficient sorting algorithm whose best, worst and average case time complexities are O (n log n), O (n2) and O (n log n)...
View ArticleAndroid Play Video From URL Using VideoView Example
Here you will learn how to play video from url in android using videoview. We can using VideoView widget to play offline video as well as video from url. In below example I have displayed a progress...
View ArticleTop 15 Bad Programming Practices
Here are some most common bad programming practices that every programmer should avoid to become a better programmer. Also Read: 5 Tips to Become a Better Programmer 1. Giving up too soon Most of the...
View ArticleLRU Page Replacement Algorithm in C
Here you will get program for lru page replacement algorithm in C. Least Recently Used (LRU) page replacement algorithm works on the concept that the pages that are heavily used in previous...
View Article12 Best Paying Countries for Java Professionals
Here you will know about some best paying countries for java professionals, programmers or developers. If you have just passed out of college, then you know that Java is popularly used in programming....
View ArticleOptimal Page Replacement Algorithm in C
Here you will get program for optimal page replacement algorithm in C. Optimal page replacement algorithm says that if page fault occurs then that page should be removed that will not be used for...
View ArticleAndroid SOAP Client Example Using ksoap2
In this tutorial you will learn to make an android soap client using ksoap2 library. Prerequisites We need ksop2 library. You can download its jar easily by searching on google. A soap web service...
View ArticleDifference between Static and Dynamic Websites
Here you will learn about difference between static and dynamic websites i.e static vs dynamic web pages. We know there are many types of websites, but on a basic scale they are divided into two kinds...
View ArticleCaesar Cipher in C and C++ [Encryption & Decryption]
Get program for caesar cipher in C and C++ for encryption and decryption. What is Caesar Cipher? It is one of the simplest encryption technique in which each character in plain text is replaced by a...
View ArticlePermutation of String in C and C++
Here you will get program for permutation of string in C and C++. Permutation means all possible arrangements of given set of numbers or characters. For a string with n characters can have total n!...
View ArticleAdvantages and Disadvantages of Linked List
Here you will learn about advantages and disadvantages of linked list. It is a data structure in which elements are linked using pointers. A node represents an element in linked list which have some...
View ArticleAndroid Stopwatch Example Using Chronometer
Here you will get android stopwatch example. In this android tutorial I will guide you to make a simple stopwatch example using Chronometer. In android we can use Chronometer class to display a simple...
View ArticleHow to Generate Random Number in C and C++?
Here you will get program and learn how to generate random number in C and C++. We can use rand() function to generate random number. It is defined in stdlib.h header file. It generates a random number...
View ArticleAndroid Realm Database Tutorial
This is android realm database tutorial. Realm is an open source database that can be used to store data locally in android. It is used by over 100k developers and is a good alternative of SQLite. In...
View ArticleDifference between Reference and Pointer in C++
Here you will learn about difference between reference and pointer in C++. Reference: Reference contains address of a variable. It can be called as alternative name of a variable. Example:int i; int...
View ArticleAndroid Image Slider Using ViewPager Example
In this tutorial you will learn to make android image slider using ViewPager and PagerAdapter. ViewPager is a layout manager that allows the user to flip left and right through pages of data. We supply...
View ArticleAndroid RatingBar Example
In this tutorial you will learn about Android RatingBar with example. RatingBar is widget in android that is used to show user rating in the form of stars. The user can drag or touch it to set the...
View ArticleHow to Choose Best Laptop for Programming in 2017?
This article will guide you to choose the best laptop for programming in 2017. As a programmer or developer it becomes really confusing to pick a best laptop from thousands of laptops available in the...
View ArticleHow to Pass Data from One Activity to Another in Android
In this tutorial you will learn to pass data from one activity to another in android with and without using intent. Basically we can send data between activities in two ways. Using Intent Using Global...
View Article