we know that, one of fastest and simple way to divide by 2 in computer system is convert number to binary and shift right it, then convert it to decimal.
for example, if we want divide 8 by 2, first we convert 8 to 1000
and then shift right it, became 100, in second step, we convert 100 to decimal number, became 4.
question is, if number is very large such as this number: 987787558789758799875875578559589569457558445755844753123123213213123233456456342346456459042342343450563523934123312434534534413123454576756634554234123213123234534554643546575676868864554779807564523453790990780099
Will the computer still do this same as mentioned method, or there a faster way to do it?