What is the output of the greatest common divisor function gcd(27,12) ?%0D%0A%0D%0Agcd(x,y)={x,gcd(y,x%y),y=0y>0 where x%y is remainder division or modulo%0D%0A%0D%0A(1 point)%0D%0AResponses%0D%0A%0D%0A1%0D%0A1%0D%0A%0D%0A12%0D%0A12%0D%0A%0D%0A27%0D%0A27%0D%0A%0D%0A3

1 answer

The output of the greatest common divisor function gcd(27,12) is 3.