Showing posts with label Test Answers. Show all posts
Showing posts with label Test Answers. Show all posts

Wednesday, February 1, 2017

Upwork WordPress exam Test Question Answers 2018


Here you will get easily UpworkWordPress test answers helps you to pass easily inside WordPress Ensure that you boost your current skills expertise to the clients inside Upwork.


Upwork WordPress exam Test Question Answers
____________ can manage their own profiles, but can do virtually nothing else in the administration area.
  • Contributor
  • Author
  • Editor
  • Subscriber (Ans)
  • Administrator


____________ can publish, edit, and delete posts and pages written by any user. They can upload some kinds of files, and they can write HTML without restrictions. They can manage links and categori…
  • Contributor
  • Author
  • Editor(Ans)
  • Subscriber
  • Administrator

In order to display a widget, the user must _________________.
  • set the “show property” of the desired widget to “true”
  • drag the desired widget to the side bar (Ans)
  • add the desired widget to the post
  • change the source code

In which way MD5 hash does WordPress stores and represents?
  • In Hex string (Ans)
  • In Base64 string
  • in raw data file
  • text file

Is super cache a built-in plugin of WordPress?
  • Yes
  • No (Ans)

Meta tags can be added to WordPress pages by ________________.
  • using plug-ins
  • adding them to the header.php file
  • updating the database
  • a and (Ans)
  • and c

On which of the following databases can WordPress be installed by default?
  • MySQL (Ans)
  • Oracle Database
  • Microsoft SQL Server
  • PostgreSQL

One possible way to collect realtime statistics about traffic on a WordPress site is:
  • using a built-in tool
  • using a plugin (Ans)
  • using a widget
  • Traffic statistics cannot be collected on a WordPress site.

User Level 7 converts to _________?
  • Contributo
  • Autho
  • Edito
  • Subscribe (Ans)
  • Administrato

What are the correct steps in wordpress plugin development:
  • Step 1 – Create your file and let it be known as a plugin Step 2 – Create the objects of your plugin Step 3 – Adding your actions and filters Step 4 – Adding settings/options to your plugin Step 5 – Finishing the code (Ans)
  • Step 1 – Adding settings/options to your plugin Step 2 – Create your file and let it be known as a plugin Step 3 – Create the objects of your plugin Step 4 – Adding your actions and filters Step 5 – Finishing the code
  • Step 1 – Create the objects of your plugin Step 2 – Adding settings/options to your plugin Step 3 – Create your file and let it be known as a plugin Step 4 – Finishing the code
  • Step 1 – Create the objects of your plugin Step 2 – Adding settings/options to your plugin Step 3 – Finishing the code

What are the database privileges that are required for WordPress?
  • insert, delete, update, drop and alter
  • select, insert, delete, update, create, drop and alter (Ans)
  • insert, delete, update, create, drop and alter
  • insert and delete

What is Automated Testing in WordPress?
  • Automated testing is running test cases where manual intervention is not required to run each one. (Ans)
  • It is a plugin which is used to test your custom template or plugin.
  • It is a function available in WordPress to test the custom template/plugin.
  • There is no such thing as Automated Testing in WordPress.

What is the BEST way to get last inserted row ID from WordPress database ?
  • Use the following code snippet $lastid->$wpdb=$last->get_row;
  • The call to mysql_insert_id() inside a transaction should be added: mysql_query(‘BEGIN’); // Whatever code that does the insert here. $id = mysql_insert_id(); mysql_query(‘COMMIT’); // Stuff with $id.
  • The following code snippet should be added $last = $wpdb->get_row(“SHOW TABLE STATUS LIKE ‘table_name'”); $lastid = $last->Auto_increment;
  • Straight after the $wpdb->insert() insert, the following code should be added: $lastid = $wpdb->insert_id; (Ans)

What is the first action you need to take for enabling the WordPress multisite (MS) feature?
  • Enable the WordPress multisite feature on admin panel
  • Enable the Network feature
  • Add this code to wp-config.php file: define( ‘WP_ALLOW_MULTISITE’, true ); (Ans)

What is the first action you need to take for enabling WordPress MU feature?
  • Enable WordPress MU feature on admin panel
  • Enable Network feature
  • Add this code to wp-config.php file: define( ‘WP_ALLOW_MULTISITE’, true ); (Ans)

What is the function of add_filter in WordPress?
  • It registers a filter for a tag.
  • It removes line breaks from the pages list.
  • It is a companion function to apply_filters().
  • All of the above. (Ans)

What is the limitation to the depth of your categories?
  • 10 levels
  • 20 levels
  • no limit levels (Ans)

What is the output of the following code?
  • <ul id=”sortable”>
    <li id=”1″>example 1</li>
    <li id=”2″>example 2</li>
    <li id=”3″>example 3</li>
    <li id=”4″>example 4</li>
    </ul>
  • $(document).ready(function(){
    $(‘#sortable’).sortable({
    update: function(event, ui) {
    var newOrder = $(this).sortable(‘toArray’).toString();
    $.get(‘saveSortable.php’, {order:newOrder});
    }
    });
    });
  • Removes positions from data base based on the user input
    Saves sortable positions to data base based on the user input (Ans)
  • Adding new sortable positions from another data base
    Sorting o

