Multiple choice

Which one of these is NOT a benefit provided by an IDE?

  1. They provide a GUI for writing code

  2. They can compile your code for you

  3. They automatically download 3rd-party libraries from the internet

  4. They make it easy to manage your project structure

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

An Integrated Development Environment (IDE) provides a GUI for writing code, compiles code, and manages project structures. However, it does not automatically download arbitrary third-party libraries from the internet on its own; that task is handled by build automation tools like Maven or Gradle.