Introduction to Artificial Intelligence Question and Answer Class 9

Unit I- Introduction to Artificial Intelligence (817) Class 9 Introduction to Artificial Intelligence Fill in the Blanks : _______________test checks the machine’s ability to exhibit intelligent behaviour. [Turing test] __________________year is known as AI winter.[1974] Microsoft introduced the ________ software in 2014.[Cortana] ______________are based on data that Google collects about you.[Predictive searches] ______________is the type … Read more

(Solved) Python String Exercise For Absolute Beginners

Python String Exercise-1 Here’s an exercise for beginners on creating and manipulating strings in Python: Create a variable called name and assign it a string value representing your name. Use the len() function to find the length of your name and assign the result to a variable called name_length. Print a message to the console … Read more

Create a CSV movies.csv to hold movie records like Movies ID Movies name and Rating (out of 5 stars) using the list.

Create a CSV movies.csv to hold movies’ records like Movies ID, Movies name, and Rating (out of 5 stars) using the list. from csv import writer import csv def create(): f = open(“e:\movies.csv”,”a”) dt = writer(f) dt.writerow([‘Movie_ID’,’Movie_Name’,’Movie_Rating’]) while True: mv_id= input(“Enter Movie ID:\t”) mv_name = input(“Enter Movie name:\t”) mv_rating = input(“Enter Movie Rating(out of 5 … Read more

Write a menu driven program in Python that asks the user to add display and search records of students stored in a binary file.

Write a menu driven program in Python that asks the user to add, display, and search records of students stored in a binary file. The student record contains roll no, name and test score. It should be stored in a dictionary object. Your program should pickle the object and save it to a binary file. … Read more