MCQs > IT & Programming > Joomla MCQs > Basic Joomla MCQs

Basic Joomla MCQ

1. For content type plug-ins, which of the following events is activated after content rendering is complete?

Answer

Correct Answer: onAfterDisplay

Note: This Question is unanswered, help us to find answer for this one

2.

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?

Answer

Correct Answer: 1

Note: This Question is unanswered, help us to find answer for this one

3.

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?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

4.

In the Media Manager, which of the following file types can be uploaded?

Answer

Correct Answer: flv

Note: This Question is unanswered, help us to find answer for this one

5.

Which of the following functions checks if a user has the access permission?

Answer

Correct Answer: JUser::authorize();

Note: This Question is unanswered, help us to find answer for this one

6.

Which is the correct procedure to uninstall a Joomla extension?

Answer

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

7.

What is a Template?

Answer

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

8.

If "Site Offline" is enabled, what will be shown when you visit your site?

Answer

Correct Answer: Homepage with Offline message

Note: This Question is unanswered, help us to find answer for this one

9.

How will you assign a template to a page?

Answer

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

10.

In the JPagination class, what does the getResultsCounter() method do?

Answer

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

11.

Which of the following technologies is/are used by Joomla?

Answer

Correct Answer: PHP

Note: This Question is unanswered, help us to find answer for this one

12.

Which two statements among the following apply to redirecting a HTTP request to another URL?

Answer

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

13.

How do you create the Parameter buttons the toolbar for component com_hello?

Answer

Correct Answer: JToolBarHelper::preferences('com_hello', '500');

Note: This Question is unanswered, help us to find answer for this one

14.

Which of the following methods must you use to deny access from an external direct call?

Answer

Correct Answer: defined( '_JEXEC' ) or die( 'Restricted access' )

Note: This Question is unanswered, help us to find answer for this one

15.

Which of the following statements prevents SQL Injection Attacks?

Answer

Correct Answer: $sql = 'UPDATE #__mytable SET `string` = ' . $string;

Note: This Question is unanswered, help us to find answer for this one

16.

Which of the following are "must-have" requirements for Joomla installation?

Answer

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

17.

Which of the following items will you find in the Help menu?

Answer

Correct Answer: Joomla! Help

Note: This Question is unanswered, help us to find answer for this one

18.

Which of the following solutions allows you to translate database content?

Answer

Correct Answer: Use JoomFish component

Note: This Question is unanswered, help us to find answer for this one

19.

How can you access the User Manager?

Answer

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

20.

What is a Plugin?

Answer

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

21.

Joomla provides an abstracted method called getEscaped() that returns the escaped string regardless of the target database.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

22.

Which of the following templates are not available by default in Joomla?

Answer

Correct Answer: huk_solarflare_ii

Note: This Question is unanswered, help us to find answer for this one

23.

If you want to support a new method to authenticate a user (login), what is the best way to do it?

Answer

Correct Answer: Add an authentication plugin to authenticate the use

Note: This Question is unanswered, help us to find answer for this one

24.

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?

Answer

Correct Answer: onGetContent

Note: This Question is unanswered, help us to find answer for this one

25.

In the JPagination class, which definition is the best about the getListFooter() method?

Answer

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

26.

What is the default super admnistrator account for Joomla called?

Answer

Correct Answer: admin

Note: This Question is unanswered, help us to find answer for this one

27.

What is a Component?

Answer

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

28.

Which of the following commands is used to get a POST/GET parameter to work in Joomla 1.5?

Answer

Correct Answer: $form = JRequest::getVar('reportform')

Note: This Question is unanswered, help us to find answer for this one

29.

In the User manager, which Public Front-end User group(s) cannot edit articles?

Answer

Correct Answer: Registered

Note: This Question is unanswered, help us to find answer for this one

30.

What are the menu item types in Joomla?

Answer

Correct Answer: Internal link, External link, Seperator and Alias

Note: This Question is unanswered, help us to find answer for this one

31.

Is it compulsory to use the tag in Component's installation xml file?

Answer

Correct Answer: No

Note: This Question is unanswered, help us to find answer for this one

32.

"$mainframe object" is an instance of which of the following classes?

Answer

Correct Answer: JApplication

Note: This Question is unanswered, help us to find answer for this one

33.

Which of the following commands is used to get a model in the controller.php file of a component?

Answer

Correct Answer: $model = $this->getModel('register')

Note: This Question is unanswered, help us to find answer for this one

34.

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.

Answer

