1. 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
5. What is Artificial Intelligence and write five advantages and five disadvantages
also of AI.
6. Explain all the domains of AI with examples.
7. What is NLP? Explain components of NLP.
8. Draw your view/idea to develop “smart home”, ‟smart building‟ and „smart city‟
through AI applications.
9. What is “Artificial Neural Network”?
10. Differentiate b/w Keywords & Identifiers in python with example.
11. What is Python and write its five advantages?
12. Define types of comments in Python.
13. WAP to find the area of rectangle, square, circle and all inputs must be taken
from user at run time.
14. WAP to check that given number is divisible by 5 or not.
15. WAP to reverse the digits of 3 digits number without using reverse function.
16. WAP to add two time zones T1(hr1:min1:sec1) and T2(hr2:min2:sec2) then show
its added time value, T1 & T2 values are entered from user at run time.
(Example: T1 .......... 5 hr : 15 min : 30 sec
T2 .......... 7 hr : 70 min : 35 sec
_________________________________________
Added Time....... 13 hr : 26 min : 05 sec
__________________________________________

17. WAP in python to convert temperature from Celsius to Fahrenheit & Kelvin .
18. WAP to enter total number of days then fragment it in as combined value in
Years : Months : Weeks : Days.
(Lets assume 1year =365 days and 1 month= 30 days)
(Example: Entered Total number of days .......... 400
____________________________________________________
YEAR : MONTHS : WEEKS : DAYS........ 1 Y : 1 M : 0 W : 5 D
____________________________________________________

Q&A Education