Python Program to Check Prime Number
Here you will get python program to check prime number. A number is called prime number if it is only divisible by 1 or itself. For example 2, 3, 5, 7, 11, etc are prime numbers. Below program takes a...
View ArticlePython Program to Print Fibonacci Series
Here you will get python program to print fibonacci series using for loop. A series in which next term is obtained by adding previous two terms is called fibonacci series. For example 0, 1, 1, 2, 3, 5,...
View ArticleWondershare Data Recovery Software
Wondershare Data Recovery Software can be used to recover deleted, corrupted, lost or formatted data. Data can be distinguished as Photos, Videos, Audios, Documents, e-mails, and other file formats....
View ArticleAndroid Glide Tutorial with Example
Here you will get android glide tutorial with example. Glide is an android library that allows us to fetch image from internet or url in single line of code. In one of my previous tutorial I have shown...
View ArticleSliding Window Protocol Program in C and C++
Here you will get sliding window protocol program in C. In computer networks sliding window protocol is a method to transmit data on a network. Sliding window protocol is applied on the Data Link Layer...
View ArticlePython Program to Check Armstrong Number
Here you will get python program to check armstrong number. A number is said to be an armstrong number if sum of its digits raised to the power n is equal to itself. Here n is total digits in number....
View ArticleAnalysis of Algorithms
In this tutorial you will learn about analysis of algorithms. Before learning analysis of algorithms lets quickly take a look on what is an algorithm and why we require it. What is an Algorithm? An...
View ArticlePython Program to Convert Decimal to Binary, Octal and Hexadecimal
Here you will get python program to convert decimal to binary, octal and hexadecimal. Python provides inbuilt functions for conversion of one number system to another. Convert decimal to binary using...
View ArticlePython Program to Check Palindrome Number
Here you will get python program to check palindrome number. A number is said to be palindrome if it is equal to its reverse. For example 121, 555, etc are palindrome while 124, 367, etc are not....
View ArticleDifference between Recursion and Iteration
In this tutorial you will learn about difference between recursion and iteration with example. Both recursion and iteration are used for executing some instructions repeatedly until some condition is...
View ArticleNull Pointer in C
In this tutorial you will learn about null pointer in C with examples. When we declare a pointer, by default it points to some random memory location. If you will access the pointer then it may give...
View ArticlePython Linear Search
Here you will get program for linear search in python. Linear search is one of the simplest searching algorithm in which targeted item in sequentially matched with each item in a list. It is worst...
View ArticleTravelling Salesman Problem (TSP)
Here you will learn about Travelling Salesman Problem (TSP) with example and also get a program that implements Travelling Salesman Problem in C. Let say there are some villages (1, 2, 3, 4, 5). To...
View ArticleMatrix Chain Multiplication in C and C++
Here you will learn about Matrix Chain Multiplication with example and also get a program that implements matrix chain multiplication in C and C++. Before going to main problem first remember some...
View ArticleTopological Sort in C and C++
Here you will learn and get program for topological sort in C and C++. We know many sorting algorithms used to sort the given data. It may be numeric data or strings. Take a situation that our data...
View ArticleBellman-Ford Algorithm in C and C++
Here you will learn about Bellman-Ford Algorithm in C and C++. Dijkstra and Bellman-Ford Algorithms used to find out single source shortest paths. i.e. there is a source node, from that node we have to...
View ArticleDifference between BFS and DFS
Here you will learn about difference between BFS and DFS algorithm or BFS vs. DFS. Breadth First Search (BFS) and Depth First Search (DFS) are two popular algorithms to search an element in Graph or to...
View ArticleHashing in C and C++
In this tutorial you will learn about Hashing in C and C++ with program example. You will also learn various concepts of hashing like hash table, hash function, etc. Hashing in Data Structure Searching...
View ArticleTCP/IP Socket Programming in C and C++ (Client Server Program)
This tutorial will help you to know about concept of TCP/IP Socket Programming in C and C++ along with client server program example. What is Socket? We know that in Computer Networks, communication...
View ArticlePriority Queue in C and C++
Here you will get implementation of priority queue in C and C++ with program example. Priority Queue is an ordered list of homogeneous elements. In normal queue, service is provided on the basis of...
View Article