Answer:
Runtime error probably. The program won't make it past the while loop in the code.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
The full Form of BIT is "Binary digit" which is the basic unit of information in computing . A Binary digit can be 0 or 1 . 0 represents off state & 1 represents on state .
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Ummmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Answer:
Explanation:
Let's code it using python. We can take care of the negative number by placing an absolute function at the end. Basically the decimal part is calculated by subtracting the integer part from the original input number
def decimal_print(number):
int_part = int(number)
decimal_part = number - int_part
return abs(decimal_part)
- This is called IPO cycle.
- IPO stands for Input Process Output.
- All parts are necessary .
Lets see example.
Look at the program created in python below.



Suppose you missed the input or don't give that then you won't get an output.