Correct Answer: triggerEvent()/trigger()

Note: This Question is unanswered, help us to find answer for this one

35.

Which extension can be used to build a download system using Joomla?

Answer

Correct Answer: Docman

Note: This Question is unanswered, help us to find answer for this one

36.

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)?

Answer

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

37.

Which creational pattern is used by Joomla classes, particularly for database access?

Answer

Correct Answer: Singleton Pattern

Note: This Question is unanswered, help us to find answer for this one

38.

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?

Answer

Correct Answer: No. Your site can have any menu level.

Note: This Question is unanswered, help us to find answer for this one

39.

What is the root object that Joomla framework has inherited?

Answer

Correct Answer: JObject

Note: This Question is unanswered, help us to find answer for this one

40.

Which articles can the frontpage view display?

Answer

Correct Answer: Articles from any section and category

Note: This Question is unanswered, help us to find answer for this one

41.

In the User Manager, what are the Public Front-end user groups?

Answer

Correct Answer: Registered, Author, Editor, and Publisher

Note: This Question is unanswered, help us to find answer for this one

42.

How will you restore a trashed menu item?

Answer

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

43.

In Joomla, which file stores information on the database connection (database name, username...)?

Answer

Correct Answer: configuration.php

Note: This Question is unanswered, help us to find answer for this one

44.

Which of the following information the "Who's Online" module cannot show?

Answer

Correct Answer: The most active members

Note: This Question is unanswered, help us to find answer for this one

45.

Which menu type(s) is/are used to place a graphic or other separator between menu options?

Answer

Correct Answer: Separator

Note: This Question is unanswered, help us to find answer for this one

46.

Which of the following Joomla component or module is not installed by default?

Answer

Correct Answer: Community builder

Note: This Question is unanswered, help us to find answer for this one

47.

 True or False:

Joomla is written in Perl.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

48.

What is module chrome used for?

Answer

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

49.

In the Media Manager, what happens if you delete a media item?

Answer

Correct Answer: The media file will be deleted.

Note: This Question is unanswered, help us to find answer for this one

50.

Which of the following is a system event?

Answer

Correct Answer: OnAfterInitialise

Note: This Question is unanswered, help us to find answer for this one

51.

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?

Answer

Correct Answer: extension_dir

Note: This Question is unanswered, help us to find answer for this one

52.

Which extension can you use to build a shopping cart using Joomla?

Answer

Correct Answer: VirtueMart

Note: This Question is unanswered, help us to find answer for this one

53.

How do you load plugins in a component?

Answer

Correct Answer: JPluginHelper::importPlugin('content');

Note: This Question is unanswered, help us to find answer for this one

54.

What does the result of the ContentBuildRoute method return?

Answer

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

55.

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?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

56.

Which of the following commands is used to copy a Joomla file?

Answer

Correct Answer: JFile::copy($src, $dest)

Note: This Question is unanswered, help us to find answer for this one

57.

How do you add custom html code to head section?

Answer

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

58.

$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)

Answer

Correct Answer: $content = JRequest::getVar('content', '', 'post', 'string', JREQUEST_ALLOWRAW);

Note: This Question is unanswered, help us to find answer for this one

59.

What is the output format of the documentation created using PHPDocumentor?

Answer

Correct Answer: All of these.

Note: This Question is unanswered, help us to find answer for this one

60.

In the User Manager, which Public Back-end User group(s) can access "Global configuration"?

Answer

Correct Answer: System

Note: This Question is unanswered, help us to find answer for this one

61.

Why does Joomla use templateDetails.xml files?

Answer

Correct Answer: All of these.

Note: This Question is unanswered, help us to find answer for this one

62.

Which is the correct solution to return 'First 1, second 2, third 3' string, using Jtext class?

Answer

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

63.

What is not true of the module Login?

Answer

Correct Answer: Shows the Login form for the users to login

Note: This Question is unanswered, help us to find answer for this one

64.

What will happen when a Joomla! extension is uninstalled?

Answer

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

65.

What is the main function of the media manager?

Answer

Correct Answer: Uploading/Deleting files and creating new sub folders

Note: This Question is unanswered, help us to find answer for this one

66.

You should not use the die() function to debug because _______________.

Answer

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

67.

Which user events occur with plug-ins that are installed for the front end of the system?

Answer

Correct Answer: Authentication events

Note: This Question is unanswered, help us to find answer for this one

68.

How can you access the media manager?

Answer

Correct Answer: Control Panel --> Click on "Media Manager" icon

