Computer Science, asked by sayamjain564, 1 day ago

what is the output for the following expression :print ((0, 1,2000000) <(0, 3,4))
a. true
b. false
c. (0,1,2000000)
d. shows error ​

Answers

Answered by nanipanduk
2

Answer:

b) True

Explanation:

This is called as Tuple comparision:

the first element in (0,1,200000) is compared with first element in (0,3,4)

and second element with second element, finally 3rd element with other 3rd element.

If all are true: then output will be True

if one or all are false: the output will be False

Similar questions