10 Important Questions of CSV File in Python with Solution

Important Questions of CSV File in Python Q1. Write a program to read entire data from file data.csv [showhide type=”links1″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. import csv f=open(“data.csv”, ‘r’) d=csv.reader(f) for row in d: print(row) OUTPUT: [‘Admno’, ‘Name’, ‘Class’, ‘Sec’, ‘Marks’] [‘1231’, ‘Amit’, ‘XII’, ‘A’, ’45’] [‘1224’, ‘Anil’, ‘XII’, ‘B’, ’49’] [‘1765’, ‘Suman’, ‘XI’, ‘A’, ’42’] … Read more

IT Class 10 code 402 Important Questions Unit-1 Digital Documentation | Session 2

IT Class 10 code 402 Important Questions Unit-1 Digital Documentation | Session 2 Important Links Click for IT Class 10 Code 402 Practical File Questions and to download sample Practical File Click for IT Class 10 402 Book Solutions | Unit 4 Web Applications and Security Click for IT Class 10 402 Book Solutions | … Read more

120+ Important SQL Practice Questions with Answers for CBSE Class 11 and 12

SQL Practice Questions for classes 11 & 12 SQL Practice Questions – Test 1 Q1. Write full form of DBMS. [showhide type=”links1″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. Database Management System [/showhide] Q2. Define the following term [showhide type=”links2″ more_text=”Show Answer” less_text=”Hide Answer”]Ans.  Q3. A group of rows and columns is called _______________ [showhide type=”links3″ more_text=”Show Answer” … Read more

IT code 402 Class 10 Unit-1 Digital Documentation | Important Questions of Session 1

SESSION 1: CREATE AND APPLY STYLES IN THE DOCUMENT Important Links Click for IT Code 402 Practical File Questions and to download sample Practical File Click for IT 402 Class 10 Book Solutions | Unit 4 Web Applications and Security Click for IT 402 Class 10 Book Solutions | Unit 3 RDBMS(Basic) Click for IT … Read more

10 Important String Programs in Python for Practice with Solutions – Part 2

Important String Programs in Python for exams are given below: Q11. Write a program to display the largest word from the string. [showhide type=”links11″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. str=input(“Enter any String :”) L = str.split() max=0 b=”” for i in L: if len(i) > max: b=i max=len(i) print(“Longest word is “,b)[/showhide] Q12. Write a program … Read more

Unit 4 | Information Technology Code 402 Class 10 Solutions | Web Application and Security

Information Technology Code 402 Class 10 Solutions Important Links Click for IT 402 Practical File Questions and to download sample Practical File Click for IT 402 Class 10 Book Solutions | Unit 3 RDBMS(Basic) Click for IT 402 Class 10 Book Solutions | Unit 2 Spreadsheet (Advanced) Click for IT 402 Class 10 Book Solutions … Read more

Unit 1 Digital Documentation Class 10 IT Code 402 Book Solutions

Digital Documentation Class 10 : LATEST UPDATE CBSE has introduced LibreOffice Writer in class 10th in place of OpenOffice Writer. Click here for new Curriculum. CBSE also released Book according to new Syllabus. Click here to download the book. Link of back solved questions are given below Unit 1: Digital Documentation(Advanced) using LibreOffice Writer Chapter … Read more

100+ Computer Network in python Important Questions (Solved) for Class 12

According to CBSE Latest Sample Paper 2020, weightage of Computer Network Unit is approximately 15 marks. This article is giving all the expected/important questions of unit COMPUTER NETWORK Practice Questions of Computer Network -Test 1 Q1. What do you mean by Computer Network? [showhide type=”links1″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. A collection of interconnected computers to … Read more

Basic Programs of String Datatype in Python (solved) -part 1

String programs

Important Programs of String Datatype in Python Q1. Write a program to accept a string and display its length. [showhide type=”links1″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. str = input(“Enter any String”) print(len(str))[/showhide] Q2. Write a program to accept a string and count number of vowels. [showhide type=”links2″ more_text=”Show Answer” less_text=”Hide Answer”]Ans. str = input(“Enter any String”) … Read more

Unit 2 Electronic Spreadsheet (Advanced) IT Code 402 Class 10 Book Solutions

Electronic Spreadsheet (Advanced) IT Code 402 Class 10 Book Solutions Important Links Click for IT 402 Practical File Questions and to download sample Practical File Click for IT 402 Class 10 Book Solutions | Unit 4 Web Applications and Security Click for IT 402 Class 10 Book Solutions | Unit 3 RDBMS(Basic) Click for IT … Read more