Note: This Question is unanswered, help us to find answer for this one

69.

How many levels can each menu have?

Answer

Correct Answer: 2 levels

Note: This Question is unanswered, help us to find answer for this one

70.

What is the method "isEnabled" in the class "JModuleHelper" used for?

Answer

Correct Answer: To check if a module is enabled

Note: This Question is unanswered, help us to find answer for this one

71.

Is a cache module supported by Joomla or not?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

72.

Does Joomla provide custom parameter types in the XML file?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

73.

How do you create an upload button and view a popup screen with width 550 and height 400?

Answer

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

74.

What is the way to register an event in Joomla?

Answer

Correct Answer: $mainframe->registerEvent( $event, $handler);

Note: This Question is unanswered, help us to find answer for this one

75.

In the User Manager, what is the difference between the Author and the Editor groups?

Answer

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

76.

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?

Answer

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

77.

Does Joomla allow you to create your own routing mechanism?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

78.

Which is incorrect about MD5 hash values with regard to their usage in Joomla?

Answer

Correct Answer: None of these.

Note: This Question is unanswered, help us to find answer for this one

79.

How will you create a poll and display it on Frontpage?

Answer

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

80.

How will you insert a module into an article?

Answer

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

81.

What happens if the Main Menu is deleted?

Answer

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

82.

What is true of the "Community Builder" extension?

Answer

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

83.

What is the file format supported by Joomla 1.5 to create language definitions?

Answer

Correct Answer: .ini

Note: This Question is unanswered, help us to find answer for this one

84.

The type "Model" of MVC pattern implemented for Joomla often ______________.

Answer

Correct Answer: ...provides methods for managing and manipulating data.

Note: This Question is unanswered, help us to find answer for this one

85.

In Joomla, does the Back-End session stay alive even though it is set to expire?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

86.

In the Article Manager, what is an article managed by?

Answer

Correct Answer: Section ID

Note: This Question is unanswered, help us to find answer for this one

87.

From which package are the classes (i.e JSite, JAdministrator and JInstallation) which make up the Joomla CMS application extended?

Answer

Correct Answer: Installer

Note: This Question is unanswered, help us to find answer for this one

88.

With the "Mass Mail" tool, which of the following number of recipients can be selected?

Answer

Correct Answer: Multiple groups

Note: This Question is unanswered, help us to find answer for this one

89.

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?

Answer

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

90.

What is implemented in the PHP file of a plugin?

Answer

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

91.

What is the purpose of the Newsfeeds component?

Answer

Correct Answer: To get news from other news providers

Note: This Question is unanswered, help us to find answer for this one

92.

What does the following code section do?

$user =& JFactory::getUser();

if ($user->authorize('com_content', 'edit', 'content', 'all'))

{

//Display notice

} else {

//Display notice

}

Answer

Correct Answer: Check user's permission to edit all articles.

Note: This Question is unanswered, help us to find answer for this one

93.

While installing Joomla, at the FTP Configuration step, what is the FTP layer for?

Answer

Correct Answer: For managing the file system in the Administration panel

Note: This Question is unanswered, help us to find answer for this one

94.

How will you create a contact page?

Answer

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

95.

Which of the following files has to be renamed to .htaccess in order to enable mod_rewrite?

Answer

Correct Answer: htaccess.txt

Note: This Question is unanswered, help us to find answer for this one

96.

What kinds of default menus are available in the example data?

Answer

Correct Answer: Top Menu, Main Menu and User menu

Note: This Question is unanswered, help us to find answer for this one

97.

True or false: Like components and modules, plugin language files are automatically loaded when a plugin is loaded.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

98.

In the Media Manager, how can you set the "Maximum size" option?

Answer

Correct Answer: Set configuration via Global Configuration > Media

Note: This Question is unanswered, help us to find answer for this one

99.

What user authentication methods does Joomla 1.5 support?

Answer

Correct Answer: Gmail, LDAP

Note: This Question is unanswered, help us to find answer for this one

100.

What types of extensions does Joomla include?

Answer

Correct Answer: Component, Module, Template, Language, Plugin

Note: This Question is unanswered, help us to find answer for this one

101.

In the Content Manager, Joomla! uses a 3-tier organization level for articles. It is:

Answer

Correct Answer: Section -> Category -> Article

Note: This Question is unanswered, help us to find answer for this one

102.

How do you control the layout of print pages?

Answer

Correct Answer: Control the output of component.php

Note: This Question is unanswered, help us to find answer for this one

