When using an IDE, what must you do to use a class that's stored in a library? Select one: a. Nothing. Classes in libraries are automatically available. b. Code an import statement for the class. c. Add the library to your project. d. Both b and c.

Respuesta :

ijeggs

Answer:

Both B and C

Explanation:

In order to use methods from another class (library) in your code, the class library will have to be added or imported into your code.

This is implemented in different ways across different programming languages, for example;

Java uses the keyword import followed by the class library name

C++ uses the key word #include

C# Uses the keyword using

Answer:

Both b and c.

Explanation:

In my opinion, I think the IDE determines how to use the class. While you import some, some have to be added to your project

ACCESS MORE