Which conditional tag checks if the dashboard or the administration panel is attempting to be displayed by returning “true’ (if the URL being accessed is in the admin section) or “false” (for a front-end page).
  • my_admin()
  • view_admin()
  • is_admin() (Ans)
  • root_admin()


_____________ can publish, edit, and delete their own posts. They cannot write pages. They can upload some kinds of media files, and they are allowed to use only the limited set of HTML tags.
  • Contributor
  • Author (Ans)
  • Editor
  • Subscribe
  • Administrator

A possible way to allow the display of several authors’ names on one post is to ______
  • update the database
  • change the admin settings
  • change the config files
  • use a plug-in (Ans)

Are categories and tags available for pages? <b>Note:</b> Categories must have distinct slugs. Even if two categories have different parents and would therefore have different permalinks, you can’…
  • Yes
  • No (Ans)

Can the contents of the wp-content folder be moved or renamed without changing any settings?
  • Yes (Ans)
  • No

Conditional tags can be used to _______________________.
  • get all comments from one post
  • get all posts from one category
  • change the content to be displayed (Ans)
  • None of the above: conditional tags are not available in WordPress.

How can a custom content filter be added?
  • By using add_action(‘the_content’,’my_custom_filter’) (Ans)
  • By using add_filter(‘the_content’,’my_custom_filter’)
  • By using wp_filter(‘the_content’,’my_custom_filter’)
  • By using add_action(‘content’,’my_custom_filter’)

How can a post ID be retrieved from the permalink?
  • Its not possible to retrieve the post ID from a permalink due to its structure.
  • It can be retrieved by using a Regular Expression.
  • wp_get_post_id($permalink)
  • url_to_postid($permalink) (Ans)

How can a user be found through its meta data?
  • User can not be retrieved through its meta data
  • get_user_by_metadata($metaid,$metavalue)
  • get_user($args)
  • get_users($args) (Ans)

How can a WordPress template be integrated inside a codeigniter framework using WordPress functions like wp_header,wp_footer,wp_sidebar?
  • Include the file wp-blog-header.php from WordPress installation directory to codeigniters index.php and create template inside codeigniter’s view. (Ans)
  • Include the file wp-settings.php from WordPress installation directory to codeigniters index.php and create template inside codeigniter’s view.
  • Create template inside WordPress theme directory and include the file in codeigniter’s view.php file.
  • It is not possible to integrate wordpress with codeigniter.

How can an <li> tag’s class and ID attributes be removed from menu items and page lists?
  • add_filter(‘nav_menu_css_class’, ‘my_css_attributes_filter’, 100, 1); add_filter(‘nav_menu_item_id’, ‘my_css_attributes_filter’, 100, 1); add_filter(‘page_css_class’, ‘my_css_attributes_filter’, 100, 1); function my_css_attributes_filter($var) { return is_array($var) ? array() : ”; } (Ans)
  • add_filter(‘nav_menu_css_class’, ‘my_css_attributes_filter’, 100, 1); add_filter(‘nav_menu_item_id’, ‘my_css_attributes_filter’, 100, 1); function my_css_attributes_filter($var) { if(is_array($var)){ $varci= array_intersect($var, array(‘current-menu-item’)); $cmeni = array(‘current-menu-item’); $selava = array(‘selectedmenu’); $selavaend = array(); $selavaend = str_replace($cmeni, $selava, $varci); } else{ $selavaend= ”; } return $selavaend; }
  • add_filter (‘wp_nav_menu’,’strip_empty_classes’); function strip_empty_classes($menu) { $menu = preg_replace(‘/ class=([“\’])(?!active).*?\1/’,”,$menu); return $menu; }
  • None of the above

How can the Home link be disable from the WordPress top nav?
  • Using Jquery to hide it
  • By adding this code in functions.php function page_menu_args( $args ) { $args[‘show_home’] = FALSE; return $args; } add_filter(
  • ‘wp_page_menu_args’, ‘page_menu_args’ ); (Ans)
  • wp_nav_menu( array(‘menu’ => ‘news’, ‘show_home’ => false))
  • Can not disable the default Home link from wordpress top nav

How can the upload media panel be included in a WordPress template/plugin?
  • By using function wp_enqueue_script(‘media-upload’) (Ans)
  • By using function wp_add_media( );
  • By using function wp_enqueue_script(‘upload’);
  • By using function wp_add_script(‘media-upload’);