103.

In the User Manager, how can a user get back their password if they forget it?

Answer

Correct Answer: By using the "Forgot your password?" function.

Note: This Question is unanswered, help us to find answer for this one

104.

Which file is required to turn on the SEO mode with rewrite URL?

Answer

Correct Answer: htaccess

Note: This Question is unanswered, help us to find answer for this one

105.

Which of the following functions is used to build a button for a media manager tools popup?

Answer

Correct Answer: JToolBarHelper::media_manager( '/' )

Note: This Question is unanswered, help us to find answer for this one

106.

How do you define a filename.css file in your component to load into the head tag by Joomla?

Answer

Correct Answer: $doc =& JFactory::getDocument(); $doc->addStyleSheet($url);

Note: This Question is unanswered, help us to find answer for this one

107.

To which of the following does the path constant link the XML-RPC Web service folder?

Answer

Correct Answer: JPATH_XMLRPC

Note: This Question is unanswered, help us to find answer for this one

108.

What is the purpose of the "registerTask" function in JController?

Answer

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

109.

How do you load "layout_layout1" layout in layout.php file?

Answer

Correct Answer: $this->loadTemplate('layout1');

Note: This Question is unanswered, help us to find answer for this one

110.

What can you not do with the Media Manager?

Answer

Correct Answer: Rename files/folders

Note: This Question is unanswered, help us to find answer for this one

111.

Which of the following functions is used to list a folder in a format suitable for tree display?

Answer

Correct Answer: JPath::listFolderTree

Note: This Question is unanswered, help us to find answer for this one

112.

Which option will you choose to set the site metadata for the installed website?

Answer

Correct Answer: Global Configuration

Note: This Question is unanswered, help us to find answer for this one

113.

How will you make Joomla 1.0x extensions work with Joomla 1.5?

Answer

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

114.

What is a Module?

Answer

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

115.

True or False:

Joomla does not provide the capability to include a podcast.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

116.

In the User Manager, what's the step of registration after 'submit user information'?

Answer

Correct Answer: Wait for the system's approval

Note: This Question is unanswered, help us to find answer for this one

117.

Which database types does Joomla support?

Answer

Correct Answer: MySQL

Note: This Question is unanswered, help us to find answer for this one

118.

In the User Manager, which of the following options can be applied for individual users?

Answer

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

119.

Which of the following mailers does Joomla support? (Select all that apply.)

Answer

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

120.

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?

Answer

Correct Answer: checkbox

Note: This Question is unanswered, help us to find answer for this one

121.

Which of the following values are not required for a banner item?

Answer

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

122.

In the User Manager, which of the following groups can be assigned to a new user registration?

Answer

Correct Answer: Author

Note: This Question is unanswered, help us to find answer for this one

123.

In the User Manager, who can publish an article?

Answer

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

124.

Which of the following items will be checked in when you use the "Global Check-in" function?

Answer

Correct Answer: Banner

Note: This Question is unanswered, help us to find answer for this one

125.

Refer to the given image.

Which option will you select to install or to add the module to your website?

Answer

Correct Answer: C

Note: This Question is unanswered, help us to find answer for this one

126.

Which PHP file does the index.php file load to provide the menu bar to the administrator interface?

Answer

Correct Answer: Toolbar.php

Note: This Question is unanswered, help us to find answer for this one

127.

Refer to the given image.

Which tab tells you about the most surfed pages of your site?

Answer

Correct Answer: B

Note: This Question is unanswered, help us to find answer for this one

128.

Refer to the given image.

 

What do you understand from the following code?

Answer

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

129.

Which of the following files does the "/includes" directory contain?

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

130.

Which of the following is the default editor of Joomla?

Answer

Correct Answer: TinyMCE

Note: This Question is unanswered, help us to find answer for this one

131.

Refer to the given image.

In which option are errors, warnings and references logged?

Answer

Correct Answer: C

Note: This Question is unanswered, help us to find answer for this one

132.

Which of the following is not true about the FrontPage Manager?

Answer

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

133.

In which PHP file is the central configuration data for Joomla contained?

Answer

Correct Answer: configuration.php

Note: This Question is unanswered, help us to find answer for this one

134.

Which option will you select to find unpublished articles?

Answer

Correct Answer: Article manager

Note: This Question is unanswered, help us to find answer for this one

135.

Which of the given database systems is supported by Joomla?

Answer

Correct Answer: Mysql

Note: This Question is unanswered, help us to find answer for this one

136.

State whether True or False:

