@ashoKumar89 File is saved and then it's size is validated so it saves > 10mb as well as returns 'File too Large'
Validate first, then await upload and then return success if upload successful
@SakshiSugandhi For integer dtype, if low and high are very large values, nearing to max val of int, so (low + high) / 2 can overflow this max val.
Hence instead we can use low + (high - low)/2, to keep mid under the max limit.