Solved

Write Boolean Expressions That Represent the Given English Expressions

Question 25

Essay

Write Boolean expressions that represent the given English expressions.Assume any variables used have been declared and initialized.
a)alpha is greater than 1
b)x is odd
c)x and y are odd
d)ch is an upper case alphabetic character (between 'A' and 'Z').
e)digit,which is f type char,has value that is indeed a digit.

Correct Answer:

verifed

Verified

a.alpha > 1
b.(x%2==1)
c.(x % ...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions