Multiple choice technology programming languages

Python can be easily integrated with which of the following?

  1. C,C++

  2. Active X,Java

  3. Dotnet

  4. Options 1 and 3

  5. Options 1 and 2

Reveal answer Fill a bubble to check yourself
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.