Advertisements
Advertisements
प्रश्न
Differentiate PYTHON and C++?
फरक स्पष्ट करा
उत्तर
PYTHON:
- Python is typically an “interpreted” language
- Python is a dynamic-typed language
- The data type is not required while declaring a variable
- It can act both as scripting and general-purpose language.
C++:
- C++ is typically a “compiled” language
- C++ is compiled statically typed language
- The data type is required while declaring a variable
- It is a general-purpose language.
shaalaa.com
Introduction to Python and C++
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
A framework for interfacing Python and C++ is ______
Which of the following is a software design technique to split your code into separate parts?
Identify the function call statement in the following snippet.
if __name__ =='__main__':
main(sys.argv[1:])
Which of the following can be used for processing text, numbers, images, and scientific data?
What does __name__ contain?
Differentiate compiler and interpreter.
What is the use of the cd command? Give an example.
Write any 5 features of Python.
Explain each word of the following command.
Python <filename.py> -<i> <C++ filename without cpp extension>