In Drupal, how to slide content title?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Drupal core ships with a rich caching API, defaulting to ________ caching.
Correct Answer:
Database
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way of debugging a Drupal application?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
What is the purpose of views?
Correct Answer:
Views organize the data from several nodes into one place and are presented on views and blocks.
Note: This Question is unanswered, help us to find answer for this one
What is the PHP function to check if a block region has blocks in Drupal 8?
Correct Answer:
Drupal_render
Note: This Question is unanswered, help us to find answer for this one
Which one of the following is a correct way to use Render API to output a link?
Correct Answer:
$output = array( '#type' => 'link', '#title' => 'About', '#url' = > 'about', );
Note: This Question is unanswered, help us to find answer for this one
Which of the following loop variables are available in twig? (Check all that apply)
Correct Answer:
loop.index
loop.revindex
loop.index0
loop.length
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Blocks can contain which of the following Drupal data features?
Correct Answer:
Themes, hooks, and template suggestions
Note: This Question is unanswered, help us to find answer for this one
How can a table be dropped using the Module?
Correct Answer:
Use db_drop_table in install file
Note: This Question is unanswered, help us to find answer for this one
Which of the following shows helpful toolbar at the bottom of every page?
Correct Answer:
Webprofiler
Note: This Question is unanswered, help us to find answer for this one
The Internal Page Cache module is enabled by default in Drupal 8?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
In Drupal 8, the Internal Page Cache module which caches pages for anonymous users is enabled by default?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
20- array_key_exist() function that tells you if an array key exists regardless of the value?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
In Drupal, _______ arrays provide you a structured way to ______________ change the content ___________ it is displayed.
Correct Answer:
Render, Programmatically, before
Note: This Question is unanswered, help us to find answer for this one
What will be the output of following in Twig?
{{ pi I round(2) }}
Correct Answer:
3.14
Note: This Question is unanswered, help us to find answer for this one
7- In Drupal, Core modules also includes a hierarchicel taxanomy system, which allows content to be categorized?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
The minimum requirements for a custom module are:
Correct Answer:
A folder [CUSTOM_MODULE] in the module directory with the files [CUSTOM_MODULE].info and [CUSTOM_MODULE].module in it.
Note: This Question is unanswered, help us to find answer for this one
Which of the following can be used to fetch values sent programmatically to the view?
Correct Answer:
Contextual Filter
Note: This Question is unanswered, help us to find answer for this one
"Drupal 6.x modules are not compatible with Drupal 7.x'
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to organize your content?
Correct Answer:
Taxonomy
Note: This Question is unanswered, help us to find answer for this one
15- PDO(PHP Data Object), it is a lean and consistent way to access databases and It allows developers to re-write portable code with ease?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
What is the best way to add category fields to a Drupal content type?
Correct Answer:
Categories
Note: This Question is unanswered, help us to find answer for this one
"Dblog" module logs and records system events to the database.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Can we show SQL query for the view?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Which of the following pager settings are provided by views:
Correct Answer:
Display a specified number of items
Note: This Question is unanswered, help us to find answer for this one
Drupal is an open source CHS, you can create your own plugins.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Fields for content types can be presented and changed using which tool?
Correct Answer:
Content Types
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a blog for every user?
Correct Answer:
Blog
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct command to output configuration items that are different in active configuration compared with a directory?
Correct Answer:
drupal config:diff [arguments] [options]
Note: This Question is unanswered, help us to find answer for this one
In Drupal 8 custom modules can be placed inside which of the following directories? (choose all that apply)
Correct Answer:
/sites/all/modules
/modules
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not secure for SQL queries?
Correct Answer:
db_query('SELECT foo FROM {table} t WHERE t.name = '. $_GET['user']);
Note: This Question is unanswered, help us to find answer for this one
If a custom module is listed on admin/modules but its checkbox is disabled, which of the following will fix it?
Correct Answer:
Make sure that the core compatibility is set to 8.x in module_name.info.yml file core: 8.x
Note: This Question is unanswered, help us to find answer for this one
How many spaces have to be used for indention?
Correct Answer:
2
Note: This Question is unanswered, help us to find answer for this one
Which of the following is required to create a custom field in module?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
To provide a default configuration settings in a module, it is best to use :
Correct Answer:
module.settings.yml
Note: This Question is unanswered, help us to find answer for this one
Drupal 8 is built on _____________ framework?
Correct Answer:
Symfony
Note: This Question is unanswered, help us to find answer for this one
To create a custom block, we need to extend our block from which Class:
Correct Answer:
BlockBase
Note: This Question is unanswered, help us to find answer for this one
Which function is used to activate the DB?
Correct Answer:
db_set_active()
Note: This Question is unanswered, help us to find answer for this one
Which of the following file is required to create a Drupal 8 Module?
Correct Answer:
MODULE_NAME.info.yml file (aka, "info yaml file") is required and ensure file has type: module
Note: This Question is unanswered, help us to find answer for this one
Where can you find .info file?
Correct Answer:
In themes
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to create dummy nodes for specific content type ?
Correct Answer:
drupal create:nodes [arguments] [options]
Note: This Question is unanswered, help us to find answer for this one
Which of the following is true to create dummy nodes for specific content type
Correct Answer:
drupal create:nodes [arguments] [options]
Note: This Question is unanswered, help us to find answer for this one
Which of the following Live Preview Settings are available for views?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a DRUSH command?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following is/are correct to execute cron implementations by module?
Correct Answer:
drupal cre MODULE_NAME
drupal cron:execute MODULE_NAME
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which file is used to create a menu link in a module?
Correct Answer:
module.links.menu.yml
Note: This Question is unanswered, help us to find answer for this one
Which of the following Menu types are not provided by views?
Correct Answer:
Block menu
Note: This Question is unanswered, help us to find answer for this one
What are Triggers?
Correct Answer:
Triggers are programs that fire on certain events.
Note: This Question is unanswered, help us to find answer for this one
Which of the following are required properties for route definition in module.routing.yml? (Check all that apply)
Correct Answer:
path
defaults
requirements
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which one of the following is true?
Correct Answer:
Variables set in settings.php will override the variables set in settings.local.php
Note: This Question is unanswered, help us to find answer for this one
Which options is provided by Views Debugging settings?
Correct Answer:
Add Views signature to all SQL queries
Note: This Question is unanswered, help us to find answer for this one
Which command can be used to check Drupal and its contrib modules updates?
Correct Answer:
drush up
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to export view in YAML format inside module?
Correct Answer:
drupal config:export:view [arguments] [options]
Note: This Question is unanswered, help us to find answer for this one
Which of the following is an input format for the user content?
Correct Answer:
Filter
Note: This Question is unanswered, help us to find answer for this one
Which of the following code show all Notices and Errors?
Correct Answer:
error_reporting(-1); $conf['error_level'] = 2; ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE);
Note: This Question is unanswered, help us to find answer for this one
Which role automatically receives all permissions when a new module is enabled?
Correct Answer:
Administrator
Note: This Question is unanswered, help us to find answer for this one
Which of the following codes can be used to set the regions in a Drupal theme?
Correct Answer:
regions[header] = Header regions[content_header] = Content Header
regions[content] = Content regions[sidebar_second] = Right sidebar
Note: This Question is unanswered, help us to find answer for this one
You want to add a custom JavaScript file to be loaded on every page of your website. Where would be the best place to add this file if you had to choose between the next options?
Correct Answer:
Custom theme: info file (scripts[])
Note: This Question is unanswered, help us to find answer for this one
Which of the following notifications pertain to the new versions of Drupal and contributions?
Correct Answer:
Update status
Note: This Question is unanswered, help us to find answer for this one
Which of the following notifications about the new versions of Drupal and contributions?
Correct Answer:
Update status
Note: This Question is unanswered, help us to find answer for this one
Which option applies in order to change Public file base URL?
Correct Answer:
Public file base URL can be changed using settings.php
Note: This Question is unanswered, help us to find answer for this one
Which of the following options apply to change Public file base URL?
Correct Answer:
Public file base URL can be changed using settings.php
Note: This Question is unanswered, help us to find answer for this one
You have a view of teasers of a content type containing a referenced ID to a taxonomy term. You want each node in the view to show several fields of that taxonomy term. Which of the following would be best practice if you would do it programmatically?
Correct Answer:
In the template.php file through the hook_preprocess_node() function load the needed fields and put them in a variable.
Note: This Question is unanswered, help us to find answer for this one
Which code can be used to change date_popup date format in form?
Correct Answer:
$form['mymodule_start_date'] = array( '#type' => 'date_popup', '#title' => t('Start date'), '#date_format' => 'd-m-Y', '#datepicker_options' => array( 'maxDate' => 0, 'dateFormat' => date_popup_format_to_popup('d-m-Y'), ), '#date_year_range' => '-3:+0', '#date_label_position' => 'above', '#theme_wrappers' => array('date_popup'), '#required' => TRUE, );
Note: This Question is unanswered, help us to find answer for this one
Which code can be used to remove the strange text of Taxonomy Term?
Correct Answer:
function THEME_preprocess_page(&$vars) { if(isset($vars['page']['content']['system_main']['no_content'])) { unset($vars['page']['content']['system_main']['no_content']); } } function THEME_preprocess_page(&$vars) {
Note: This Question is unanswered, help us to find answer for this one
Which of the following are valid values of 'requirements' property In module.routing.yml?
Correct Answer:
_permission
_role
_csrf_token
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
In module.routing.yml file 'requirements' can have following properties defined?
Correct Answer:
_permission
Note: This Question is unanswered, help us to find answer for this one
What is Drupal's main container that holds content in its themes?
Correct Answer:
Blocks
Note: This Question is unanswered, help us to find answer for this one
Which one of the following is true with respect to jQuery loading in Drupal?
Correct Answer:
jQuery only loads where required
Note: This Question is unanswered, help us to find answer for this one
In Drupal 8, CacheCollector has the same internal logic as CacheArray but uses public methods for get and set instead of __________.
Correct Answer:
ArrayAccess
Note: This Question is unanswered, help us to find answer for this one
In module.routing.yml all keys under the defaults section which do not start with an underscore will be passed in as arguments to the controller?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to alter existing routes?
Correct Answer:
By implementing the alterRoutes(RouteCollection $collection) method of class \Drupal\Core\Routing\RouteSubscriberBase
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct command to remove events from DBLog table?
Correct Answer:
drupal database:log:clear
Note: This Question is unanswered, help us to find answer for this one
Which of the following formats are supported by default in Views? (Check all that apply)
Correct Answer:
Grid
HTML List
Table
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to translate a string in Twig?
Correct Answer:
{{ 'String to translate' | t }}
Note: This Question is unanswered, help us to find answer for this one
Which of the following can be used to inspect variables in twig? (Check all that apply)
Correct Answer:
{{ dump() }}
{{ kint() }}
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct syntax to loop through items in a list in Twig template?
Correct Answer:
<ul class="links field__items"> {% for item in items %} <li {{ item.attributes }} > {{ item.content }} </li> {% endfor %} </ul>
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a correct way to insert function in Twig?
Correct Answer:
{% sqrt(9) %}
Note: This Question is unanswered, help us to find answer for this one
Which of the following is used for organizing content?
Correct Answer:
Taxonomy
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to display current key:value on settings file?
Correct Answer:
drupal config:settings:debug
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to display current key:value on settings file?
Correct Answer:
Authentication API
Block API
RESTful Web Services API
Tour API
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct to include CSS or DS files in a Drupal Module?
Correct Answer:
Save the CSS or DS to a file.
Define a "library", which can contain both CSS and JS files."Attach" the library to a render array in a hook.
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following permissions are defined by Configuration Manager:
Correct Answer:
Export configuration
Import configuration
Synchronize configuration
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
What is a theme suggestion in Drupal theming?
Correct Answer:
Theme suggestions change the look of a specific node and they re-style views, blocks, and pages.
Note: This Question is unanswered, help us to find answer for this one
What is the default location of the configuration sync directory?
Correct Answer:
DRUPALROOT/sites/default/files/config_LONG_HASH
Note: This Question is unanswered, help us to find answer for this one
CacheArray is in the process of being replaced by CacheCollector in ____?
Correct Answer:
Drupal 8
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to remove whitespace between HTML tags in Twig template?
Correct Answer:
{% spaceless %} <div class="code"> <strong>foo</strong> </div> {% endspaceless %}
Note: This Question is unanswered, help us to find answer for this one
In custom module, routes are defined in:
Correct Answer:
MODULENAME.routing.yml
Note: This Question is unanswered, help us to find answer for this one
Drupal core is __ defining a system of __ and __?
Correct Answer:
modular, hooks, callbacks
Note: This Question is unanswered, help us to find answer for this one
Among the following DB-place-holders, which one is not enclosed within single quotes?
Correct Answer:
Binary
Note: This Question is unanswered, help us to find answer for this one
Which of the following controls content in sidebars?
Correct Answer:
Block
Note: This Question is unanswered, help us to find answer for this one
25- Drupal has over ________ plugins to boost your website?
Correct Answer:
5000
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to print a variable in Twig?
Correct Answer:
{{ name_of_variable }}
Note: This Question is unanswered, help us to find answer for this one
Which of the following options are provided by Drupal to increase performance? (Check all that apply)
Correct Answer:
Aggregate JavaScript files
Aggregate CSS files
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
What Drupal feature is activated when a trigger is enabled?
Correct Answer:
Actions
Note: This Question is unanswered, help us to find answer for this one
Which of the following are properties of render array? (Check all that apply)
Correct Answer:
#type
#cache
#markup
#plain_text
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
By default, Drupal provides the following roles: (Check all that apply)
Correct Answer:
Anonymous User
Authenticated User
Administrator
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are valid for Field SQL Storage?
Correct Answer:
Field UI—allow you to create fields and attach them to content types, comments
Note: This Question is unanswered, help us to find answer for this one
Which of the following files are required for creating a Drupal theme? (Check all that apply)
Correct Answer:
.info
themes.php
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which is the correct way to attach Libraries in THEME.info.yml?
Correct Answer:
name: custom_theme type: theme description: Amazing Custom Theme package: Other core: 8.x libraries: - custom_theme/global-styling - custom_theme/views - custom_theme/header_footer
Note: This Question is unanswered, help us to find answer for this one
Which statement is true?
Correct Answer:
Asset libraries are simple collections of CSS or JavaScript files
Note: This Question is unanswered, help us to find answer for this one
Which of the following data storage types are provided by Configuration Management in Drupal?
Correct Answer:
Content Session State Configuration
Note: This Question is unanswered, help us to find answer for this one
Which minimum PHP version is required to run Drupal 8.2?
Correct Answer:
PHP 5.6
Note: This Question is unanswered, help us to find answer for this one
In Drupal, the highest level of taxonomy description is _____________.
Correct Answer:
Vocabulary
Note: This Question is unanswered, help us to find answer for this one
Use the CCK module to add fields to your ________.
Correct Answer:
Nodes
Note: This Question is unanswered, help us to find answer for this one
Which is the correct way to list all routes?
Correct Answer:
drupal router:debug
Note: This Question is unanswered, help us to find answer for this one
To create our own Controller, we need to extend it from the following Controller Class:
Correct Answer:
ControllerBase
Note: This Question is unanswered, help us to find answer for this one
Which one of the following is the correct way to discover valid theme hook suggestions?
Correct Answer:
Enable Twig debugging mode
Note: This Question is unanswered, help us to find answer for this one
Which file defines routes in a module?
Correct Answer:
module.routing.yml
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to attach a library in a Drupal Module?
Correct Answer:
use ['#attached'] property
Note: This Question is unanswered, help us to find answer for this one
Which of the following can be used to attach a library in twig template?
Correct Answer:
attach_library()
Note: This Question is unanswered, help us to find answer for this one
Drupal users are grouped into what?
Correct Answer:
Roles
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the customerror module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the locale module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
use the internationalization module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
"Public" means files are available using HTTP directly. "Private" means files are transferred by Drupal.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By creating a taxonomy
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By creating the css files, then setting the correct parameters in the theme's .info file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
use the fivestar module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both b & c are true.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Change the setting of "Public registrations" in the User settings page.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Views
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the taxonomy access control module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
use the backup_migrate module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By using the pathauto module
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
On the basis of weight
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the content translate module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use abuse and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By editing or creating current theme's maintenance-page.tpl.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
enable the poll module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By enabling the trigger module and creating an email action and trigger system to send that email when a user registers successful
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Blocks
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
settings.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the ubercart module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the DB Maintenance module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use videochat and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
robots.txt
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
-50 - 50
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Set default front page on site information in the admin settings to that category url.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the twitter module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By installing the Global Redirect module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
settings.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Change the relative weight of each item within the menu accordingly, the lowest appearing first.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
develop new types of content
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By selecting "Create new revision" when creating or editing content
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
categorize
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
use the rules module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the filebrowser module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By installing the Page Title module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By changing the required fields' color in the admin settings
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By using the embedded video module and its required modules to create new content type with one required video field and setting this required video field to support youtube
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the forum module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
In php.ini
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Copy and customize the templates that you want to override to the theme folder or edit these templates in theme folder if these templates exist.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the simplenews module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By enabling the profile module and its required modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use AdSense and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Set default front page on site information in the admin settings.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
node
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
3
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the GMapEZ module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use calendar and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
sites/all/modules directories under Drupal installation directory
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Teaser
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Page
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the captcha module or spam filter module.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Use the diggthis module and its required modules.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Select "post comments" for anonymous users in the permissions section of the admin settings.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Mysql
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Weight
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By enabling search module and setting search permissions for the appropriate type of users
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Aggregator.css
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Drupal_get_form
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
When you're in body view.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both a and b
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Throttle
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Administer Site configuration Input formats.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
cache_set()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
hook_module_implements_alter()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the given options are valid
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
HTML Corrector, HTML filter, Line break converter, URL filter
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Block
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Seven
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The unique id of the specific block
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
content_load()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Drupal Core Updates
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
hook_form_alter()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Syslog
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A distribution of Drupal with strong social and community features.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to Administer > Site configuration > Site maintenance and set Site status = Off-line
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
page-node-23.tpl.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
api.drupal.org
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Bootstrap
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to Administer › Site configuration and set the Download method as Private
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Content Type
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
a piece of content
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Trigger
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Menu
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
t()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Sender's email must belong to a Drupal account with appropriate privileges; Receiver's email must be specified in the configuration
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
name
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Symfony framework
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
128 MB
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to Structure > Menu > Add Menu. Then, move menu in block footer.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Block
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Blocks
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Send site to maintenance mode.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Main menu shows major sections of site; User menu contains links related to user account.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Views
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Create a custom page apologizing for the error and navigate to admin/settings/error-reporting to specify the page path
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Site visitors can customize the view they are looking at with one or more sort controls.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Optionally specify an alternative URL by which the content can be accessed.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Shows the login form (anonymous) or currently logged in user profile.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
commerce
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
mymodule.info and mymodule.module
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Locale
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Add a Parent term relationship and set the Term field to use the Parent term relationship
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
hook_form_alter()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
account created immediately after installing a new Drupal site
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to admin/settings/site-information and set a new Drupal path
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the given options are correct
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Block
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
taxonomy-term.tpl.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
sites/all/themes
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Appearance > List, scroll to disabled themes. Enable desired theme and click, "set as default."
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
jQuery
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to People > Permissions Tab > Roles > Add Role
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Create a mytheme folder in sites/all/themes; create a mytheme.info file inside mytheme/;add the lines "name = Mytheme" , "core =6.x" and "base theme = garland" to the mytheme.info file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Node
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Content > Comments
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Drush
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Poll
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the given options are correct
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
In the /sites/all/modules folder on your web server
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Site Information
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
sites > all > modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of them
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Path
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
hook_menu_alter
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Content Management Systems
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
jQuery
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
TRUE
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Navigate to Modules > check the box next to the module > Save
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
text editor modules
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
UTF-8
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the given options are correct
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A powerful command line utility for Drupal administration
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
www.mysite.com/user
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Publishes the node on your front page. Good use for RSS feed.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Add the line ini_set('memory_limit','512M') to settings.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
views_get_view()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
base_url/node
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
executes tasks on behalf of installed modules
Note: This Question is unanswered, help us to find answer for this one
Drupal MCQs | Topic-wise