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.

Program to solve the knapsack problem in C++

By Siddharth Shankar Debata

In this tutorial, we will learn how to solve the knapsack problem using a C++ program. We can use it for good decision-making to solve real-world problems. Here we will use it to f.... Read More

Program for FCFS CPU scheduling in C++

By Siddharth Shankar Debata

In this tutorial, we will learn the implementation of the First Come First Serve(FCFS) CPU scheduling technique using a C++ program. A CPU is responsible for the smooth execution o.... Read More

Program for temperature conversion in C++

By Siddharth Shankar Debata

In this tutorial, we will learn to convert temperature from Celsius to Fahrenheit and vice versa in C++. Many times, there is a requirement to convert the temperature measurement f.... Read More

Calculate factorial of a number in C++

By Siddharth Shankar Debata

Here, we will learn to find the factorial of a number in C++. We generally need to calculate factorial of numbers in mathematics, while finding permutations and combinations, algeb.... Read More

Passing object by reference in C++

By Siddharth Shankar Debata

Today, we will learn about passing objects to a function by reference method in C++. In C++ programming, many times we need to reflect the changes in actual parameters. So, here we.... Read More

Print prime numbers in C++

By Siddharth Shankar Debata

In this tutorial, we will get to know how to print prime numbers in C++. We will take a number limit from the user and display all the prime numbers less than or equal to that numb.... Read More

Find maximum number formed using digits of a number in C++

By Siddharth Shankar Debata

In this tutorial, we will learn how to find the maximum number that can be formed using digits of a number in C++. So, we will manipulate the digits of the given number and find ou.... Read More

Nth root calculator in C++

By Siddharth Shankar Debata

In this tutorial, we are going to calculate the Nth root of an integer number using a C++ program. In mathematics, many times, we need to calculate the Nth root. So, we will learn .... Read More

Related Posts