The document contains important questions for a Python programming internal exam, covering topics such as tuples, lists, dictionaries, and sets. It includes definitions, examples, and explanations of various functions and methods related to these data structures. Additionally, it addresses concepts like indexing, slicing, and the differences between different types of collections in Python.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
4 views1 page
Second Internals - PYTHON PROGRAMMING Important Q
The document contains important questions for a Python programming internal exam, covering topics such as tuples, lists, dictionaries, and sets. It includes definitions, examples, and explanations of various functions and methods related to these data structures. Additionally, it addresses concepts like indexing, slicing, and the differences between different types of collections in Python.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
PYTHON PROGRAMMING
Important Question for 2nd Internal
1. What is Tuple? Give example.
2. What is List? Give example. 3. How to create a list using List() function? 4. What are the difference between Strings & Lists? 5. Explain built-in functions used in dictionaries in Python. 6. Explain the concepts of indexing and slicing in Lists. 7. What is the difference between append() & insert() function 8. What is the difference between Tuple & List? Explain with example. 9. Explain zip( ) function with example. 10. Discuss the built in functions used on Tuple. 11. How to create a dictionary suing dict() function? 12. Discuss the different ways to create dictionaries in Python. 13. Write a program to perform indexing and slicing in lists. 14. Explain the difference between a dictionaries and sets in Python. 15. What is Frozenset in python and how is it created? Explain with an example. 16. Explain the various operations on List in Python. 17. Explain any 4 built-in methods used in Dictionaries. 18. Explain any 4 Tuple methods with example.