The core editor events apply to plug-ins that provide editor functionality such as TinyMCE or XStandard Lite.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

137.

Which type of positioning elements define a concrete area such as a <P>, <TD>, <DIV>, or <TABLE> in a CSS file?

Answer

Correct Answer: Block elements

Note: This Question is unanswered, help us to find answer for this one

138.

State whether True or False.

Joomla uses Perl language.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

139.

What is not true about JoomlaXplorer?

Answer

Correct Answer: None of the above

Note: This Question is unanswered, help us to find answer for this one

140.

Refer to the given image.

When will you use SMTP authentication mail settings?

Answer

Correct Answer: When you want to use an external mail server

Note: This Question is unanswered, help us to find answer for this one

141.

State whether True or False:

There are two root classes for the Joomla framework: JFactory and JVersion.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

142.

Refer to the given image.

 What do you understand by the section (marked as A)?

Answer

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

143.

Which path variable holds the path of the currently executing application?

Answer

Correct Answer: JPATH_BASE

Note: This Question is unanswered, help us to find answer for this one

144.

Which of the following PHP directives are important to Joomla execution to define an alternate compression library if the standard library is not available?

Answer

Correct Answer: zlib.output_handler

Note: This Question is unanswered, help us to find answer for this one

145.

Which type of files can media manager not upload?

Answer

Correct Answer: None of the above

Note: This Question is unanswered, help us to find answer for this one

146.

Refer to the given image.

 What will happen if we set the SSL enabled option to On?

Answer

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

147.

What is the role of the template metadata file in the system?

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

148.

Refer to the given image.

What do you understand by the number of articles?

Answer

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

149.

State whether True or False:

All the Joomla settings are contained within a PHP class called JConfig.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

150.

Which of the following support libraries must you include when you are doing a manual compile of PHP to use with Joomla?

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

151.

Which of the following files is archive and contains the actual CB component that you must install into Joomla while downloading CB?

Answer

Correct Answer: com_comprofiler

Note: This Question is unanswered, help us to find answer for this one

152.

Refer to the given image.

What happens if the Text Separator Field is left empty while using the breadcrumbs module in the module manager?

Answer

Correct Answer: The default double arrow (>>) is used

Note: This Question is unanswered, help us to find answer for this one

153. Which of the following technologies is/are used by Joomla?


Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

154. From which package are the classes (i.e JSite, JAdministrator and JInstallation) which make up the Joomla CMS application extended?


Answer

Correct Answer: Application

Note: This Question is unanswered, help us to find answer for this one

155. Refer to the given image.

What do you understand by the type of error?


Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

156. How will you make Joomla 1.0x extensions work with Joomla 1.5?


Answer

Correct Answer: Enable Legacy plugin

Note: This Question is unanswered, help us to find answer for this one

157. How will you enable cache?


Answer

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

158. With the "Mass Mail" tool, which of the following recipients can you select?


Answer

Correct Answer: A single group

Note: This Question is unanswered, help us to find answer for this one

159. How many levels can each menu have?


Answer

Correct Answer: As many levels as you wish

Note: This Question is unanswered, help us to find answer for this one

160. In the User Manager, which Public Front-end User group(s) cannot edit articles?


Answer

Correct Answer: Author

Note: This Question is unanswered, help us to find answer for this one

161. While installing Sample Data, you got error as demonstrated in the diagram. What does it mean?


Answer

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

162. In the Media Manager, if the option "Maximum Size (in bytes)" of Media Setting is set to zero(0), what will be the maximum size of the file that you can upload?


Answer

Correct Answer: The maximum uploading size allowed by the PHP

Note: This Question is unanswered, help us to find answer for this one

163. Choose the correct statements (Database Configuration step).


Answer

Correct Answer: You must provide an existing database name.

Note: This Question is unanswered, help us to find answer for this one

164. Based on the SEF setting in the diagram, what is the link that points to the menu item "News"?


Answer

Correct Answer: http://[site url]/index.php/news

Note: This Question is unanswered, help us to find answer for this one

165. With cache enabled, the content will be cached based on the:


Answer

Correct Answer: Request URI.

Note: This Question is unanswered, help us to find answer for this one

166. When you enable cache in the "Global Configuration" and enable plugin Cache, what will be cached?


Answer

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

167. How to set the "Page Title" for a menu item?


Answer

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

168. In the Content Manager, what is the number of categories you can add?


Answer

Correct Answer: As many as you wish<br>

Note: This Question is unanswered, help us to find answer for this one

