ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Consider the expression T & F | T. What is the number of ways in which the expression can be parenthesized so that the output is T (true)?
Correct Answer: C — 2
The expression can be parenthesized as T & (F | T) and (T & F) | T so that the output is T.