Skip to main content

Posts

Showing posts from October, 2023

AI - COMPUTER VISION NOTES

  CHAPTER - COMPUTER VISION GRADE X AI Computer vision is a field of computer science that focuses on enabling computers to identify and understand objects and people in images and videos. Like other types of AI, computer vision seeks to perform and automate tasks that replicate human capabilities. In this case, computer vision seeks to replicate both the way humans see, and the way humans make sense of what they see. The range of practical applications for computer vision technology makes it a central component of many modern innovations and solutions. Computer vision can be run in the cloud or on premises. How computer vision works Computer vision applications use input from sensing devices, artificial intelligence, machine learning, and deep learning to replicate the way the human vision system works. Computer vision applications run on algorithms that are trained on massive amounts of visual data or images in the cloud. They recognize patterns in this visual data and ...

COMPUTER SCIENCE: ASSIGNMENT – LIST

  COMPUTER SCIENCE: ASSIGNMENT – LIST CLASS XI   Q1. MCQ 1. What is the output of the following list function? sampleList = [10, 20, 30, 40, 50] sampleList.pop() print(sampleList) sampleList.pop(2) print(sampleList) a. [20, 30, 40, 50] [10, 20, 40] b. [10, 20, 30, 40] [10, 20, 30, 50] c. [10, 20, 30, 40] [10, 20, 40] 2. What is the output of the following code list1 = ['xyz', 'zara', 'PYnative'] print (max(list1)) a. PYnative b. zara 3. What is the output of the following code my_list = ["Hello", "Python"] print("-".join(my_list)) a. HelloPython- b. Hello-Python c. -HelloPython 4. In Python, list is mutable a. False b. True 5. What is the output of the following list assignment aList = [4, 8, 12, 16] aList[1:4] = [20, 24, 28] print(aList) a. [4, 20, 24, 28, 8, 12, 16] b. [4, 20, 24, 28] 6. Select all the correct options to join two lists in Python listOne = ['a', 'b', 'c...

GRADE XII - MySQL - ASSIGNMENT

  MySQL - ASSIGNMENT Consider a table EMPLOYEE with the following data and answer the SQL queries: ENO        ENAME       SALARY    AREA     BONUS   DATE OF JOIN                                                         CODE      (%) 1            Raj Sinha        300000       36        12.00        19-07-2009 2            Udit Thakur     500000       48        10.00        22-03-2008 3            R. K. Sharma   3...