Posts

Showing posts from November, 2024

Unit-3: Database Concepts and the SQL

  Understanding about Data  ---> Don't write this on notes (This pdf is for your knowledge purpose only) Unit-3.  Database Concepts and the SQL Notes: 👇 Database Concepts Part-1 <------ Write this on your notes Database Concepts Part-2     <--- dont write this on your notes,  still some changes are there

Question paper

List Questions 1. what is the output of the code?             list1 = [12, 32, 65, 26, 80, 10]             list1.sort()             print(list1) 2.         list1 = [12, 32, 65, 26, 80, 10]             sorted(list1)             print(list1) 3.         list1=[1,2,3,4,5]             print(list1[len(list1)-1) 4. Consider the following list myList. What will be the elements of myList after the following two operations :             myList=[10,20,30,40] i.          myList.append([50,60])   ...