OPERATORS AND ,OR,NOT USING PYTHON PROGRAMMING
x =10
y = 8
print(x>6 and y<10)
print(x<7 or y>5)
print(not(x>=10 and y>6))
print((x+y)>10)
print((x-y)>=2)
OUTPUT:
True
False
True
True
✅ *AI Model Evaluation Interview Questions & Answers* 🧠📊 *1️⃣ Q: What is a confusion matrix, and how do you interpret it?* *A:* A co...