The program illustrates the use of functions, iterations and modulo operator
The program written in Python is as follows:
import math
def int_to_reverse_binary(integer_value):
remainder = ""
while integer_value>=1:
remainder+=str(integer_value % 2)
integer_value=math.floor(integer_value/2)
reverse_string(remainder)
def reverse_string(input_string):
binaryOutput=""
for i in range(len(input_string)-1,-1,-1):
binaryOutput = binaryOutput + input_string[i]
print(binaryOutput)
integer_value = int(input("Enter a Number : "))
int_to_reverse_binary(integer_value)
Read more about Python programs at:
https://brainly.com/question/13246781
#SPJ1