ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What will the following expression evaluate to (true && false) || (!true)
True
False
Error
None of the mentioned
Correct Answer: B — False
Boolean operator && evaluates to true only when both the values are true and !true means false hence the whole expression will evaluate to false.