Code

python list

5 Major Difference Between List and Tuple in Python

What is the difference between tuple and list in Python? Why is tuple immutable and list mutable? Where to use Tuple and List?

bit manipulation

C Program to Count Number of Ones in Binary [Set bits in an Integer]

Write a C Program to Count Number of Ones in Binary and set bits in an integer using right shift bitwise operation with output.

Code

Compilation and Execution of C Program | Hello World Program in C

The complete guide to Compilation and Execution of C Program using GCC compiler on Windows, Linux and Mac systems. How does Help World program run?

bubble sort

Bubble Sort in C Program | Example | Algorithm | Complexity

How does bubble sort work? Bubble Sort in C with Explanation stepwise. What is the complexity in best, average and worst cases? Advantages and disadvantages of using Bubble sort.

Python

How to Get all the Permutations of String in Python using itertools?

Write a Program to get all the permutations of string in Python using itertools. How to get all the permutations of string in the list?

pip

How to find Python List Installed Modules and Version using pip?

What is the way of getting a Python list installed modules with its version with and without pip? How to check if Python module is installed?

Code

Step-By-Step Reading And Writing Files in C Program

Reading And Writing Files in C Program with an example. How to read, write and append using file handling in C programming? Explained in detail.

Python

How to Disassemble Python Bytecode | Easiest Method

How to Disassemble Python Bytecode To Analyze. Explained in detail with python program. The output is about understanding python bytecode.

algorithm

Selection Sort in C with Explanation | Algorithm, Program and Time Complexity

Selection Sort in C with Explanation and program. Stepwise explanation of Algorithm and time Complexity. What are the advantages and disadvantages?