Image size limits can be set _______________.
  • directly in the posts
  • in the wp-imageresize plug-in
  • in the admin settings (Ans)
  • a and


Which function is used to display the name of current page in wordpress?
  • get_the_title() (Ans)
  • content_title()
  • page_name()
  • post_name()

Which of the follow is a WordPress alternatives for Ruby on Rails?
  • Refinery (Ans)
  • Typof
  • symenta
  • Rubyalt

Which of the following actions cannot be hooked in with add_submenu_page() function?
  • admin_submenu (Ans)
  • admin_menu
  • user_admin_menu
  • network_admin_menu

Which of the following actions must be performed to import data from wordpress.com?
  • Enter the full access to wordpress.com into the data import form so that it can automatically connect and directly retrieve content.
  • Import from wordpress.com’s RSS.
  • Login to wordpress.com, then the export data using the export tool, then import an exported xml file to the site. (Ans)


Which of the following is the correct way to add custom excerpts length identifiers in WordPress?
  • By adding excerpt_length filter in function.php (Ans)
  • Can’t declare custom excerpts in wordpress
  • Custom exceprts are already available in wordpress
  • Using the_excerpt(‘long’); or the_excerpt(‘short’)

Which of the following is the correct way to assign a category to a WordPress post?
  • wp_set_post_categories($postId,$categories) (Ans)
  • wp_set_category($catId,$postId)
  • By XML-RPC call to wpc.newPost
  • This is not possible

Which of the following is the correct way to filter the content for a few posts?
  • By using apply_filters(filter,postId) (Ans)
  • This is not possible in wordpress
  • Can create filter for posts in a specific wordpress category
  • Passing arguments into the_content()

Which of the following is the correct way to get WordPress Post ID from the Post title?
  • $page = get_page_title( ‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
  • $page = get_page_by_title( ‘Home’ ); $page_id = $page->ID; (Ans)
  • $page = get_page_by_title( ‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
  • None of the above

Which of the following is the correct way to print the slug property of $firstTag object in this code snippet? $tags = wp_get_post_tags($post->ID); $firstTag = $tags[0];
  • $firstTag[‘slug’];
  • $firstTag->slug (Ans)
  • $firstTag.slug
  • $firstTag[0][‘slug’]

Which of the following is the correct way to redirect the default login and registration page URL to a custom login and registration page URL?
  • add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { return(‘Your custom url’); exit(); } }
  • add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { wp_redirect(‘Your custom url’); exit(); } } (Ans)
  • add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { redirect(‘Your custom url’); exit(); } }
  • add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { wp_return(‘Your custom url’); exit(); } }

Which of the following is the correct way to retrieve a featured image from a post?
  • <?php echo get_post_thumb($page->ID, ‘thumbnail’); ?>
  • <?php echo get_featured_image($page->ID, ‘thumbnail’); ?>
  • <?php echo get_the_post_thumbnail($page->ID, ‘thumbnail’); ?> (Ans)
  • <?php echo get_post_thumbnail($page->ID, ‘thumbnail’); ?>

Which of the following methods can be used to make permalinks SEO friendly?
  • Updating the database
  • changing the source code
  • configuring the feature in the config file
  • configuring the feature in the admin settings (Ans)

Which of the following role levels has the highest privilege?
  • Level_0
  • Level_10 (Ans)
  • Depends on your settings
  • Every role level has the same privilege

Which of the following snippets disable depreciated warnings in WordPress like this one ? “Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-se…
  • define(E_DEPRECATED, false);
  • error_reporting(E_ALL ^ E_DEPRECATED); (Ans)
  • define(E_NOTICE, false);
  • error_reporting(WP_DEBUG, true)

Which of the following will call the WordPress media uploader form element?
  • <form enctype=”multipart/form-data” method=”post” action=”<?=bloginfo(“siteurl”);?>/wp-admin/media-upload.php?inline=&upload-page-form=” class=”media-upload-form type-form validate” id=”file-form”> (Ans)
  • <a onclick=”return false;” title=”Upload image” class=”thickbox” id=”add_image” href=”media-upload.php?type=image&TB_iframe=true&width=640&height=105″>Upload Image</a>
  • <a href=”media-upload.php?type=image&TB_iframe=true&width=640&height=105″>Upload Image</a>
  • <form enctype=”multipart/form-data” method=”post” action=”<?=bloginfo(“bloginfo”);?>/wp-admin/media-upload.php?inline=&upload-page-form=” class=”media-upload-form type-form validate” id=”file-form”>

