Computer Science, asked by chaturvedi2004yash, 4 months ago

2. Write the output of the following program lines? Not, and, or
x, y = 5, 6
print (x == 5)
print ( x == 6)
print (x == 5 and y == 6)
print (not x == 6 and y==6)​

Answers

Answered by kruthika86
0

Answer:

x ==5 and y==6

Explanation:

this is the correct answer

Similar questions