Answer
Yes, we can convert the for loop to a while loop
Work Step by Step
A for Loop can be converted into a while loop .
Most of the programmers use the FOR loop because it will continue only for a specified number of outputs. While loops can continue forever until the condition in the loop is met, and they are less operationally efficient.