Which of the following will correctly add custom mod rewrite rules to .htaccess from a WordPress plugin?
  • $custom_mod_rewrite = new custom_mod_rewrite; register_activation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); register_deactivation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); add_action(‘generate_rewrite_rules’, array($custom_mod_rewrite, “generate_rewrite_rules”)); class custom_mod_rewrite { function __construct() { $this->wp_rewrite = & $POST[“wp_rewrite”]; }}
  • $custom_mod_rewrite = new custom_mod_rewrite; register_activation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); register_deactivation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); add_action(‘generate_rewrite_rules’, array($custom_mod_rewrite, “generate_rewrite_rules”)); class custom_mod_rewrite { function __construct() { $this->wp_rewrite = & $GLOBALS[“wp_rewrite”]; } } (Ans)
  • $custom_mod_rewrite = new custom_mod_rewrite; register_activation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); register_deactivation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); add_action(‘generate_rewrite_rules’, array($custom_mod_rewrite, “generate_rewrite_rules”)); class custom_mod_rewrite { function __construct() { $this->wp_rewrite = & $GLOBALS[“wp_rewrite”]; } function mod_rewrite_rules($rules) { return preg_replace(‘#^(RewriteRule \^.*/)\?\$plugin_name .*(http://.*) \[QSA,L\]#mi’, ‘$1 $2 [R=301,L]’, $rules); } }
  • $custom_mod_rewrite = new custom_mod_rewrite; register_activation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); register_deactivation_hook( __FILE__, array($custom_mod_rewrite, ‘flush_rewrite_rules’)); add_action(‘generate_rewrite_rules’, array($custom_mod_rewrite, “generate_rewrite_rules”)); class custom_mod_rewrite { function __construct() { $this->wp_rewrite = & $SESSION[“wp_rewrite”]; } }

Which of the following will correctly load localized (translated) text for a WordPress plugin?
  • function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); load_theme_textdomain(‘tutsplus’, $lang_dir); } add_action(‘after_setup_theme’, ‘custom_theme_setup’);
  • function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); add_action(‘after_setup_theme’, ‘custom_theme_setup’); }
  • function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); add_action(‘after_setup_theme’, ‘custom_theme_setup’); } load_theme_textdomain(‘tutsplus’, $lang_dir); (Ans)
  • function load_theme_textdomain(‘tutsplus’, $lang_dir); { $lang_dir = get_template_directory() . ‘/lang’); custom_theme_setup(); } add_action(‘after_setup_theme’, ‘custom_theme_setup’);

Which of the following will echo the base URL of a WordPress site?
  • <?php echo get_bloginfo(‘base_url’) ?>
  • <?php echo get_bloginfo(‘url’) ?> (Ans)
  • <?php echo get_bloginfo(‘site_url’) ?>
  • <?php echo get_website_url() ?>

Which of the following will give the option to add inline Ajax for comment posting?
  • Enabling Ajax in the wp-config.php file
  • Activating Ajax from the admin settings of WordPress
  • Using the Ajax Comment Posting plugin (Ans)
  • WordPress doesn’t support inline Ajax.

Which of the following will hash a string/password to its md5 equivalent?
  • md5()
  • wp_generate_password() (Ans)
  • wp_generate_md5()
  • password_md5()

Which of the following will show the most recent post (by date) from a custom taxonomy?
  • select * from wp_posts where ID in( select ID from ( select wp_posts.ID , wp_posts.post_date, d.name from wp_posts as a join wp_term_relationships as b on ( a.ID = b.object_id) join wp_term_taxonomy as c on (b.term_taxonomy_id = c.term_taxonomy_id) join wp_terms as d on (c.term_id = d.term_id) where c.taxonomy = ‘post-series’ group by d.name having (wp_posts.post_date = max(wp_posts.post_date)) )tmp)
  • select * from wp_posts where ID in( select ID from ( select wp_posts.ID , wp_posts.post_date, d.name from wp_posts as a join wp_terms as d on (c.term_id = d.term_id) where c.taxonomy = ‘post-series’ group by d.name having (wp_posts.post_date = max(wp_posts.post_date)) )tmp)
  • select * from wp_posts where ID in( select ID from ( select wp_posts.ID , wp_posts.post_date, d.name from wp_posts as a join wp_term_relationships as b on ( a.ID = b.object_id) join wp_term_taxonomy as c on (b.term_taxonomy_id = c.term_taxonomy_id) join wp_terms as d on (c.term_id = d.term_id) having (wp_posts.post_date = max(wp_posts.post_date)) )tmp)
  • select * from wp_posts where ID in( select ID from ( select wp_posts.ID , wp_posts.post_date, d.name from wp_posts as a join wp_term_relationships as b on ( a.ID = b.object_id) join wp_terms as d on (c.term_id = d.term_id) where c.taxonomy = ‘post-series’ group by d.name having (wp_posts.post_date = max(wp_posts.post_date)) )tmp) (Ans)

Which of the following WordPress Multisite functions allows for getting content from one blog and display it on another?
  • switch_blog()
  • switch_to_blog() (Ans)
  • restore_current_blog()
  • restore_to_current_blog()

