Multiple choice technology web technology

You need to do a join on 2 flows and the output should have the matching records as well as the unmatching records from In0. What type of join will you use?

  1. Inner Join

  2. Explicit Join ( record-required 0 = true, record-required 1 = true )

  3. Explicit Join ( record-required 0 = false, record-required 1 = true )

  4. Explicit Join ( record-required 0 = true, record-required 1 = false )

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

Setting record-required 0 to false allows unmatched records from In0 to pass through (like a left outer join), while record-required 1 = true requires matches from In1. This gives all matching records plus unmatched In0 records.