Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Difference between Circuit Switching and Packet Switching

In this tutorial you will learn about difference between circuit switching and packet switching i.e. circuit vs packet switching. What is Switching? In network communication sender sends a message and receiver receives it. But both sender and receiver may lies in different networks with very much far distance. To reach message from sender to receiver …

Difference between Circuit Switching and Packet Switching Read More »

Python Merge Sort

Here you will learn about python merge sort algorithm. Merge sort is based on divide and conquer technique. All we have to do is divide our array into 2 parts or sub-arrays and those sub-arrays will be divided into other two equal parts. We will divide the array in this manner until we get single …

Python Merge Sort Read More »

Introduction to TensorFlow

Here you will get TensorFlow introduction. TensorFlow is a framework which is used for machine learning and deep learning applications like neural network. It is used for data flow programming as an open source software library over various range of tasks. It is symbolic  math library used in research and production both. Tensorflow is used …

Introduction to TensorFlow Read More »

C++ STL Algorithm Library

In this article you will learn about stl algorithm library in c++. Are you a competitive programmer or very passionate programmer then you must know about STL algorithm library. It contains very rich set of algorithms. If you practice this well you can nail any programming interview. All inbuilt algorithms implemented in this library were implemented …

C++ STL Algorithm Library Read More »

Python Quick Sort

Here you get python quick sort program and algorithm. Quick sort is based on divide and Conquer technique. We divide our array into sub-arrays and that sub-arrays divided into another sub-arrays and so on, until we get smaller arrays. Because it is easy to solve small arrays in compare to a large array. Sorting smaller …

Python Quick Sort Read More »