Which of the functions below is required to create a new taxonomy?
  • add_taxonomy
  • register_taxnoomy (Ans)
  • create_taxonomy

Which PHP method(s) can be used to send form data that is persistent across succeeding page views (such as for a language selection feature) in WordPress?
  • POST
  • GET
  • SESSION or COOKIE (Ans)
  • POST oe GET

WordPress’s requirements are modest. At minimum, which of the following standards should your server support for WordPress 3.1?
  • PHP version 4.4.9 or greater, MySQL version 4.0 or greater
  • PHP version 4.3 or greater, MySQL version 4.1.2 or greater (Ans)
  • PHP version 4.4.9 or greater, MySQL version 5.1 or greater
  • PHP version 4.3 or greater, MySQL version 5.1 or greater

You can limit the number of revisions WordPress stores by _____ <b>Note:</b> Categories must have distinct slugs. Even if two categories have different parents and would therefore have different p…
  • adding the following line to your wp-config.php file: define(‘WP_POST_REVISIONS’, 3); (Ans)
  • using a plugin
  • changing a setting on admin panel

Which of the following code snippets best protects a system from SQL injections?
  • sql_real_escape_strong()
  • mysql_real_escape()
  • mysql_real_escape_string() (Ans)
  • mysql_not_real_delete_string()

Which of the following code snippets can be used to create custom POST status in wordpress 3.0 +?
  • register_new_post()
  • register_post_status() (Ans)
  • add_new_post_status()
  • modify_post_status()

Which of the following code snippets is the correct way to get content from Tinymce via javascript ?
  • document.getElementById(‘content’)
  • tinymce.activeEditor.getContent(); (Ans)
  • tinymce.element.getContent();
  • document.getElement(‘tinymce_content’)

Which of the following code snippets will create plugins back-end page without showing it as menu item?
  • add_submenu_page with parent slug = null (Ans)
  • add_menu_page with parent slug = null
  • add_submenu_page without parent slug = null
  • add_menu_page without parent slug = null

Which of the following codes will return the current plugin directory in WordPress?
  • <?php plugin_basename($file); ?> (Ans)
  • <?php plugin_basename(‘url’); ?>
  • <?php bloginfo_plugin(‘url’); ?>
  • <?php content_plugin_url( $path ); ?>

Which of the following commands can change the ownership of WordPress directory to www-data (for Apache)?
  • sudo chown -Rf www-data * (Ans)
  • chown -Rf www-data *
  • sudo crown -Df www-data *
  • Alldo chown -Rf www-data *

Which of the following functions are used to add administration menu item in WordPress ?
  • add_menu_page(); (Ans)
  • add_admin_item();
  • add_admin_page();
  • add_admin_option();

Which of the following functions are used when adding CSS and jQuery codes on a WordPress plugin?
  • wp_register_style
  • wp_enqueue_style (Ans)
  • wp_enqueue_script
  • None of these.

Which of the following functions can be used to create a WordPress page?
  • wp_insert_post() (Ans)
  • wp_insert_page()
  • wp_create_post()
  • wp_create_page()

Which of the following is an example of a WordPress plugin that provides multilingual capabilities?
  • WP Supper cache
  • qTranslate (Ans)
  • BuddyPress
  • Hotfix

Which of the following is the correct code to get an array of every image uploaded to a particular post?
  • $images =& get_children( ‘post_type=attachment&post_mime_type=image&post_parent=10’ );
  • $images = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); (Ans)
  • $images = get_post(7, ARRAY_A);
  • It cannot be done

Which of the following is the correct sequence of steps to adapt a WordPress plugin to a multisite?
  • 1. Use $wpdb to iterate through all blogs 2. Hook according to the $blog_id 3. Install the plugin as Network only 4. Uninstall depends the specific plugin (Ans)
  • 1. Use $wp_posts to iterate through all blogs 2. Hook according to the $function 3. IInstall the plugin as Network only 4. Uninstall depends the specific plugin
  • 1. Use $wp_posts to iterate through all blogs 2. Hook according to the $function 3. Install other activations except Network 4. Uninstall is the same for all the plugins
  • 1. Use $wp_posts to iterate through all blogs 2. Hook according to the $function 3. Install the plugin as Network only 4. Uninstall is same for all the plugins
Thanks for following this Upwork wordpress test Question and Answer

Tuesday, February 2, 2016

Upwork Adobe Photoshop CS3 Test Question Answers

Are locking for Adobe Photoshop CS3 Test Questions & Answers for Upwork ? 
here can find your best solution for this question, upwork test answer follow below.



Which of the following is not a kind of text type?

Upwork Adobe Photoshop CS3 Test Answers
a. Point Type
b. Paragraph Type
c. Type on a path
d. Line type (ans)


