Good problem with a nasty unit trap built in. Let me walk through it.
1. Find x. The speed is 300 + x mph, and we're told the airplane flies at 625 mph. So x = 325.
2. Compute the fuel rate. The rate is 15 + 10*sqrt(x) = 15 + 10*sqrt(325). Now sqrt(325) = sqrt(25 * 13) = 5*sqrt(13). Since sqrt(13) is approximately 3.606, we get sqrt(325) approximately 18.03. So fuel rate is approximately 15 + 180.3 = 195.3 gallons per minute.
3. Find the time. Distance = 3750 miles, speed = 625 mph, so time = 3750/625 = 6 hours. That's 6 * 60 = 360 minutes.
4. Total fuel = 195.3 * 360 approximately 70,308. The answer is D (70,000).
The trap: the fuel rate is in gallons per MINUTE. A lot of people compute 195.3 * 6 = ~1,172 and think "oh that's close to 1,200" and pick A. The test writers put A there for exactly that reason. Any time a rate problem gives you a rate per minute and distances in miles, slow down and convert units before multiplying.
Concept tested here is Functions and Custom Characters combined with unit conversion. The "custom function" wrapper (fuel rate = some expression of x) can look intimidating but just means "plug in the number and evaluate."