Sum of First n Prime Numbers in Java

By Harshad Lukare

In this tutorial, we will be heading towards writing the Java program to find the Sum of first n Prime numbers. Before moving towards actually writing code first, let’s under.... Read More

Interactive Mode and Script Mode in Python

By Tirthesh Pawar

Here we are going to learn about “INTERACTIVE MODE” and “SCRIPT MODE” in Python. Let’s dig into the topics one by one to have a clear understanding a.... 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

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

Related Posts