Okay so I'm pretty confused about how to sketch a venn diagram for this operator: ifte(a,b,c) (or this can be written a?b:c)
given a, b, c truth table and a?b:c
$\begin{array}{c|c|c||c} a & b & c & a?b:c\\ \hline F & F & F & F\\ \hline F & F & T & T\\ \hline F & T & F & F\\ \hline F & T & T & T\\ \hline T & F & F & F\\ \hline T & F & T & F\\ \hline T & T & F & T\\ \hline T & T & T & T \end{array}$
I hope this truth table is clear enough. Okay so I'm asked to draw a venn diagram for this. So I can see that if 'a' is true 'b' is true but 'b' can be true while 'c' is true without 'a' being true and 'c' can be true by itself. But what does this mean for a venn diagram? :/
ifte is "if-then-else"