169. How will you create a static content item?


Answer

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

170. In the Media Manager, which default "Media Folder" are media stuffs uploaded to?


Answer

Correct Answer: images

Note: This Question is unanswered, help us to find answer for this one

171. Which position is the banner module displayed on in the Joomla front-end?


Answer

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

172. What is the first step in Joomla installation?


Answer

Correct Answer: Choose Language

Note: This Question is unanswered, help us to find answer for this one

173. Which of the following components can not be uninstalled?


Answer

Correct Answer: com_contact<br>

Note: This Question is unanswered, help us to find answer for this one

174. In the User Manager, how can a user get back their password if they forget it?


Answer

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

175. While installing Joomla, at the FTP Configuration step, what is the FTP layer for?


Answer

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

176. In the Content Manager, an article can be stored:


Answer

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

177. What is a Component?


Answer

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

178. How will you install a Joomla extension using a Joomla installer?


Answer

Correct Answer: Upload the Package File

Note: This Question is unanswered, help us to find answer for this one

179. What is the purpose of the module Poll?


Answer

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

180. Which of the following tabs allows you to disable user registration?


Answer

Correct Answer: In the "Global Configuration" page, tab "System"

Note: This Question is unanswered, help us to find answer for this one

181. What is "Joom!Fish" extension?


Answer

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

182. What is the Alias link?


Answer

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

183. When an article is Archived, it will:


Answer

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

184. Which of the following functions does Joomla support?


Answer

Correct Answer: $db-&gt;loadObjectList(),$db-&gt;loadObjectList('key'),$db-&gt;loadRowList()

Note: This Question is unanswered, help us to find answer for this one

185. What is the XML-RPC implemented in Joomla?


Answer

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

186. What does the method "renderModule" in the class "JModuleHelper" do?


Answer

Correct Answer: It renders the module, returning the output HTML.

Note: This Question is unanswered, help us to find answer for this one

187. Instead of using the default Joomla build/parse route, how can you develop your own one?


Answer

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

188. A module is configured to display title and publish to position "position". The module position "position" is loaded with style "xhtml" in template. If the module does not return any data, what will be displayed?


Answer

Correct Answer: Nothing<br>

Note: This Question is unanswered, help us to find answer for this one

189. Which of the following field types is/are supported by Joomfish when creating a Joomfish Content Element?


Answer

Correct Answer: a, b, e, and f<br>

Note: This Question is unanswered, help us to find answer for this one

190. Consider the DATABASE and CODE segments as shown above in an image. Given this information, choose the case from the options below that would return these results:


Answer

Correct Answer: $result = $db-&gt;loadAssoc()<br>

Note: This Question is unanswered, help us to find answer for this one

191. Which of the following classes helps you to translate a string into the current language?


Answer

Correct Answer: JText

Note: This Question is unanswered, help us to find answer for this one

192. What is the following code used for?

$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('modules');
$options = array('style' => 'xhtml');
$position = 'article-banners';
echo $renderer->render($position, $options, null);


Answer

Correct Answer: For loading a module position<br>

Note: This Question is unanswered, help us to find answer for this one

193. The core Editor events apply to the plugins that provide editor functionality such as TinyMCE or XStandard Lite.


Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

194. Which method is used to load plugins?


Answer

Correct Answer: JPluginHelper::importPlugin('pluginsName');

Note: This Question is unanswered, help us to find answer for this one

195. Example:jimport( 'joomla.application.module.helper' );

$module = JModuleHelper::getModule( 'mainmenu', 'Key Concepts' );
$attribs = array('style'=>'xhtml');
echo JModuleHelper::renderModule( $module, $attribs );
What is the purpose of the $attribs array?


Answer

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 &lt;jdoc:include.../&gt; tag in the template.

Note: This Question is unanswered, help us to find answer for this one

196. Does Joomla support the creation of custom URL formats?


Answer

Correct Answer: Yes<br>

Note: This Question is unanswered, help us to find answer for this one

197. Consider the code segment below. Then, from the options given, choose the case that would result in an integer.

$db =& JFactory::getDBO();
$query = "
SELECT count(*)
FROM ".$db->nameQuote('#__my_table').";
";
$db->setQuery($query);



Answer

Correct Answer: $result = $db-&gt;loadResult()

Note: This Question is unanswered, help us to find answer for this one

198. To install and run Joomla 1.5, the minimum system requirements are ____________.


Answer

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

199. When the parameter of a module is edited, data is directly written in xml file.


