Q. Tell Me few Python modules what you know ?
A. scipy – this module provides methods for doing numeric integrals, solving differential equations
numPy – this module provides an array/matrix type, and it is useful for doing computations on arrays.
pylab – is a module for generating and saving plots
Q. what is object oriented programming?
A. OOP is the programming paradigm based on classes and instances of those classes called objects. The features of OOP are in #python:
#Encapsulation, #Data Abstraction, #Inheritance, #Polymorphism.