Python can be easily integrated with which of the following?
-
C,C++
-
Active X,Java
-
Dotnet
-
Options 1 and 3
-
Options 1 and 2
E
Correct answer
Explanation
Python integrates with C/C++ through the Python/C API and extensions like ctypes/pybind11. It integrates with Java via Jython (Python implementation on JVM), and with ActiveX/COM on Windows via pywin32. .NET integration exists through IronPython but is less commonly used in standard Python environments.