IX ARTIFICIAL INTELLIGENCE CURRICULUM - 417
A. THEORY ( TOTAL 50 MARKS )
1. Questions on AI for Register
2. AI Book UNIT 2 QUESTIONS for Register
3. Case Study
6. AI Book Unit 3,4 Questions
7. Python Programs done in class
EMPLOYIBILITY SKILLS (10 MARKS )
QUESTION PAPERS:
a) Sample Paper - Class IX AI (417) 2023-24
b)HY 2023-24 - Anskey of HY Syllabus data
d) print () function samples
B. PRACTICALS ( 50 MARKS )
PRACTICAL QUESTIONS DONE IN LAB:
Q1. age=int(input("Enter age"))
if(age>=18):
print("Person can vote")
else:
print("Person cannot vote")
Q2. n=int(input("Enter a number"))
if(n>0):
print(n,"is positive")
elif(n<0):
print(n,"is negative")
else:
print(n,"is zero")
'''
Q3. n=int(input("Enter a number"))
if(n%2==0):
print(n,"is even")
print("Square=",n**2)
else:
print(n,"is odd")
print("Cube=",n**3)
Comments
Post a Comment