Suppose that str1, str2, and str3 are string variables, and str1 = "English", str2 =Â
"Computer Science", and str3 = "Programming". Evaluate the following expressions.
a. str1 >= str2
b. str1 != "english"
c. str3 < str2
d. str2 >= "Chemistry"
a. true
b. true
c. false
d. true
Comments
Leave a comment