Free Drupal Open Source Trivia Question and Answers — Questions and Answers
Question 1: How much space does Drupal take?
- 30mb
- 50mb
- 56mb
- 80mb (Correct answer)
Correct answer: 80mb
The base installation of Drupal, without any additional modules or themes, typically requires approximately 80MB of disk space. This figure can vary slightly depending on the specific version and server environment, but 80MB is a common approximate size for the core files needed to run a basic Drupal site.
Question 2: What is your knowledge of Drupal's license?
- GPLv2 (Correct answer)
- GPLv2.5
- GPLv3.5
- GPLv3
Correct answer: GPLv2
Drupal is free and open-source software, and it is distributed under the GNU General Public License, specifically version 2 (GPLv2) or later. This license ensures that users have the freedom to run, study, share, and modify the software. Adhering to GPLv2 promotes community collaboration and ensures the software remains open.
Question 3: What is the name of the Drupal stable release?
- Drupal Light
- Drupal X
- Drupal
- Drupal Core (Correct answer)
Correct answer: Drupal Core
The fundamental system of Drupal, which encompasses its core features and functionalities, is officially referred to as Drupal Core. This term differentiates the base software from additional contributed modules, themes, and distributions that extend its capabilities. Drupal Core represents the stable, official release maintained by the Drupal project.
Question 4: Drupal went open source when?
- 2000
- 2002
- 2001 (Correct answer)
- 2003
Correct answer: 2001
Drupal was initially developed by Dries Buytaert as a message board system. It was officially released as an open-source project in January 2001, making its source code publicly available under the GPL license. This pivotal moment marked its transformation from a personal project into a community-driven content management system.
Question 5: Who originally wrote the Drupal?
- Howard Dean
- Jake Shaw
- Dries Buytaert (Correct answer)
- Linda Shaw
Correct answer: Dries Buytaert
Dries Buytaert is the original creator and project lead of Drupal. He began developing Drupal as a message board system called 'Drop.org' in 1999, and subsequently released it as an open-source project in 2001. Buytaert remains a key figure in the Drupal community and the broader open-source movement.
Question 6: Cron jobs are necessary in Drupal for
- Checking the health of the system
- Indexing Content
- Aggregating Content
- All of the above (Correct answer)
Correct answer: All of the above
Cron jobs in Drupal are crucial for executing various periodic background tasks. These tasks include indexing content for search, aggregating RSS feeds, cleaning up temporary files, and checking the system's health and updates. Without regular cron execution, many core Drupal functionalities and maintenance processes would not function correctly, impacting site performance and data freshness.
Question 7: When the module is first installed, the following code is executed:
- .module file
- .install file (Correct answer)
- .get file
- .info file
Correct answer: .install file
In Drupal, the `.install` file associated with a module contains functions that are executed during the module's installation and uninstallation. Specifically, the `hook_install()` function within this file runs when the module is first enabled. This is where essential setup tasks, such as creating database tables and setting default configurations, are performed.
How much space does Drupal take?