State whether True or False:
You cannot arrange the stacking order of the Auto slices.
a. True (ans)
b. False


Anti-aliasing option is available for which of the given Tools?
All of the above (Ans)


Auto Blend Layers is available for which of the following modes?
Both a and b (Ans)


In which Format will you save your file to preserve the Alpha channels?
All of the above (Ans)


In which of the following Modes can you draw while working with the Shape or Pen tools?
All of the above (Ans)


Kerning is the adjustment of the space between individual letter.
True (Ans)


Layer styles cannot be applied to which of the following options?
Locked layer (Answer)

Refer to the given image.
What happens when Use Legacy is selected as shown in the given picture?
Both a and b (Ans)


Refer to the given image.
When is the Canvas Extension Color Menu not available as shown in the given image?
When an image contains a background layer(Ans)


Refer to the given image.
Which among the following Methods adds pixels by averaging the color values of the surrounding pixels and produces medium-quality results?
A (ans)

Refer to the given image.
Which icon indicates Type 1 kind of fonts?
B (Ans)

Refer to the given image.
Which Liquify Tool is used to reconstruct a part of a distorted image?
A (ans)

Refer to the given image.
Which option will you select to remove the existing profile from the document in the given image?
A (ans)

Refer to the given image.
Why do we select Remember Palette Locations option (marked as A) as shown in the given image?
To display palettes in their last locations on startup (ans)

State whether True or False:
By default, Masks applied to Smart objects are linked to Smart object layers.
False (ans)

State whether True or False:
Hanging Punctuation controls the alignment of the punctuation marks for a specific paragraph.
True (Ans)

State whether True or False:
Photoshop supports a maximum pixel dimension of 300,000 by 300,000 pixels per image.
True (Ans)

State whether True or False:
The Healing Brush Tool cannot be applied to video or animation frames.
False (Ans)

State whether True or False:
Video layers do not work in the Frame mode.
True (Ans)

State whether True or False:
When you create a new image with the transparent content, the image does not have a background layer.
True (Ans)

The individual Histograms in the All Channels View does not include which of the following
All of the above (ans)

The Rotate Canvas command does not work on which of the following
All of the above (ans)

Which among the following is not a right option for selecting a web-safe color from the Color Palette?
Choose Current Color from the Color Palette Menu (ans)


Which among the following Modes does not support layers?
All of the above (ans)

Which among the following QuickTime Video formats is supported by Photoshop extended?
All of the above (ans)

Which Animation mode shows the frame duration and keyframed layer properties of the videos and animations in a Timeline?
Timeline (ans)

Which Filter embeds a digital Watermark into an image to store a copyright information?
Digimarc filters (ans)


Which keyboard shortcut (windows) will you choose to close a Path?
None of the above (ans)

Which keyboard shortcut (windows) will you choose to group Layers?
Control + G (ans)

Which of the following file formats supports embedded color profiles?
All of the above (ans)

Which of the following is not true about a Droplet?
None of the above (ans)

Which of the following Layer properties can be animated?
All of the above (ans)


Which of the following Slices is created with the Slice Tool?
User slices (ans)

Which option will you choose to convert Document Colors into another profile?
Choose Edit &gt; Convert to profile (ans)


Which option will you choose to Refresh a Histogram?
All of the above (ans)

Which option will you choose to select all layers of a similar type?
Select one of the layers. Choose Layer &gt; Select Similar Layers (ans)

Which option will you select to apply the Extrude filter?
Choose Filter &gt; Stylize &gt; Extrude (ans)

Which option will you select to convert Types to Shapes?
Both b and c (ans)


Which option will you select to display a file at 100% size?
Choose View &gt; Actual Pixels (ans)


Which option will you select to export layers?
Choose File &gt; Scripts &gt; Export Layers To Files (ans)


Which option will you select to open the Levels dialog box?
Choose Image &gt; Adjustments &gt; Levels (ans)


Which option will you select to remove an effect from a style?
In the Layers Palette, drag the Effects Bar to the Delete icon (ans)


Which type of character is generated by Photoshop when the font does not include superscript or subscript characters?
Both a and b (ans)

Which type of images are resolution-dependent?
Vector images (ans)


Which View will you choose to display a Histogram with no controls or statistics?
Compact View (ans)

With which of the given options does the Signal Strength Meter appear?
It appears when you choose ‘merge to hdr command’ (ans)


State whether True or False:
A working space is an intermediate color space used to define and edit color in Adobe applications.
a. True (ans)
b. False


State whether True or False:
The Out Of Gamut option works only on RGB and Lab images.
a. True (ans)
b. False


Channels can not be added to which of the following image modes?
a. RGB
b. CMYK
c. Bitmap (ans)
d. Lab


