what will be the output of the following? bool(0,0)
Answers
Answered by
2
Answer:
Hope this helps you
Explanation:
If the argument passed to the bool function does not amount to zero then the Boolean function returns true else it always returns false. In the above code, in first line 'False' is passed to the function which is not amount to 0. Therefore output is true
Similar questions