Android Application Development (AND-401) — Question 19
What does the Android project folder "res/" contain?
Answer options
- A. Java Activity classes
- B. Resource files
- C. Java source code
- D. Libraries
Correct answer: B
Explanation
The 'res/' folder in an Android project is specifically designed to hold resource files such as layouts, strings, and images. The other options refer to different components of the project: Java Activity classes are found in the source code, while libraries are external dependencies, and Java source code itself is located in a separate directory.