. Who conceptualized and coined the term AI and in which year?
2. Explain the term IoT.
3. What will be the output of following given python code snippet?
1.p,q=7,3
z= p**q**p
print(z)
2.p,q=2,2
z= p/q**p
print(z)
3.p,q=5,5
z= p*q/p
print(z)
4.p,q=15,4
z= p % q + q
print(z)
4. Write output for following problems:
X=17
Y=2
1. X/Y 2.X*Y 3. X**Y 4.X//Y 5.X%Y