Correct Answer:
onAfterDisplay
Note: This Question is unanswered, help us to find answer for this one
Consider the following code: $db =&JFactory::getDBO(); $query ="DELETE FROM #__users WHERE username = ''; SELECT count(*) FROM #__users WHERE username = ''; " $db->setQuery($query); echo $db->loadResult(); What is the output?
Correct Answer:
1
Note: This Question is unanswered, help us to find answer for this one
By default, the SEF URLs are handled by the theJRouterSite object (from /includes/router.php) and is called by a call to the JApplication::route() in index.php. This call is made on the $mainframe variable which is actually an instance of JSite (from /includes/application.php). Does the JApplication::route() change the result of the $_GET array?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
In the Media Manager, which of the following file types can be uploaded?
Correct Answer:
flv
Note: This Question is unanswered, help us to find answer for this one
Which of the following functions checks if a user has the access permission?
Correct Answer:
JUser::authorize();
Note: This Question is unanswered, help us to find answer for this one
Which is the correct procedure to uninstall a Joomla extension?
Correct Answer:
Click on menu "Extensions->Install/Uninstall", choose the appropriate extension type tab, then select the extension to uninstall.
Note: This Question is unanswered, help us to find answer for this one
What is a Template?
Correct Answer:
A Template controls the way the content of a web site is displayed.
Note: This Question is unanswered, help us to find answer for this one
If "Site Offline" is enabled, what will be shown when you visit your site?
Correct Answer:
Homepage with Offline message
Note: This Question is unanswered, help us to find answer for this one
How will you assign a template to a page?
Correct Answer:
Go to the template manager, tick a template checkbox, click the "Assign" button on the toolbar and select "pages"
Note: This Question is unanswered, help us to find answer for this one
In the JPagination class, what does the getResultsCounter() method do?
Correct Answer:
It returns a string containing the results currently being displayed.
Note: This Question is unanswered, help us to find answer for this one
Which of the following technologies is/are used by Joomla?
Correct Answer:
PHP
Note: This Question is unanswered, help us to find answer for this one
Which two statements among the following apply to redirecting a HTTP request to another URL?
Correct Answer:
The redirect method must be called before the response body is committed, otherwise an IllegalStateException is thrown
Note: This Question is unanswered, help us to find answer for this one
How do you create the Parameter buttons the toolbar for component com_hello?
Correct Answer:
JToolBarHelper::preferences('com_hello', '500');
Note: This Question is unanswered, help us to find answer for this one
Which of the following methods must you use to deny access from an external direct call?
Correct Answer:
defined( '_JEXEC' ) or die( 'Restricted access' )
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements prevents SQL Injection Attacks?
Correct Answer:
$sql = 'UPDATE #__mytable SET `string` = ' . $string;
Note: This Question is unanswered, help us to find answer for this one
Which of the following are "must-have" requirements for Joomla installation?
Correct Answer:
PHP Version >= 4.3.10
MB String Overload Off
MySQL Support
configuration.php Writable
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 items will you find in the Help menu?
Correct Answer:
Joomla! Help
Note: This Question is unanswered, help us to find answer for this one
Which of the following solutions allows you to translate database content?
Correct Answer:
Use JoomFish component
Note: This Question is unanswered, help us to find answer for this one
How can you access the User Manager?
Correct Answer:
In the Control Panel page of Administration -> Click on the "User Manager" icon
Menu "Site" -> User Manager
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 Plugin?
Correct Answer:
A Plugin is a section of the code that runs when a pre-defined event happens within Joomla!.
Note: This Question is unanswered, help us to find answer for this one
Joomla provides an abstracted method called getEscaped() that returns the escaped string regardless of the target database.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following templates are not available by default in Joomla?
Correct Answer:
huk_solarflare_ii
Note: This Question is unanswered, help us to find answer for this one
If you want to support a new method to authenticate a user (login), what is the best way to do it?
Correct Answer:
Add an authentication plugin to authenticate the use
Note: This Question is unanswered, help us to find answer for this one
Which of the following editor events is activated after the editing content is received and passes the name of the editor as the only argument?
Correct Answer:
onGetContent
Note: This Question is unanswered, help us to find answer for this one
In the JPagination class, which definition is the best about the getListFooter() method?
Correct Answer:
It is a method which returns a combination of the several page-related elements, including: the Display Limit dropdown, the Pages Links and the Pages Counter. The apperance is the same in the Front-end and the Back-end.
Note: This Question is unanswered, help us to find answer for this one
What is the default super admnistrator account for Joomla called?
Correct Answer:
admin
Note: This Question is unanswered, help us to find answer for this one
What is a Component?
Correct Answer:
A Component is a mini-application that renders the man body of the page.
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to get a POST/GET parameter to work in Joomla 1.5?
Correct Answer:
$form = JRequest::getVar('reportform')
Note: This Question is unanswered, help us to find answer for this one
In the User manager, which Public Front-end User group(s) cannot edit articles?
Correct Answer:
Registered
Note: This Question is unanswered, help us to find answer for this one
What are the menu item types in Joomla?
Correct Answer:
Internal link, External link, Seperator and Alias
Note: This Question is unanswered, help us to find answer for this one
Is it compulsory to use the
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
"$mainframe object" is an instance of which of the following classes?
Correct Answer:
JApplication
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to get a model in the controller.php file of a component?
Correct Answer:
$model = $this->getModel('register')
Note: This Question is unanswered, help us to find answer for this one
There is a method in the application called _______,
which triggers events in the global event dispatcher, notifying the relevant listeners.
It is a pass-through method for the JEventDispatcher ____ method.
Correct Answer:
triggerEvent()/trigger()
Note: This Question is unanswered, help us to find answer for this one
Which extension can be used to build a download system using Joomla?
Correct Answer:
Docman
Note: This Question is unanswered, help us to find answer for this one
Which of the following actions will make a custom component work with Joomfish 2.0 (that is, which makes it possible to translate a custom component using Joomfish)?
Correct Answer:
Create the Content Element XML file for Joomfish for the custom extension and place it to administrator/components/com_joomfish/contentelements.
Note: This Question is unanswered, help us to find answer for this one
Which creational pattern is used by Joomla classes, particularly for database access?
Correct Answer:
Singleton Pattern
Note: This Question is unanswered, help us to find answer for this one
In the Content Manager, is there any relationship between the 3-tier organization level for articles and the structure of the menus on your site?
Correct Answer:
No. Your site can have any menu level.
Note: This Question is unanswered, help us to find answer for this one
What is the root object that Joomla framework has inherited?
Correct Answer:
JObject
Note: This Question is unanswered, help us to find answer for this one
Which articles can the frontpage view display?
Correct Answer:
Articles from any section and category
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, what are the Public Front-end user groups?
Correct Answer:
Registered, Author, Editor, and Publisher
Note: This Question is unanswered, help us to find answer for this one
How will you restore a trashed menu item?
Correct Answer:
Go to "Menus->Menu Trash", select the menu item and click "Restore"
Note: This Question is unanswered, help us to find answer for this one
In Joomla, which file stores information on the database connection (database name, username...)?
Correct Answer:
configuration.php
Note: This Question is unanswered, help us to find answer for this one
Which of the following information the "Who's Online" module cannot show?
Correct Answer:
The most active members
Note: This Question is unanswered, help us to find answer for this one
Which menu type(s) is/are used to place a graphic or other separator between menu options?
Correct Answer:
Separator
Note: This Question is unanswered, help us to find answer for this one
Which of the following Joomla component or module is not installed by default?
Correct Answer:
Community builder
Note: This Question is unanswered, help us to find answer for this one
True or False:
Joomla is written in Perl.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
What is module chrome used for?
Correct Answer:
Module chrome allows template designers to have a certain amount of control over the way the output from a Module is displayed in their template.
Note: This Question is unanswered, help us to find answer for this one
In the Media Manager, what happens if you delete a media item?
Correct Answer:
The media file will be deleted.
Note: This Question is unanswered, help us to find answer for this one
Which of the following is a system event?
Correct Answer:
OnAfterInitialise
Note: This Question is unanswered, help us to find answer for this one
Which of the following PHP directives is important to Joomla execution in order to define an alternate compression library if the standard library is not available?
Correct Answer:
extension_dir
Note: This Question is unanswered, help us to find answer for this one
Which extension can you use to build a shopping cart using Joomla?
Correct Answer:
VirtueMart
Note: This Question is unanswered, help us to find answer for this one
How do you load plugins in a component?
Correct Answer:
JPluginHelper::importPlugin('content');
Note: This Question is unanswered, help us to find answer for this one
What does the result of the ContentBuildRoute method return?
Correct Answer:
A name => value array of the querystring variables that the link maps to.
Note: This Question is unanswered, help us to find answer for this one
The plugin that searches content articles uses the function plgSearchContent() to handle the onSearch event.
This is how the function is registered:
$mainframe->registerEvent('onSearch', 'plgSearchContent');
Is it correct?
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to copy a Joomla file?
Correct Answer:
JFile::copy($src, $dest)
Note: This Question is unanswered, help us to find answer for this one
How do you add custom html code to head section?
Correct Answer:
$doc =& JFactory::getDocument(); $doc->addCustomTag( ' <script type="text/javascript">alert(123);</script>' );
Note: This Question is unanswered, help us to find answer for this one
$editor =& JFactory::getEditor();
echo $editor->display('content', $this->content, '550', '400', '60', '20', false);
How do you get the content from the editor (containing line breaks and paragraphs)
Correct Answer:
$content = JRequest::getVar('content', '', 'post', 'string', JREQUEST_ALLOWRAW);
Note: This Question is unanswered, help us to find answer for this one
What is the output format of the documentation created using PHPDocumentor?
Correct Answer:
All of these.
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, which Public Back-end User group(s) can access "Global configuration"?
Correct Answer:
System
Note: This Question is unanswered, help us to find answer for this one
Why does Joomla use templateDetails.xml files?
Correct Answer:
All of these.
Note: This Question is unanswered, help us to find answer for this one
Which is the correct solution to return 'First 1, second 2, third 3' string, using Jtext class?
Correct Answer:
In .php file:Jtext::sprintf('KEY_STRING',1,2,3); In language file (.ini): KEY_STRING=First %d, second %d, third %d
Note: This Question is unanswered, help us to find answer for this one
What is not true of the module Login?
Correct Answer:
Shows the Login form for the users to login
Note: This Question is unanswered, help us to find answer for this one
What will happen when a Joomla! extension is uninstalled?
Correct Answer:
Joomla! will remove all the files/folders inside the extension folder.
Note: This Question is unanswered, help us to find answer for this one
What is the main function of the media manager?
Correct Answer:
Uploading/Deleting files and creating new sub folders
Note: This Question is unanswered, help us to find answer for this one
You should not use the die() function to debug because _______________.
Correct Answer:
it prevents the Joomla framework from finalizing certain tasks like database connection and session store.
Note: This Question is unanswered, help us to find answer for this one
Which user events occur with plug-ins that are installed for the front end of the system?
Correct Answer:
Authentication events
Note: This Question is unanswered, help us to find answer for this one
How can you access the media manager?
Correct Answer:
Control Panel --> Click on "Media Manager" icon
Note: This Question is unanswered, help us to find answer for this one
How many levels can each menu have?
Correct Answer:
2 levels
Note: This Question is unanswered, help us to find answer for this one
What is the method "isEnabled" in the class "JModuleHelper" used for?
Correct Answer:
To check if a module is enabled
Note: This Question is unanswered, help us to find answer for this one
Is a cache module supported by Joomla or not?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Does Joomla provide custom parameter types in the XML file?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
How do you create an upload button and view a popup screen with width 550 and height 400?
Correct Answer:
$alt = "Upload"; $bar=& JToolBar::getInstance('toolbar'); $bar->appendButton('Popup', 'upload', $alt, 'index.php', 550, 400);
Note: This Question is unanswered, help us to find answer for this one
What is the way to register an event in Joomla?
Correct Answer:
$mainframe->registerEvent( $event, $handler);
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, what is the difference between the Author and the Editor groups?
Correct Answer:
The Author group allows a user to edit their own content. The Editor can edit any content.
Note: This Question is unanswered, help us to find answer for this one
60. We have a module named "mod_module1" which has the structure:
-mod_module1
---mod_module1.php
---mod_module1.xml
---helper.php
---tmpl
-----default.php
How do you overwrite the output of a standard Joomla module?
Correct Answer:
Overwrite the appropriated style method in the file [template]/html/module.php.
Note: This Question is unanswered, help us to find answer for this one
Does Joomla allow you to create your own routing mechanism?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Which is incorrect about MD5 hash values with regard to their usage in Joomla?
Correct Answer:
None of these.
Note: This Question is unanswered, help us to find answer for this one
How will you create a poll and display it on Frontpage?
Correct Answer:
Create a poll item in the component Poll. Create a menu item pointing to that poll.
Note: This Question is unanswered, help us to find answer for this one
How will you insert a module into an article?
Correct Answer:
Create a new module -> Assign the module with a new position -> open an article and declare with the html code {loadposition newposition}
Note: This Question is unanswered, help us to find answer for this one
What happens if the Main Menu is deleted?
Correct Answer:
Your site will not function as it has a default menu item.
Note: This Question is unanswered, help us to find answer for this one
What is true of the "Community Builder" extension?
Correct Answer:
It is an environment for producing and maintaining online communities on Joomla driven sites.
Note: This Question is unanswered, help us to find answer for this one
What is the file format supported by Joomla 1.5 to create language definitions?
Correct Answer:
.ini
Note: This Question is unanswered, help us to find answer for this one
The type "Model" of MVC pattern implemented for Joomla often ______________.
Correct Answer:
...provides methods for managing and manipulating data.
Note: This Question is unanswered, help us to find answer for this one
In Joomla, does the Back-End session stay alive even though it is set to expire?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
In the Article Manager, what is an article managed by?
Correct Answer:
Section ID
Note: This Question is unanswered, help us to find answer for this one
From which package are the classes (i.e JSite, JAdministrator and JInstallation) which make up the Joomla CMS application extended?
Correct Answer:
Installer
Note: This Question is unanswered, help us to find answer for this one
With the "Mass Mail" tool, which of the following number of recipients can be selected?
Correct Answer:
Multiple groups
Note: This Question is unanswered, help us to find answer for this one
Given below is the structure of view articles in the com_content component:
/components
/com_content
/views
/articles
/tmpl
default.php
form.php
view.html.php
To override the layout for the articles view in a template, what is the correct folder structure?
Correct Answer:
/templates /[template] /html /com_content /articles default.php form.php
Note: This Question is unanswered, help us to find answer for this one
What is implemented in the PHP file of a plugin?
Correct Answer:
Extends class JPlugin and overrides the appropriate function with the event.
Note: This Question is unanswered, help us to find answer for this one
What is the purpose of the Newsfeeds component?
Correct Answer:
To get news from other news providers
Note: This Question is unanswered, help us to find answer for this one
What does the following code section do?
$user =& JFactory::getUser();
if ($user->authorize('com_content', 'edit', 'content', 'all'))
{
//Display notice
} else {
//Display notice
}
Correct Answer:
Check user's permission to edit all articles.
Note: This Question is unanswered, help us to find answer for this one
While installing Joomla, at the FTP Configuration step, what is the FTP layer for?
Correct Answer:
For managing the file system in the Administration panel
Note: This Question is unanswered, help us to find answer for this one
How will you create a contact page?
Correct Answer:
Create a contact item in the Contacts component. Create a menu item pointing to the contact item.
Note: This Question is unanswered, help us to find answer for this one
Which of the following files has to be renamed to .htaccess in order to enable mod_rewrite?
Correct Answer:
htaccess.txt
Note: This Question is unanswered, help us to find answer for this one
What kinds of default menus are available in the example data?
Correct Answer:
Top Menu, Main Menu and User menu
Note: This Question is unanswered, help us to find answer for this one
True or false: Like components and modules, plugin language files are automatically loaded when a plugin is loaded.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
In the Media Manager, how can you set the "Maximum size" option?
Correct Answer:
Set configuration via Global Configuration > Media
Note: This Question is unanswered, help us to find answer for this one
What user authentication methods does Joomla 1.5 support?
Correct Answer:
Gmail, LDAP
Note: This Question is unanswered, help us to find answer for this one
What types of extensions does Joomla include?
Correct Answer:
Component, Module, Template, Language, Plugin
Note: This Question is unanswered, help us to find answer for this one
In the Content Manager, Joomla! uses a 3-tier organization level for articles. It is:
Correct Answer:
Section -> Category -> Article
Note: This Question is unanswered, help us to find answer for this one
How do you control the layout of print pages?
Correct Answer:
Control the output of component.php
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, how can a user get back their password if they forget it?
Correct Answer:
By using the "Forgot your password?" function.
Note: This Question is unanswered, help us to find answer for this one
Which file is required to turn on the SEO mode with rewrite URL?
Correct Answer:
htaccess
Note: This Question is unanswered, help us to find answer for this one
Which of the following functions is used to build a button for a media manager tools popup?
Correct Answer:
JToolBarHelper::media_manager( '/' )
Note: This Question is unanswered, help us to find answer for this one
How do you define a filename.css file in your component to load into the head tag by Joomla?
Correct Answer:
$doc =& JFactory::getDocument(); $doc->addStyleSheet($url);
Note: This Question is unanswered, help us to find answer for this one
To which of the following does the path constant link the XML-RPC Web service folder?
Correct Answer:
JPATH_XMLRPC
Note: This Question is unanswered, help us to find answer for this one
What is the purpose of the "registerTask" function in JController?
Correct Answer:
To register the default task to perform if a mapping is not found
Note: This Question is unanswered, help us to find answer for this one
How do you load "layout_layout1" layout in layout.php file?
Correct Answer:
$this->loadTemplate('layout1');
Note: This Question is unanswered, help us to find answer for this one
What can you not do with the Media Manager?
Correct Answer:
Rename files/folders
Note: This Question is unanswered, help us to find answer for this one
Which of the following functions is used to list a folder in a format suitable for tree display?
Correct Answer:
JPath::listFolderTree
Note: This Question is unanswered, help us to find answer for this one
Which option will you choose to set the site metadata for the installed website?
Correct Answer:
Global Configuration
Note: This Question is unanswered, help us to find answer for this one
How will you make Joomla 1.0x extensions work with Joomla 1.5?
Correct Answer:
Joomla 1.0x extensions cannot work with Joomla 1.5 by default
Note: This Question is unanswered, help us to find answer for this one
What is a Module?
Correct Answer:
A Module is a smaller Extension typically used for rendering a small element that is displayed across multiple pages.
Note: This Question is unanswered, help us to find answer for this one
True or False:
Joomla does not provide the capability to include a podcast.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, what's the step of registration after 'submit user information'?
Correct Answer:
Wait for the system's approval
Note: This Question is unanswered, help us to find answer for this one
Which database types does Joomla support?
Correct Answer:
MySQL
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, which of the following options can be applied for individual users?
Correct Answer:
Back-end Language
Front-end Language
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 mailers does Joomla support? (Select all that apply.)
Correct Answer:
PHP Mail Function
SMTP
Sendmail program
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
There are 21 different standard parameter types supported in the Joomla Framework for all extension types (templates, components, modules and plugins). Which of the following parameter types are not supported in the Joomla Framework?
Correct Answer:
checkbox
Note: This Question is unanswered, help us to find answer for this one
Which of the following values are not required for a banner item?
Correct Answer:
Click URL
Image
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, which of the following groups can be assigned to a new user registration?
Correct Answer:
Author
Note: This Question is unanswered, help us to find answer for this one
In the User Manager, who can publish an article?
Correct Answer:
The Publisher
The Manager
The 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 items will be checked in when you use the "Global Check-in" function?
Correct Answer:
Banner
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
Which option will you select to install or to add the module to your website?
Correct Answer:
C
Note: This Question is unanswered, help us to find answer for this one
Which PHP file does the index.php file load to provide the menu bar to the administrator interface?
Correct Answer:
Toolbar.php
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
Which tab tells you about the most surfed pages of your site?
Correct Answer:
B
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
What do you understand from the following code?
Correct Answer:
SQL statement is executed against the Joomla database to find empty data fields
Note: This Question is unanswered, help us to find answer for this one
Which of the following files does the "/includes" directory contain?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the default editor of Joomla?
Correct Answer:
TinyMCE
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
In which option are errors, warnings and references logged?
Correct Answer:
C
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not true about the FrontPage Manager?
Correct Answer:
You cannot select your content for the FrontPage from all the contents
Note: This Question is unanswered, help us to find answer for this one
In which PHP file is the central configuration data for Joomla contained?
Correct Answer:
configuration.php
Note: This Question is unanswered, help us to find answer for this one
Which option will you select to find unpublished articles?
Correct Answer:
Article manager
Note: This Question is unanswered, help us to find answer for this one
Which of the given database systems is supported by Joomla?
Correct Answer:
Mysql
Note: This Question is unanswered, help us to find answer for this one
State whether True or False:
The core editor events apply to plug-ins that provide editor functionality such as TinyMCE or XStandard Lite.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which type of positioning elements define a concrete area such as a <P>, <TD>, <DIV>, or <TABLE> in a CSS file?
Correct Answer:
Block elements
Note: This Question is unanswered, help us to find answer for this one
State whether True or False.
Joomla uses Perl language.
Correct Answer:
False
Note: This Question is unanswered, help us to find answer for this one
What is not true about JoomlaXplorer?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
When will you use SMTP authentication mail settings?
Correct Answer:
When you want to use an external mail server
Note: This Question is unanswered, help us to find answer for this one
State whether True or False:
There are two root classes for the Joomla framework: JFactory and JVersion.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
What do you understand by the section (marked as A)?
Correct Answer:
It means the section under which the category is to be displayed
Note: This Question is unanswered, help us to find answer for this one
Which path variable holds the path of the currently executing application?
Correct Answer:
JPATH_BASE
Note: This Question is unanswered, help us to find answer for this one
Which of the following PHP directives are important to Joomla execution to define an alternate compression library if the standard library is not available?
Correct Answer:
zlib.output_handler
Note: This Question is unanswered, help us to find answer for this one
Which type of files can media manager not upload?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
What will happen if we set the SSL enabled option to On?
Correct Answer:
This option will make the link from the menu begin with an https://
Note: This Question is unanswered, help us to find answer for this one
What is the role of the template metadata file in the system?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
What do you understand by the number of articles?
Correct Answer:
It means the number of articles that are to be merged
Note: This Question is unanswered, help us to find answer for this one
State whether True or False:
All the Joomla settings are contained within a PHP class called JConfig.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Which of the following support libraries must you include when you are doing a manual compile of PHP to use with Joomla?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following files is archive and contains the actual CB component that you must install into Joomla while downloading CB?
Correct Answer:
com_comprofiler
Note: This Question is unanswered, help us to find answer for this one
Refer to the given image.
What happens if the Text Separator Field is left empty while using the breadcrumbs module in the module manager?
Correct Answer:
The default double arrow (>>) is used
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:
Application
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:
Enable Legacy plugin
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
In the "Global Configuration" page, set configuration via the tab "System"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A single group
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
As many levels as you wish
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Author
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
There is an error in the sample database sql file.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The maximum uploading size allowed by the PHP
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
You must provide an existing database name.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
http://[site url]/index.php/news
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Request URI.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The whole page if the user has not logged in
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Click on the Menu Item, and update the parameter "Page Title" in the "Basic" group.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
As many as you wish<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
create an Article as normal, then assign it to the "uncategorised" section<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
images
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
In the position which the module "Banners" is published in<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Choose Language
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
com_contact<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The Password is encrypted and cannot be decrypted; thus he can not get back his plain password.<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
To handle file system manipulation and enable Joomla! installers<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
only in a single category and in a single section.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A Component is a mini-application that renders the main body of the page.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Upload the Package File
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Show the poll on Frontpage to allow the users to submit their votes<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
In the "Global Configuration" page, tab "System"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It is a solution to enable your website to control translation matters.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A kind of internal link back to an existing menu item
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
no longer be published but still stored on the site.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
$db->loadObjectList(),$db->loadObjectList('key'),$db->loadRowList()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A remote procedure call protocol which uses XML to encode its calls and HTTP as a transport mechanism<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It renders the module, returning the output HTML.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
By creating a system plugin, handle onAfterInitialise event and use the function attachBuildRule/attachParseRule of the JRouter class<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Nothing<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
a, b, e, and f<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
$result = $db->loadAssoc()<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
JText
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
For loading a module position<br>
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:
JPluginHelper::importPlugin('pluginsName');
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The $attribs array is passed in its entirety to the module chrome code since this method will generally be called during the processing of a <jdoc:include.../> tag in the template.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Yes<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
$result = $db->loadResult()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
PHP 4.3.10, MySQL 3.23.x, Apache 1.3
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
False<br>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
3-1-2-4
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It provides a drop down list of the available menus from your Joomla site.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<?php echo JHTML::_( 'form.token' );?>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
$result = $row->load($id)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
.htaccess
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Install from Directory
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Under content menu
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
JFactory::getDbo()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
loadColumn()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
9
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Hosting local and remote files for download by site visitors
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
includes/application.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
html
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:
You need to copy the files from your modulename/tmpl folder to html/modulename/ folder in active Joomla template
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:
No
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
HelloModelHi
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
JHtml::_('tabs.start');
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Your Joomla has been hacked
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Editing index.php
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Super Administrators
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Disable FTP access options in Joomla
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Signup on the ReCaptcha website and generate the API keys, set the Default Captcha to ReCaptcha in the Site/Global Configuration settings and enable the ReCaptcha plugin and enter your keys.
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:
{loadposition module-position}
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
MySQL and MS SQL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Integrated Spellchecking using Google Spellchecker
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
From the Site menu select Global Configuration then select a default editor from the drop down list.
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:
False
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Opacity
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Object-oriented programming(OOP)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
addScript('/media/system/js/sample.js'); ?>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Turn off the RG_Emulation
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:
MySQL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Joom!Fish
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Toggle the source code editor.
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Add-ons to the Joomla core, both paid and free.
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:
PHP 4.2.x or above; MySQL 3.23.x or above; Apache 1.3.x or above
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:
Model-View-Controller
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:
True
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:
Yes
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:
Content Management System
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
www.joomla.org
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:
http://developer.joomla.org
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
The "Access Control List" system
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
it contains none of these options
Note: This Question is unanswered, help us to find answer for this one
Joomla MCQs | Topic-wise