A Motion Picture film has a frame rate of how many fps?
a. 29.97
b. 23.976
c. 25
d. 24 (ans)


Which of the following is not true about Filters?
a. Filters cannot be applied to Bitmap-mode or indexed-color images
b. All filters can be applied to 8-bit images
c. Filters are applied to the active, visible layer or a selection
d.None of the above (ans)

Which of the given options displays the Modal control in the Actions palette
Which of the given options displays the Modal control in the Actions palette
This question is based upon the figure shown below
Refer to the given image.
Which of the given options displays the Modal control in the Actions palette?
a. A
b. B
c. C
d. D (ans)


State whether True or False:
The mask created by the Replace Color command is permanent.
a. True
b. False (ans)

Which of the following options displays Temporary Work Path in the Paths palette?
Which of the following options displays Temporary Work Path in the Paths palette?
This question is based upon the figure shown below
Refer to the given image.
Which of the following options displays Temporary Work Path in the Paths palette?
a. A
b. B (ans)
c. C
d. All of the above


State whether True or False:
Changing units on the Info Palette automatically changes the units on Rulers.
a. True (ans)
b. False


Which type of images are resolution-dependent?
a. Bitmap images
b. Vector images (ans)
c. Both a and b
d. None of the above


In which of the given instances, a caution icon appears next to the layer comp name as shown in the picture
In which of the given instances, a caution icon appears next to the layer comp name as shown in the picture
This question is based upon the figure shown below
Refer to the given image.
In which of the given instances, a caution icon appears next to the layer comp name as shown in the picture?
a. When you delete a layer
b. When you merge a layer
c. When you convert a layer to a background
d. All of the above



Which of the given options displays left indent in the Paragraph palette
Which of the given options displays left indent in the Paragraph palette
This question is based upon the figure shown below
Refer to the given image.
Which of the given options displays left indent in the Paragraph palette?
a. A
b. B (ans)
c. C
d. D


What is meant by Contact Sheet?
a. Contact Sheets let you easily preview and catalog groups of images by displaying a series of thumbnails on a single page (ans)
b. Contact Sheets let you use a variety of images to create a multipage document or slide show presentation
c. Contact Sheets let you place multiple copies of a source image on a single page
d. All of the above


Which of the following features is supported by the EPS file format?
a. It supports the Grayscale and Bitmap color modes (ans)
b. It supports the Support Alpha Channels
c. It supports the Clipping paths
d. All of the above


Which option is not turned off by the Extras command in the View menu?
a. It does not turn off the Guide feature
b. It does not turn off the Grid feature
c. It does not turn off the Smart Guide feature
d. It does not turn off the Rulers feature (ans)


Which option will you select to display a file at 100% size?
a. Choose View > Actual Pixels (ans)
b. Choose View > Fit on Screen
c. Choose View > Print Size
d. All of the above


What is the use of the Make Work Path command in the Paths palette ?
a. It eliminates any feathering applied to the selection
b. It can alter the shape of a selection
c. Both a and b (ans)
d. None of the above



Which of the following Lock options in the Layers palette prevents modification of the layer’s pixels using the painting tools
Which of the following Lock options in the Layers palette prevents modification of the layer’s pixels using the painting tools
question is based upon the figure shown below
Refer to the given image.
Which of the following Lock options in the Layers palette prevents modification of the layer’s pixels using the painting tools?
a. A
b. B (ans)
c. C
d. None of the above



Which of the given options displays the Set Tsume option in the Character Palette
Which of the given options displays the Set Tsume option in the Character Palette
Refer to the given image.
Which of the given options displays the Set Tsume option in the Character Palette?
a. A
b. B (ans)
c. C
d. D




When will the Dynamic shortcuts appear in the Character Palette Menu as shown in the picture
When will the Dynamic shortcuts appear in the Character Palette Menu as shown in the picture
Refer to the given image.
When will the Dynamic shortcuts appear in the Character Palette Menu as shown in the picture?
a. When you are entering the Point type
b. When you are entering the Paragraph type
c. When the I-beam is in text
d. All of the above (ans)



Which option adjusts Highlights in the Levels dialog box
Which option adjusts Highlights in the Levels dialog box
This question is based upon the figure shown below


Refer to the given image.
Which option adjusts Highlights in the Levels dialog box?
a. A
b. B
c. C (ans)
d. None of the above


Which of the following is not true about the Curves dialog box?
a. You can use the Curves dialog box to adjust the entire tonal range of an image
b. The Curves dialog box lets you adjust up to 14 different points throughout an image’s tonal range * (ans)
c. In the Curves dialog box, the tonal range is represented as a straight diagonal baseline
d. None of the above