Answer

Correct Answer: False<br>

Note: This Question is unanswered, help us to find answer for this one

200. Listed below are the four important system events that occur in a very specific order when a request is made. From the possibilities given, choose the option that represents the correct sequence of these events.

1.onAfterRoute
2.onAfterDispatch
3.onAfterInitialize
4.onAfterRender


Answer

Correct Answer: 3-1-2-4

Note: This Question is unanswered, help us to find answer for this one

201. What does the menu parameter type do?


Answer

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

202. Which one of the following statements protects against CSRF attacks?


Answer

Correct Answer: &lt;?php echo JHTML::_( 'form.token' );?&gt;

Note: This Question is unanswered, help us to find answer for this one

203. Consider the database segment below. From the options given, select the case that will load a specific row of the database with JTable.

DATABASE
Width $row =& JTable::getInstance('recipes', 'Table')


Answer

Correct Answer: $result = $row-&gt;load($id)

Note: This Question is unanswered, help us to find answer for this one

204. What file does the following code excerpt come from? # and the requested path and file doesn't directly match a physical file RewriteCond %{REQUEST_FILENAME} !-f # and the requested path and file doesn't directly match a physical folder RewriteCond %{REQUEST_FILENAME} !-d # internally rewrite the request to the index.php script RewriteRule .* index.php [L] #

Answer

Correct Answer: .htaccess

Note: This Question is unanswered, help us to find answer for this one

205. Some extensions are too large in file size to upload using the web interface due to limitations of the web hosting environment. What is the easiest way to install these extensions?

Answer

Correct Answer: Install from Directory

Note: This Question is unanswered, help us to find answer for this one

206. In Joomla 3.x where has the media manager tab moved to?

Answer

Correct Answer: Under content menu

Note: This Question is unanswered, help us to find answer for this one

207. In Joomla Database Object is created by:

Answer

Correct Answer: JFactory::getDbo()

Note: This Question is unanswered, help us to find answer for this one

208. Database function to fetch a particular column values in an array?

Answer

Correct Answer: loadColumn()

Note: This Question is unanswered, help us to find answer for this one

209. How many user groups does Joomla have by default?

Answer

Correct Answer: 9

Note: This Question is unanswered, help us to find answer for this one

210. Which of the following functions can be performed by Joomla Repository?

Answer

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

211. What is the file for edit "Meta Generator" of Joomla ?

Answer

Correct Answer: includes/application.php

Note: This Question is unanswered, help us to find answer for this one

212. What is the name of the template directory where component or model view overrides should be placed?

Answer

Correct Answer: html

Note: This Question is unanswered, help us to find answer for this one

213. How many Access Levels are there in Joomla by default?

Answer

Correct Answer: 3

Note: This Question is unanswered, help us to find answer for this one

214. If you need to override the layout of some module in Joomla, what procedure is right?

Answer

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

215. Guest is the default Access Level for unregistered users in Joomla

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

216. To use search engine friendly (SEF) URL's in Joomla you must have mod_rewrite enabled in Apache?

Answer

Correct Answer: No

Note: This Question is unanswered, help us to find answer for this one

217. If you have a Joomla! site with a component named 'hello', model named 'hi', what would be that models class name?

Answer

Correct Answer: HelloModelHi

Note: This Question is unanswered, help us to find answer for this one

218. What would you use to create tabbed panels in your custom Joomla component?

Answer

Correct Answer: JHtml::_('tabs.start');

Note: This Question is unanswered, help us to find answer for this one

219. In Joomla if you find any client requests such as: 192.168.0.1 - - [29/Oct/2008:06:07:30 -0500] "GET /index.php?live_site=domain.com/1.txt?? HTTP/1.1" 200 10864 "-" "Firefox" It means...

Answer

Correct Answer: Your Joomla has been hacked

Note: This Question is unanswered, help us to find answer for this one

220. How to remove pathway or breadcrumbs entirely?

Answer

Correct Answer: Editing index.php

Note: This Question is unanswered, help us to find answer for this one

221. Only members of this group are allowed to install Joomla! components, modules, and/or plugins.

Answer

Correct Answer: Super Administrators

Note: This Question is unanswered, help us to find answer for this one

222. JFTP: Access is Denied. How can you solve this error?

Answer

Correct Answer: Disable FTP access options in Joomla

Note: This Question is unanswered, help us to find answer for this one

223. To enable ReCaptcha in Joomla you need to do the following?

Answer

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

224. The default folder for files used by the Media Manager can't be changed?

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

