Multiple choice technology programming languages

Which of the following is true about python?

  1. Fixing mistakes in programs is slow

  2. It does not have debugging features built-in

  3. Python in interpreted language can be tested as soon as it is wriiten,without waiting for its code to compile

  4. It doesn't provide interface to major Databases

  5. It has less text manipulation feature

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

As an interpreted language, Python code can be executed immediately without compilation - you can test code as soon as you write it. Python includes debugging tools like pdb, has extensive text manipulation capabilities (string methods, regex via re module), and provides database interfaces (DB-API).