In which format will you save your document to preserve the Perspective Plane Information in an image while working with the vanishing point, as shown in the given picture
In which format will you save your document to preserve the Perspective Plane Information in an image while working with the vanishing point, as shown in the given picture
Refer to the given image.
In which format will you save your document to preserve the Perspective Plane Information in an image while working with the vanishing point, as shown in the given picture?
a. PSD
b. TIFF
c. JPEG
d. All of the above (ans)


Which of the following is not a Color Adjustment command?
a. Adjustment command (ans)
b. Color Balance command
c. Selective Color command
d. Levels command



Which of the following options displays the Spot Channels in the Channels palette
Which of the following options displays the Spot Channels in the Channels palette
Refer to the given image.
Which of the following options displays the Spot Channels in the Channels palette?
a. A
b. B (ans)
c. C
d. All of the above


Which of the following is not a type of Variable?
a. Image variables (ans)
b. Visibility variables
c. Pixel Replacement variables
d. Text Replacement variables


Which keyboard shortcut (windows) will you choose to permanently Clear History (no Undo)?
a. Control + Shift + Z (ans)
b. Control + Alt + Z
c. Shift + Clear History
d. Alt + Clear History


Which among the following blending modes is available only for the Apply Image and Calculations commands?
a. Add
b. Subtract
c. Both a and b (ans)
d. None of the above


Which among the following Slices cannot be divided?
a. User slices
b. Auto slice
c. Layer-based slices (ans)
d. All of the above


Which among the following is not a Duotone mode type?
a. Pantone (ans)
b. Monotone
c. Tritone
d. Quadtone


State whether True or False:
You cannot create Work paths from the fonts that do not include the outline data.
a. True (ans)
b. False



What is the colored box in the Navigator Palette known as
What is the colored box in the Navigator Palette known as
Refer to the given image.
What is the colored box in the Navigator Palette known as?
a. View area (ans)
b. Proxy area
c. Navigation area
d. Proxy preview area



Which of the given options displays Converts to Timeline mode in an Animation palette
Which of the given options displays Converts to Timeline mode in an Animation palette
Refer to the given image.
Which of the given options displays Converts to Timeline mode in an Animation palette?
a. A
b. B
c. C
d. D (ans)


State whether True or False:
You cannot change the order of the Vector masks or working paths in the Paths palette.
a. True
b. False (ans)


Which of the following Filters cannot be applied to a Smart Object?
a. Stylize
b. Texture
c. Pattern Maker
d. All of the above (ans)


Which keyboard shortcut (windows) will you choose to select the History Brush tool?
a. Y (ans)
b. R
c. O
d. H


Which among the following files, saved in the Adobe Photoshop format, is used by the filter to create the displacement maps?
a. Flat file
b. Bump file
c. Flattened file (ans)
d. Displace file


Which of the Saving commands is available for an image that is managed by a Version Cue Workspace?
a. Save
b. Save As
c. Check In (ans)
d. Save For Web & Devices


Which of the following is not true about the Multichannel mode?
a. Multichannel mode images contain 256 levels of gray in each channel and are useful for specialized printing(ANS)
b. When you convert images to the Multichannel mode, the color channels in the original image become spot color channels in the converted image
c. Converting an RGB image to the Multichannel mode creates cyan, magenta, and yellow spot channels
d. None of the above (ans)


Which among the following is/are not true about the Fill Pixels (Drawing mode)?
a. In this mode, you can create Raster images
b. In this mode, you can create Vector images
c. Only the Shape Tools work in this mode
d. Both b and c(ANS)



Which of the given options refers an Action Safe Margin
Which of the given options refers an Action Safe Margin
Refer to the given image.
Which of the given options refers an Action Safe Margin?
a. A (ans)
b. B
c. Both a and b
d. None of the above


State whether True or False:
You cannot transform the background layer.
a. True(ANS)
b. False


Which of the given file formats works with the Image Processor?
a. PSD
b. JPEG
c. Camera raw files
d. All of the above(ANS)




Which option, when in a checked state, displays a message whenever you open an untagged document
Which option, when in a checked state, displays a message whenever you open an untagged document
Refer to the given image.
Which option, when in a checked state, displays a message whenever you open an untagged document?
a. A
b. B
c. C
d. None of the above(ANS)


Which keyboard shortcut (windows) will you choose for Auto Leading?
a. Control + Shift + A(ANS)
b. Control + Alt + A
c. Control + Shift + Alt + A
d. None of the above


Which of the following features is/are supported by the EPS file format?
a. It supports the Grayscale and Bitmap color modes
b. It supports the Support Alpha Channels
c. It supports the Clipping paths
d. Both a and c(ANS)


Which Command lets you free memory, used by the Undo command, the History Palette, or the Clipboard?
a. Paths(ANS)
b. Place
c. Purge
d. Place scale marker


Which file format saves a document of any size as well as preserves all the Photoshop features?
a. Photoshop Raw(ANS)
b. PSD
c. TIFF
d. All of the above