Saved Bookmarks
| 1. |
Differentiate PYTHON and C++? |
|
Answer» PYTHON: 1. Python is typically an “interpreted” language 2. Python is a dynamic-typed language 3. Data type is not required while declaring variable 4. It can act both as scripting and general purpose language C++: 1. C++ is typically a “compiled” language 2. C++ is compiled statically typed language 3. Data type is required while declaring variable 4. It is a general purpose language |
|