Perhatikan fungsi berikut
function coba(a:integer):string;
var
b : integer;
str : string;
begin
if (a=0) then
coba:= ''
else
begin
b := a mod 2;
if (b=0) then str:=’0’
else str:=’1’;
coba:= coba(a div 2)+str;
end;
end;
nilai yang dikembalikan oleh pemanggilan fungsi coba(155) adalah?