Vidyalelo
Data Structure · Q912

Miscellaneous on Data Structures

Programming · Data Structure · question 912

Q912

What is the GCD of a and b?

A.
a + b
B.
gcd (a-b, b) if a>b
Answer
C.
gcd (a+b, a-b)
D.
a - b

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board