225. If Content - Load Module plugin is enabled. What is the code that can be used to insert a module inside a Joomla article content or inside another module?:

Answer

Correct Answer: {loadposition module-position}

Note: This Question is unanswered, help us to find answer for this one

226. What databases store data in Joomla?

Answer

Correct Answer: MySQL and MS SQL

Note: This Question is unanswered, help us to find answer for this one

227. Which of the following is NOT a feature of Joomla DOCman?

Answer

Correct Answer: Integrated Spellchecking using Google Spellchecker

Note: This Question is unanswered, help us to find answer for this one

228. How do you change the default editor in Joomla! 2.5?

Answer

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

229. In module "helper.php" can we call function_b() in function_a() without helper a class name reference?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

230. If you have a module compatible with j 2.5 can you use it automatically with 3.x

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

231. When adding an image to a Joomla! article, which of the following is not an image property?

Answer

Correct Answer: Opacity

Note: This Question is unanswered, help us to find answer for this one

232. What is the number that corresponds to "Enable" in Joomla when using code editor for config.php?

Answer

Correct Answer: 1

Note: This Question is unanswered, help us to find answer for this one

233. Which of the following techniques does Joomla use for programming and software design patterns?

Answer

Correct Answer: Object-oriented programming(OOP)

Note: This Question is unanswered, help us to find answer for this one

234. Which of the following is a correct way to link an external Javascript file called sample.js to a Joomla! page?

Answer

Correct Answer: addScript('/media/system/js/sample.js'); ?>

Note: This Question is unanswered, help us to find answer for this one

235. If a user is receiving 'RG_Emulation is On' warning in Joomla's admin area, then a user needs to...

Answer

Correct Answer: Turn off the RG_Emulation

Note: This Question is unanswered, help us to find answer for this one

236. We can create a new Plug-in type in Joomla by installing a third party Plug-in?

Answer

Correct Answer: true

Note: This Question is unanswered, help us to find answer for this one

237. Joomla's admin username can be easily changed with a simple query on __________.

Answer

Correct Answer: MySQL

Note: This Question is unanswered, help us to find answer for this one

238. Which of the following Joomla components or modules is not installed by default?

Answer

Correct Answer: Joom!Fish

Note: This Question is unanswered, help us to find answer for this one

239. How does one view an article's source code while in edit mode?

Answer

Correct Answer: Toggle the source code editor.

Note: This Question is unanswered, help us to find answer for this one

240. What are Extensions?

Answer

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

241. When creating a Model for a Joomla! website, what scripting language is used?

Answer

Correct Answer: PHP

Note: This Question is unanswered, help us to find answer for this one

242. Which of the following are the correct server requirements for Joomla?

Answer

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

243. By default, the Joomla! administration backend is only available to site administrators.

Answer

Correct Answer: TRUE

Note: This Question is unanswered, help us to find answer for this one

244. Which of the following Web application frameworks comprises Joomla?

Answer

Correct Answer: Model-View-Controller

Note: This Question is unanswered, help us to find answer for this one

245. In which of the following software languages is Joomla written?

Answer

Correct Answer: PHP

Note: This Question is unanswered, help us to find answer for this one

246. True or False? Joomla is written in PHP.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

247. True or false? One can insert a YouTube video in Joomla.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

248. Can you enable RSS in Joomla?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

249. A Joomla! administrator can restrict access to specific articles

Answer

Correct Answer: TRUE

Note: This Question is unanswered, help us to find answer for this one

250. Joomla is written in which of the following languages or frameworks?

Answer

Correct Answer: php

Note: This Question is unanswered, help us to find answer for this one

251. Which of the following is Joomla?

Answer

Correct Answer: Content Management System

Note: This Question is unanswered, help us to find answer for this one

252. Which of the following is the official Joomla Website?

Answer

Correct Answer: www.joomla.org

Note: This Question is unanswered, help us to find answer for this one

253. True or false? The index.php file is a combination of HTML and PHP code.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

254. Where should a developer begin looking for information regarding Joomla!?

Answer

Correct Answer: http://developer.joomla.org

Note: This Question is unanswered, help us to find answer for this one

255. The term "ACL" is used in Joomla to refers to:

Answer

Correct Answer: The "Access Control List" system

Note: This Question is unanswered, help us to find answer for this one

256. Which of the following files does the ‘ /includes’ directory NOT contain?

Answer

Correct Answer: it contains none of these options

Note: This Question is unanswered, help us to find answer for this one