The document contains a comprehensive list of questions related to Python programming and data analysis concepts. It covers topics such as Python features, data types, functions, memory management, exception handling, object-oriented programming, and various data analysis techniques. Additionally, it addresses statistical concepts and methods used in data analysis, including hypothesis testing and regression analysis.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
2 views
python questions
The document contains a comprehensive list of questions related to Python programming and data analysis concepts. It covers topics such as Python features, data types, functions, memory management, exception handling, object-oriented programming, and various data analysis techniques. Additionally, it addresses statistical concepts and methods used in data analysis, including hypothesis testing and regression analysis.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
1. What are features of python?
2. What are datatypes of python?
3. What is lambda function in python? 4. What is inheritance in python? 5. How is memory managed in python? 6. What is difference between list and tuple? 7. What is mutable and immutable element? 8. What is pep 8? 9. What is virtual environment? 10. What is namespace in python? 11. How is python interpreted language? 12. What are python mudules? 13. What is python PYTHON PATH? 14. What are local variable, global variable in python 1. What is list datatype? 2. How to add an element in list? 3. How to delete element from list? 4. How to get an element from list? 5. How to sort list? 6. What Is the Difference Between Del and Remove() on Lists? 7. What is difference between append and extend methods? 1. What is set datatype? 2. How to add an element in set? 3. How to delete element from set 4. How to get an element from set ? 5. What is dictionary datatype? 6. How to add an element in dictionary 7. How to delete element from dictionary? 8. How to get an element from dictionary? 1.What is Tuple data type? 2. How to add an element in tuple? 3 How to delete element from Tuple? 4. How to get an element from Tuple? How to create string in python? How to find substring in string? How to convert string upper case to lower case? How to find length of a string?
How can you check if any string contains numbers only?
How to convert list to string?
How to get last 3 characters from word “India” ?.
What are exceptions in Python?
How do you handle exceptions using try, except, and finally blocks? Explain the purpose of the raise statement in Python. What is the purpose of the finally block in exception handling?
Explain the purpose of the with statement in Python for exception handling.
What constructor in python?
What is oop in Python?
What is__ init__ method?
What is inheritance?
What is encapsulation?
What is abstraction?
1. What is data analysis ?
2. what is advantage and limitation of mean 3. what is advantage and limitation of median 4. what is advantage and limitation of mode 5. What is descriptive,diagnostic predictive, prescriptive data analytics? 6. What are data analysis steps? 7. What is skewness and kurtosis? How to measure skewness and kurtosis? 8. What is probability ? explain Marginal , conditional , joint probability 9. What do you mean by univariate, bivariate, and multivariate analysis? 10. What is the central limit theorem? 11. What is data mining? 12. What is a hypothesis test? 13. How to find normality of data? 14. What are the different types of Hypothesis testing? 15. What is error of type I and an error of type II? 16. How do you define Normal Distribution? 17. What is outlier in a dataset? 18. What Is Linear Regression? 19. What Is Logistic Regression? 20. Explain Regression analysis and its applications.