1 / 5
Fill in: 'We ___ every uploaded CSV against an expected column schema before touching a single row.'
-
-
-
-
We 'validate' a file — the standard collocation for confirming it matches an expected structure. The other options aren't idiomatic here.
2 / 5
Fill in: 'A stray extra column can ___ an import silently shifting every value into the wrong field.'
-
-
-
-
We say a stray column will 'cause' misalignment — the standard collocation for the resulting bug. The other options aren't idiomatic here.
3 / 5
Fill in: 'We ___ malformed rows into a rejects file instead of letting one bad line fail the whole import.'
-
-
-
-
We 'route' rows — the standard collocation for directing them to a specific destination. The other options are less idiomatic here.
4 / 5
Fill in: 'We ___ a row count summary after every import so a truncated file gets noticed immediately.'
-
-
-
-
We 'report' a summary — the standard collocation for surfacing outcome details after a batch operation. The other options are less idiomatic here.
5 / 5
Fill in: 'We ___ each import inside a single transaction so a failure partway through never leaves half the data written.'
-
-
-
-
We 'wrap' an operation — the standard collocation for enclosing it inside a transactional boundary. The other options aren't idiomatic here.