Life Cycle of Data Science The data science life cycle is a systematic approach to managing a data science project. It consists of several stages, each with its own set…
Mahesh Verma
Mahesh Verma
I have been working for 10 years in software developing field. I have designed and developed applications using C#, SQL Server, Web API, AngularJS, Angular, React, Python etc. I love to do work with Python, Machine Learning and to learn all the new technologies also with the expertise to grasp new concepts quickly and utilize the same in a productive manner.
-
-
Welcome to the second part of our series on data science. In the previous article, we discussed the basics of data science, including its definition, history, and benefits. If you…
-
In today’s data-driven world, organizations and individuals are constantly generating and collecting large amounts of data. This data can be used to gain valuable insights, drive decision-making, and create new…
-
Java is an object-oriented programming language that allows developers to create complex and sophisticated applications by using a variety of programming constructs. One such construct is the abstract class, which…
-
C++ ProgramsProgramsRecursive Function
Program to print all even digit from a number using recursion
by Mahesh Vermaby Mahesh VermaProgram to print all even digit from a number using recursion in C++. Solution #include <iostream> using namespace std; void calculate(int n){ if(n == 0) return; calculate(n / 10); if((n%10)%2==0)…
-
C++ ProgramsProgramsRecursive Function
Program to print the Fibonacci Series using recursion
by Mahesh Vermaby Mahesh VermaProgram to print the Fibonacci Series using recursion in C++ Solution #include <iostream> using namespace std; int fibonacci(int i){ if(i==0) return 0; else if(i==1) return 1; else return (fibonacci(i-1)+fibonacci(i-2)); }…
-
C++ ProgramsProgramsRecursive Function
Program to Find Product of Two Numbers using Recursion
by Mahesh Vermaby Mahesh VermaProgram to Find Product of Two Numbers using Recursion in C++. Solution #include <iostream> using namespace std; int product(int a, int b) { if (a < b) return product(b, a);…
-
C++ ProgramsProgramsRecursive Function
Program to calculate the power of any number using recursion.
by Mahesh Vermaby Mahesh VermaProgram to calculate the power of any number using recursion in C++ Solution: #include <iostream> using namespace std; long int calculate(int x,int y) { long int result=1; if(y == 0)…
-
C++ ProgramsProgramsRecursive Function
Program to print even or odd numbers in a given range using recursion.
by Mahesh Vermaby Mahesh VermaProgram to print even or odd numbers in a given range using recursion in C++. Solution: #include <iostream> using namespace std; void calculate(int start, int n) { if(start> n) return;…
-
C++ ProgramsProgramsRecursive Function
Program to convert a decimal number to binary using recursion.
by Mahesh Vermaby Mahesh VermaProgram to convert a decimal number to binary using recursion in C++ Solution: #include <iostream> using namespace std; long conversion(int n) { static long bin,r,factor = 1; if(n != 0)…