Multiple choice technology programming languages

What happens if a series of UPDATE statements are issued?

  1. Each one requires a separate network call.

  2. Each one is executed in the order in which they are mentioned in the code.

  3. All the update statements together require a separate network call

  4. None of the above.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

When multiple UPDATE statements are issued in Model 204, each statement requires its own separate network call to the database server. This is because UPDATE statements are not automatically batched or combined - they execute independently with individual network round-trips. Option B is incorrect because execution order is not guaranteed across separate calls.