For function "decibinary", write
the missing parts of the recursion case. This function
should return a string that stores the binary equivalent
for decimal int variable "num".
Example: the binary equivalent of 13 may be found by
repeatedly dividing 13 by 2. So, 13 in base 2 is
represented by the string "1101".
The recursive call should divide the given number by 2 and the result should then be concatenated to the string representation of the remainder of dividing num by 2.