Posts by Siddharth Shankar Debata

Author Biographical Info: I am a B.Tech Computer Engineering graduate. I am an enthusiastic learner and programmer. I am passionate about my work because I love what I do. I have a steady source of motivation that drives me to do my best. I have an interest in studying computer science because I find it fascinating. I am highly organized. I like to keep a clean workspace and create a logical filing method. I am looking to pursue a career in the programming field. I want to study computer science because I want to gain the knowledge needed to be able to help find solutions to world problems, with the efficient use of computer technology. Studying computer science is an exciting life-changing experience, offering me the opportunity to discover important strategies.

Count occurrence of character in file using Python

By Siddharth Shankar Debata

Today in this tutorial, we will get to know how to count the occurrence of a character in a text file using Python. Here we will take a text file ‘text.txt’ as the prog.... Read More

Print all Disarium numbers within given range in Python

By Siddharth Shankar Debata

In this tutorial, we will learn to print all Disarium numbers within the given range using Python. Here we will learn what is a Disarium number, how to find whether a number is a D.... Read More

Sort list of list with custom compare function in Python

By Siddharth Shankar Debata

In this tutorial, we will get to know how to sort a list with a custom compare function in Python. In Python, there are in-built functions to sort a list. But, sometimes we need to.... Read More

Toggle character’s case in a string using Python

By Siddharth Shankar Debata

In this tutorial, we will learn to toggle the character’s case in a string in Python. Here, we will toggle the character’s case which means if the character is in lower.... Read More

Generator function in C++

By Siddharth Shankar Debata

In this tutorial, we will learn about the generator function in C++. A generator function is used to produce values having a particular sequence called a series. The series is prod.... Read More

Print Fibonacci series in C++

By Siddharth Shankar Debata

In this tutorial, we will learn to print the Fibonacci series in C++ program. Basically, this series is used in mathematics for the computational run-time analysis. So, today we wi.... Read More

C++ program to find solutions of quadratic equation

By Siddharth Shankar Debata

In this tutorial, we will learn to find the roots or solutions of a quadratic equation in C++. In mathematics, these equations are used in fields such as simplification of expressi.... Read More

Calculating binomial coefficient using recursion in C++

By Siddharth Shankar Debata

In this tutorial, we will learn about calculating the binomial coefficient using a recursive function in C++. Firstly, you must know the use of binomial coefficient calculation. So.... Read More

Related Posts