Wednesday, April 22, 2020
Questions for c programming
You will be given a square matrix of N rows and N columns (1 <= N <= 1000) containing positive and negative integers with absolute value not larger than 1000. You are required to compute the greatest sum achievable by walking a path, starting at any cell of the matrix and always moving downwards or rightwards. Additionally, you have to report...
Monday, April 20, 2020
Number in python
If you’ve done any programming or scripting in the past, some of the object types in
Table 4-1 will probably seem familiar. Even if you haven’t, numbers are fairly straight-
forward. Python’s core objects set includes the usual suspects: integers that have no
fractional part, floating-point numbers that do, and more exotic types—complex
numbers...
Sunday, April 19, 2020
Flavors of Python
1) CPython:
It is the standard flavor of Python. It can be used to work with C lanugage Applications.
2) Jython OR JPython:
It is for Java Applications. It can run on JVM
3) IronPython:
It is for C#.Net platform
4) PyPy:
The main advantage of PyPy is performance will be improved because JIT compiler is
available inside PVM.
5) RubyPython
For...
Constructor Concept(Python)
Constructor is a special method in python.
The name of the constructor should be __init__(self)
Constructor will be executed automatically at the time of object creation.
The main purpose of constructor is to declare and initialize instance variables.
Per object constructor will be exeucted only once.
Constructor can take atleast one argument(atleast...
Saturday, April 18, 2020
what is class?(python) with example
In Python every thing is an object. To create objects we required some Model or Plan
or Blue print, which is nothing but class.
We can write a class to represent properties (attributes) and actions (behaviour) of object.
Properties can be represented by variables Actions can be represented by Methods.
Hence class contains both...