Concept:LCM takes the highest power of each prime factor. HCF takes the lowest common power.Explanation:Given: x=25×32×53, y=24×33×52, z=23×33×52.HCF: For each prime, pick the smallest exponent common to all three numbers.2: smallest is 3 (from z). 3: smallest common is 2 (from x). 5: smallest common is 2 (from y and z).So HCF =23×32×52.LCM: For each prime, pick the largest exponent among the three numbers.2: largest is 5 (from x). 3: largest is 3 (from y and z). 5: largest is 3 (from x).So LCM =25×33×53.Now divide LCM by HCF: 23×32×5225×33×53=22×31×51=4×3×5=60.Answer:C. 60