1. Which of the following will hash a string/password to its md5 equivalent?Answers:
• md5()
• wp_generate_password()
• wp_generate_md5()
• password_md5()
2. 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).Answers:
• my_admin()
• view_admin()
• is_admin()
• root_admin()
3. Which of the following functions are used to add administration menu item in WordPress ?Answers:
• add_menu_page();
• add_admin_item();
• add_admin_page();
• add_admin_option();
4. Which of the following WordPress Multisite functions allows for getting content from one blog and display it on another?Answers:
• switch_blog()
• switch_to_blog()
• restore_current_blog()
• restore_to_current_blog()
5. What is the BEST way to get last inserted row ID from Wordpress database ?Answers:
• 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;
6. Which of the follow is a Wordpress alternatives for Ruby on Rails?Answers:
• Refinery
• Typof
• Symenta
• Rubyalt
7. Which of the following code snippets can be used to create custom POST status in wordpress 3.0 +?Answers:
• register_new_post()
• register_post_status()
• add_new_post_status()
• modify_post_status()
8. How can the upload media panel be included in a Wordpress template/plugin?Answers:
• By using function wp_enqueue_script('media-upload')
• By using function wp_add_media( );
• By using function wp_enqueue_script('upload');
• By using function wp_add_script('media-upload');
9. What are the database privileges that are required for WordPress?Answers:
• insert, delete, update, drop and alter
• select, insert, delete, update, create, drop and alter
• insert, delete, update, create, drop and alter
• insert and delete
10. Which of the following is an example of a WordPress plugin that provides multilingual capabilities?Answers:
• WP Super Cache
• qTranslate
• BuddyPress
• Hotfix
11. Which of the following functions can be used to create a WordPress page?Answers:
• wp_insert_post()
• wp_insert_page()
• wp_create_post()
• wp_create_page()
12. Which function is used to display the name of current page in wordpress?Answers:
• get_the_title()
• content_title()
• page_name()
• post_name()
13. Which of the following methods can be used to make permalinks SEO friendly?Answers:
• Updating the database.
• Changing the source code.
• Configuring the feature in the config file.
• Configuring the feature in the admin settings.
14. User Level 7 converts to _________?Answers:
• Contributo
• Autho
• Edito
• Subscribe
• Administrato
15. Which of the following is the correct way to add custom excerpts length identifiers in Wordpress?Answers:
• By adding excerpt_length filter in function.php
• Can’t declare custom excerpts in wordpress
• Custom exceprts are already available in wordpress
• Using the_excerpt(‘long’); or the_excerpt(‘short’)
16. Which of the following is the correct sequence of steps to adapt a WordPress plugin to a multisite?Answers:
• 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
• 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
17. On which of the following databases can WordPress be installed by default?Answers:
• MySQL
• Oracle Database
• Microsoft SQL Server
• PostgreSQL
18. Which of the following actions must be performed to import data from wordpress.com?Answers:
• 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.
19. Meta tags can be added to WordPress pages by ________________.Answers:
• using plug-ins
• adding them to the header.php file
• updating the database
• a and
• and c
20. Which of the following codes will return the current plugin directory in WordPress?Answers:
• <?php plugin_basename($file); ?>
• <?php plugin_basename('url'); ?>
• <?php bloginfo_plugin('url'); ?>
• <?php content_plugin_url( $path ); ?>
21. WordPress's requirements are modest. At minimum, which of the following standards should your server support for WordPress 3.1?Answers:
• 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
• 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
22. Which of the following will give the option to add inline Ajax for comment posting?Answers:
• Enabling Ajax in the wp-config.php file
• Activating Ajax from the admin settings of WordPress
• Using the Ajax Comment Posting plugin
• Wordpress doesn't support inline Ajax.
23. What is the limitation to the depth of your categories?Answers:
• 10 levels
• 20 levels
• No limit levels
24. Can the contents of the wp-content folder be moved or renamed without changing any settings?Answers:
• Yes
• No
25. Which of the following code snippets best protects a system from SQL injections?Answers:
• sql_real_escape_strong()
• mysql_real_escape()
• mysql_real_escape_string()
• mysql_not_real_delete_string()
26. Which of the following role levels has the highest privilege?Answers:
• Level_0
• Level_10
• Depends on your settings.
• Every role level has the same privilege.
27. How can the Home link be disable from the Wordpress top nav?Answers:
• 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' );
• wp_nav_menu( array('menu' => 'news', 'show_home' => false))
• Can not disable the default Home link from wordpress top nav
28. Which of the following is the correct way to retrieve a featured image from a post?Answers:
• <?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'); ?>
• <?php echo get_post_thumbnail($page->ID, 'thumbnail'); ?>
29. Which of the following will correctly load localized (translated) text for a WordPress plugin?Answers:
• 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);
• function load_theme_textdomain('tutsplus', $lang_dir); { $lang_dir = get_template_directory() . '/lang'); custom_theme_setup(); } add_action('after_setup_theme', 'custom_theme_setup');
30. Image size limits can be set _______________.Answers:
• directly in the posts
• in the wp-imageresize plug-in
• in the admin settings
• a and
31. How can a user be found through its meta data?Answers:
• User can not be retrieved through its meta data
• get_user_by_metadata($metaid,$metavalue)
• get_user($args)
• get_users($args)
32. 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?Answers:
• POST
• GET
• SESSION or COOKIE
• POST or GET
33. Which of the following will call the WordPress media uploader form element?Answers:
• <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">
• <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">
34. 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];Answers:
• $firstTag[‘slug’];
• $firstTag->slug
• $firstTag.slug
• $firstTag[0][‘slug’]
35. Which of the following code snippets is the correct way to get content from Tinymce via javascript ?Answers:
• document.getElementById('content')
• tinymce.activeEditor.getContent();
• tinymce.element.getContent();
• document.getElement('tinymce_content')
36. Is super cache a built-in plugin of WordPress?Answers:
• Yes
• No
37. A possible way to allow the display of several authors' names on one post is to ______Answers:
• update the database
• change the admin settings
• change the config files
• use a plug-in
38. In which way MD5 hash does wordpress stores and represents?Answers:
• In Hex string
• In Base64 string
• in raw data file
• text file
39. What is the first action you need to take for enabling WordPress MU feature?Answers:
• Enable WordPress MU feature on admin panel
• Enable Network feature
• Add this code to wp-config.php file: define( 'WP_ALLOW_MULTISITE', true );
40. What is Automated Testing in Wordpress?Answers:
• Automated testing is running test cases where manual intervention is not required to run each one.
• 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.
41. 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 permalinks, you can't assign them the same slug.Answers:
• adding the following line to your wp-config.php file: define('WP_POST_REVISIONS', 3);
• using a plugin
• changing a setting on admin panel
42. 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-settings.php on line 647"Answers:
• define(E_DEPRECATED, false);
• error_reporting(E_ALL ^ E_DEPRECATED);
• define(E_NOTICE, false);
• error_reporting(WP_DEBUG, true)
43. One possible way to collect realtime statistics about traffic on a WordPress site is:Answers:
• using a built-in tool
• using a plugin
• using a widget
• Traffic statistics cannot be collected on a WordPress site.
44. _____________ 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.Answers:
• Contributo
• Autho
• Edito
• Subscribe
• Administrato
45. How can an <li> tag's class and ID attributes be removed from menu items and page lists?Answers:
• 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() : ''; }
• 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
46. ____________ 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 categories, and they can moderate comments. Editors and administrators are also the only users allowed to read private posts and pages.Answers:
• Contributor
• Author
• Editor
• Subscriber
• Administrator
47. Which of the following will show the most recent post (by date) from a custom taxonomy?Answers:
• 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)
48. What are the correct steps in wordpress plugin development:Answers:
• 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
• 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
49. 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});
}
});
});
Answers:• Removes positions from data base based on the user input
• Saves sortable positions to data base based on the user input
• Adding new sortable positions from another data base
• Sorting out existing positions without updating the data base with the new user inputs
50. Which of the following is the correct way to assign a category to a Wordpress post?Answers:
• wp_set_post_categories($postId,$categories)
• wp_set_category($catId,$postId)
• By XML-RPC call to wpc.newPost
• This is not possible
51. Conditional tags can be used to _______________________.Answers:
• get all comments from one post
• get all posts from one category
• change the content to be displayed
• None of the above: conditional tags are not available in WordPress.
52. Which of the following commands can change the ownership of WordPress directory to www-data (for Apache)?Answers:
• sudo chown -Rf www-data *
• chown -Rf www-data *
• sudo crown -Df www-data *
• Alldo chown -Rf www-data *
53. How can a custom content filter be added?Answers:
• By using add_action('the_content','my_custom_filter')
• 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')
54. How can a post ID be retrieved from the permalink?Answers:
• 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)
55. 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?Answers:
• 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(); } }
• 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(); } }
56. How can a WordPress template be integrated inside a codeigniter framework using WordPress functions like wp_header,wp_footer,wp_sidebar?Answers:
• Include the file wp-blog-header.php from WordPress installation directory to codeigniters index.php and create template inside codeigniter's view.
• 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.
57. What is the first action you need to take for enabling the WordPress multisite (MS) feature?Answers:
• 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 );
58. Which of the functions below is required to create a new taxonomy?Answers:
• add_taxonomy
• register_taxonomy
• create_taxonomy
59. Which of the following actions cannot be hooked in with add_submenu_page() function?Answers:
• admin_submenu
• admin_menu
• user_admin_menu
• network_admin_menu
60. Which of the following is the correct way to filter the content for a few posts?Answers:
• By using apply_filters(filter,postId)
• This is not possible in wordpress
• Can create filter for posts in a specific wordpress category
• Passing arguments into the_content()
61. What is the function of add_filter in WordPress?Answers:
• 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.
62. Which of the following code snippets will create plugins back-end page without showing it as menu item?Answers:
• add_submenu_page with parent slug = null
• add_menu_page with parent slug = null
• add_submenu_page without parent slug = null
• add_menu_page without parent slug = null
63. ____________ can manage their own profiles, but can do virtually nothing else in the administration area.Answers:
• Contributor
• Author
• Editor
• Subscriber
• Administrator
64. 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't assign them the same slug.Answers:
• Yes
• No
65. Which of the following is the correct way to get WordPress Post ID from the Post title?Answers:
• $page = get_page_title( 'About' ); wp_pages( 'exclude=' . $page->ID );
• $page = get_page_by_title( 'Home' ); $page_id = $page->ID;
• $page = get_page_by_title( 'About' ); wp_pages( 'exclude=' . $page->ID );
• None of the above
66. Which of the following will correctly add custom mod rewrite rules to .htaccess from a WordPress plugin?Answers:
• $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"]; } }
• $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"]; } }
67. Which of the following is the correct code to get an array of every image uploaded to a particular post?Answers:
• $images =& get_children( 'post_type=attachment&post_mime_type=image&post_parent=10' );
• $images = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
• $images = get_post(7, ARRAY_A);
• It cannot be done
68. Which of the following will echo the base URL of a WordPress site?Answers:
• <?php echo get_bloginfo('base_url') ?>
• <?php echo get_bloginfo('url') ?>
• <?php echo get_bloginfo('site_url') ?>
• <?php echo get_website_url() ?>
69. Which of the following functions are used when adding CSS and jQuery codes on a WordPress plugin?Answers:
• wp_register_style
• wp_enqueue_style
• wp_enqueue_script
• None of these.
70. In order to display a widget, the user must _________________.Answers:
• set the "show property" of the desired widget to "true"
• drag the desired widget to the side ba
• add the desired widget to the post
• change the source code
Question: Which of the following actions
performed before upgrading WordPress?
A) Back up the site (Answer)
B) Disable plugins (Answer)
C) Enable FTP on the site
D) All of the above
A) Back up the site (Answer)
B) Disable plugins (Answer)
C) Enable FTP on the site
D) All of the above
Question: Which of the following methods can be
used to eliminate spam?
A) Using the “wp-captcha-free” plug-in
B) Using the “askimet” plug-in (Answer)
C) Using a widget
D) None of the above
A) Using the “wp-captcha-free” plug-in
B) Using the “askimet” plug-in (Answer)
C) Using a widget
D) None of the above
Question: Which of the following needs to be
edited in order to creat the function for the shortcode?
A) Index.php
B) functions.php (Answer)
C) post.php
D) page.php
A) Index.php
B) functions.php (Answer)
C) post.php
D) page.php
Question: A possible way to collect real-time
statistics about traffic to a WordPress site is to
a) use a built-in tool
b) use a plug-in (Answer)
c) use a widget
d) None of the above
a) use a built-in tool
b) use a plug-in (Answer)
c) use a widget
d) None of the above
Question: In order to to display a widget, the
user must _____
a) Set he “Show Property” of the desired widget to “true”
b) Drag the desired widget of the side bar (answer)
c) Add the Desired widget to the post
d) Change the source code
a) Set he “Show Property” of the desired widget to “true”
b) Drag the desired widget of the side bar (answer)
c) Add the Desired widget to the post
d) Change the source code
Question: Image size can be set __________
a) Directly in the post’s
b) in the wp-imageresize plug-in
c) in the admin settings (Answer)
d) a and b
a) Directly in the post’s
b) in the wp-imageresize plug-in
c) in the admin settings (Answer)
d) a and b
Question: Which of the following blog site can
be imported into wordpress?
a) Joomla (Answer)
B) Yahoo Blog (Answer)
c) Drupal (Answer)
d) Blogspot
e) All of the above
a) Joomla (Answer)
B) Yahoo Blog (Answer)
c) Drupal (Answer)
d) Blogspot
e) All of the above
Question: Which of the following methods can be
used to display the time in every post?
A) Changing the config file
B) Setting the feature in the admin settings
C) Changing the index.php file (answer)
D) Updating the database
A) Changing the config file
B) Setting the feature in the admin settings
C) Changing the index.php file (answer)
D) Updating the database
Question : Which of the following methods can
be used to make permalinksSEO friendly?
A) Updating the database
B) Changing the source code
C) Configuring the features in the config file
D) Configuring the features in the admin settings (Answer)
A) Updating the database
B) Changing the source code
C) Configuring the features in the config file
D) Configuring the features in the admin settings (Answer)
Question: Where can Google Adsense be
integrated into a WordPress blog?
A) Only in the sidebar (Answer)
B) Only in the header
C) Anywhere
d) Only in the content
A) Only in the sidebar (Answer)
B) Only in the header
C) Anywhere
d) Only in the content
Question: Which of the following are true about
Template Tags?
A) The template tag comprises of the three tag (PHP code tag, WordPress function, optional Parameters)
B) A template tag is code that instruct WordPress to do or get somethings (Answer)
C) There are only two types of parameters that are supported by wordpress template tag (String, Boolean)
D) All of the above
A) The template tag comprises of the three tag (PHP code tag, WordPress function, optional Parameters)
B) A template tag is code that instruct WordPress to do or get somethings (Answer)
C) There are only two types of parameters that are supported by wordpress template tag (String, Boolean)
D) All of the above
Question: Which of the following files are
mandatory for a WordPress theme?
A) Index.php (Answer)
B) Style.css (Answer)
C) functions.php
D) page.php
A) Index.php (Answer)
B) Style.css (Answer)
C) functions.php
D) page.php
Question: Contributor may change the timestamp
on a post?
A) True
B) False (Answer)
A) True
B) False (Answer)
Question: “Shortcodes” can be defined in
WordPress.
A) True (Ture)
B) False
A) True (Ture)
B) False
Question: Which of the following statements are
true regarding widgets and plug-in in WordPress?
A) Plug-in is a software used to add function to blog (Answer)
B) Widget is an object derived from a plug-in and can be added to the sidebar (Answer)
C) Widgets are alwasy plugins (Answer)
D) All of the above
A) Plug-in is a software used to add function to blog (Answer)
B) Widget is an object derived from a plug-in and can be added to the sidebar (Answer)
C) Widgets are alwasy plugins (Answer)
D) All of the above
Question: A plug-in must be used in order to
allow users to post flast or multimedia files.
A) True (Answer)
B) Flase
A) True (Answer)
B) Flase
Question: The “function_exist()” function can
be used to check whether a plug-in activated or not?
A) True (Answer)
B) False
A) True (Answer)
B) False
Question: To manually make the sidebar widget
ready, the user must___
A) modify the sidebar.php file (Or this)
B) Enable it in the admin settings (Answer)
C) Change the index.php
A) modify the sidebar.php file (Or this)
B) Enable it in the admin settings (Answer)
C) Change the index.php
Question: A theme’s source code must be changed
manually in order to customize the admin login page
A) True
B) False (Answer)
A) True
B) False (Answer)
Question: Which of the following tasks must be
performed to add a favicon icon to your site?
A) Upload a favicon icon to your side
B) Add a favicon link to the theme’s header file or update the exising favicon icon link to the new one (Answer)
C) Change the favicon icon in admin settings
D) The favicon icon can not be changed
A) Upload a favicon icon to your side
B) Add a favicon link to the theme’s header file or update the exising favicon icon link to the new one (Answer)
C) Change the favicon icon in admin settings
D) The favicon icon can not be changed
Question: How can a WordPress blog theme be
used to display content in two coloumns?
A) By changing the theme options to two columns in admin settings
B) By changing the layout in the config file (Answer)
C) WordPress theme cannot be customized to display posts in two columns
D) By using two-columns theme (Answer)
A) By changing the theme options to two columns in admin settings
B) By changing the layout in the config file (Answer)
C) WordPress theme cannot be customized to display posts in two columns
D) By using two-columns theme (Answer)
Question: Which of the following method helps
you put HTML code into a post, and get it to format the way you expect?
A) Replacing special characters with corresponding html codes or character codes
B) Using the <codegt; <pre=”” c)=”” tag=”” the=”” using=””>tag
D) None of the above : WordPres auto-replaces special character with substituted characters
A) Replacing special characters with corresponding html codes or character codes
B) Using the <codegt; <pre=”” c)=”” tag=”” the=”” using=””>tag
D) None of the above : WordPres auto-replaces special character with substituted characters
Question: Which of the following options are
true regarding Plug-ins in WorpPress?
A) Plug-ins can be used to eliminate spam (Answer)
B) Plug-ins can be used to integrate a WordPress blog with a forum (Answer)
C) Plug-ins can be used to integrate Twitter with a WordPress blog (Answer)
D) Plug-ins can be used to embed javascript in a WordPress blog
E) All of the above
A) Plug-ins can be used to eliminate spam (Answer)
B) Plug-ins can be used to integrate a WordPress blog with a forum (Answer)
C) Plug-ins can be used to integrate Twitter with a WordPress blog (Answer)
D) Plug-ins can be used to embed javascript in a WordPress blog
E) All of the above
Question: How can a logo be placed on a
WordPress header?
A) Manually add the logo to the source code (answer)
B) Upload a new logo in admin settings
C) Update the logo path in the config file
A) Manually add the logo to the source code (answer)
B) Upload a new logo in admin settings
C) Update the logo path in the config file
Question: Which of the following is a good
reason to delete the admin account?
A) Because other users know this admin name (Answer)
B) Because it is not necessary
C) To enhance performance
D) TO enhance security (Answer)
A) Because other users know this admin name (Answer)
B) Because it is not necessary
C) To enhance performance
D) TO enhance security (Answer)
Question: Which of the following keywords can be defined as “Those useful ‘one-click‘ buttons that insert code for you?
A) Quicktags (Answer)
B) Shotcodes
C) Permalinks
D) Excerpts
A) Quicktags (Answer)
B) Shotcodes
C) Permalinks
D) Excerpts
Question: Which of the following methods can be
used to add Pagination to a WordPress site?
A) Using a widget
B) Setting the feature in the admin settings
C) Using a plug-in (Answer)
D) Pagination cannot be added to WordPress site
A) Using a widget
B) Setting the feature in the admin settings
C) Using a plug-in (Answer)
D) Pagination cannot be added to WordPress site
Question: Which of the following methods can be
used to enable posting via e-mail?
A) Installing the wp-emailpost plug-in
B) Configuring the feature in admin settings (Answer)
C) Using a widget
D) This feature is not available in WordPress
A) Installing the wp-emailpost plug-in
B) Configuring the feature in admin settings (Answer)
C) Using a widget
D) This feature is not available in WordPress
Question: Which of the following are true
regarding Pages in WordPress?
A) Pages are listed in reverse chronological order
B) Pages can be static
C) Pages can be found in Categories
D) Page are not associated with a date/time like post
A) Pages are listed in reverse chronological order
B) Pages can be static
C) Pages can be found in Categories
D) Page are not associated with a date/time like post
Question: State whether True or False
Wordpress supports all the following:
1. Create new posts
2. Edit Posts
3. Schedule post for future publishing
Wordpress supports all the following:
1. Create new posts
2. Edit Posts
3. Schedule post for future publishing
A) True
B) False
B) False
Question: Which of the following role level has
the highest privilege?
A) Level_0
B) Level_10 (Answer)
C) Depends on your settings
D) Every role has the same privilege
A) Level_0
B) Level_10 (Answer)
C) Depends on your settings
D) Every role has the same privilege
Question: A possible way to add additional
information to a wordpress blog post is to ____
A) Use the wp-addinfor plug-in
B) Use custom fields
C) Use a widget
A) Use the wp-addinfor plug-in
B) Use custom fields
C) Use a widget
Question: Which of the following arguments are
accepted in shortcodes handler function while using shortcode API?
A) $atts
B) $Content
C) $code
D) All of the above (Answer)
A) $atts
B) $Content
C) $code
D) All of the above (Answer)
Question:A plug-in must be used in order to
allow users to post flash of multimedia files.
a)True(Answer)
b)False
a)True(Answer)
b)False
Question: You want to schedule a backup of your
site database but do not have enough permission to access your host. of the
following choices can help you perform this task?
a)se phpMyAdmin
b)Install “wp database backup” plug-in(Answer)
3)Use cron job to schedule.
4)Cannot schedule
a)se phpMyAdmin
b)Install “wp database backup” plug-in(Answer)
3)Use cron job to schedule.
4)Cannot schedule
Question: Using ——— is a good way to ensure
that a WordPress site is indexed by search engines.
a)a sitemap
b)robot.txt
c)a widge
a)a sitemap
b)robot.txt
c)a widge
Odesk wordpress test ans,,,part 03
1. Using ——— is a good way to ensure that a WordPress site is indexed by search engines.
a) a sitemap
b) robot.txt(Answer)
c) a widge
2.You want to schedule a backup of your site database but do not have enough permission to access your host. of the following choices can help you perform this task?
a)se phpMyAdmin
b)Install “wp database backup” plug-in(Answer)
3)Use cron job to schedule.
4)Cannot schedule
3. A plug-in must be used in order to allow users to post flash of multimedia files.
a)True(Answer)
b)False
4. A possible way to add additional information to a word press blog post is to ____
A) Use the wp-addinfor plug-in
B) Use custom fields
C) Use a widget
5. State whether True or False
WordPress supports all the following:
1. Create new posts
2. Edit Posts
3. Schedule post for future publishing
A) True
B) False
6. A theme’s source code must be changed manually in order to customize the admin login page
A) True
B) False (Answer)
7. To manually make the sidebar widget ready, the user must___
A) modify the sidebar.php file (Or this)
B) Enable it in the admin settings (Answer)
C) Change the index.php
8. The “function_exist()” function can be used to check whether a plug-in activated or not?
A) True (Answer)
B) False
9. A plug-in must be used in order to allow users to post flast or multimedia files.
A) True (Answer)
B) Flase
10. “Shortcodes” can be defined in WordPress.
A) True (Ture)
B) False
11. Contributor may change the timestamp on a post?
A) True
B) False (Answer)
12. Image size can be set __________
a) Directly in the post’s
b) in the wp-imageresize plug-in
c) in the admin settings (Answer)
d) a and b
13. In order to to display a widget, the user must _____
a) Set he “Show Property” of the desired widget to “true”
b) Drag the desired widget of the side bar (answer)
c) Add the Desired widget to the post
d) Change the source code
14. A possible way to collect real-time statistics about traffic to a WordPress site is to
a) use a built-in tool
b) use a plug-in (Answer)
c) use a widget
d) None of the above
end,,,,,,,,,,,,,,,,,,
a) a sitemap
b) robot.txt(Answer)
c) a widge
2.You want to schedule a backup of your site database but do not have enough permission to access your host. of the following choices can help you perform this task?
a)se phpMyAdmin
b)Install “wp database backup” plug-in(Answer)
3)Use cron job to schedule.
4)Cannot schedule
3. A plug-in must be used in order to allow users to post flash of multimedia files.
a)True(Answer)
b)False
4. A possible way to add additional information to a word press blog post is to ____
A) Use the wp-addinfor plug-in
B) Use custom fields
C) Use a widget
5. State whether True or False
WordPress supports all the following:
1. Create new posts
2. Edit Posts
3. Schedule post for future publishing
A) True
B) False
6. A theme’s source code must be changed manually in order to customize the admin login page
A) True
B) False (Answer)
7. To manually make the sidebar widget ready, the user must___
A) modify the sidebar.php file (Or this)
B) Enable it in the admin settings (Answer)
C) Change the index.php
8. The “function_exist()” function can be used to check whether a plug-in activated or not?
A) True (Answer)
B) False
9. A plug-in must be used in order to allow users to post flast or multimedia files.
A) True (Answer)
B) Flase
10. “Shortcodes” can be defined in WordPress.
A) True (Ture)
B) False
11. Contributor may change the timestamp on a post?
A) True
B) False (Answer)
12. Image size can be set __________
a) Directly in the post’s
b) in the wp-imageresize plug-in
c) in the admin settings (Answer)
d) a and b
13. In order to to display a widget, the user must _____
a) Set he “Show Property” of the desired widget to “true”
b) Drag the desired widget of the side bar (answer)
c) Add the Desired widget to the post
d) Change the source code
14. A possible way to collect real-time statistics about traffic to a WordPress site is to
a) use a built-in tool
b) use a plug-in (Answer)
c) use a widget
d) None of the above
end,,,,,,,,,,,,,,,,,,
odesk wordpress test part 02
01. Where can Google Adsense be integrated into a WordPress blog?
A) Only in the sidebar (Answer)
B) Only in the header
C) Anywhere
d) Only in the content
02. Where can Google Adsensebe integrated into a WordPress blog?
a. Only in the sidebar.
b. Only in the header
Odesk test answer c. Anywhere.
d. Only in the content.
03. Where can Google Adsensebe integrated into a WordPress blog?
c. Anywhere. ( answer)
04. When are Actions triggered in the WordPress.org version 2.5.1?
a. When a post is published (answer)
b. When a theme is changed(answer)
d. When a new user registers (answer)
05. When are Actions triggered in the WordPress.org version 2.5.1?
Odesk test answer a. When a post is published
Odesk test answer b. When a theme is changed
Odesk test answer c. When a page is displayed
Odesk test answer d. When a new user registers
e. When a month changes
06. What is the function of widgets in WordPress?
c. It is used to add additional components to the site. (Answer)
07. What is the amount of free space available in a free WordPress.com blog, for storing uploaded files and images?
b. 3000 Megabytes (Answer )
07. What is Domain Mapping in the case of WordPress.com?
c. It is a method by which you can replace the ‘WordPress.com’ name with your own domain name via paid upgrade. (answer)
08. What is the main functionality of Akismet plug-in?
b.It helps in spam control.(answer)
09. What is the function of Blog Stats in WordPress.com?
c. It provides the list of posts which have received the most traffic. (answer)
10. What are OpenIDs in the case of WordPress.com?
c. These are registered users blog names which can be used to login to different sites. ( answer )
11. What is the purpose of the ‘Meta’ widget in WordPress?
a. To show Meta-Tag information about the website ( answer)
12. What is the default path for the theme files in the WordPress.org version 2.5.1 deployment kit?
d. /wp-content/themes(Answer)
13. What is the difference between include_once and require_once with regard to handling failure?
a. include_once just produces a warning and require_once produces a fatal error (Answer)
14. What is the main purpose of the Password Protect feature in the WordPress.org version 2.5.1?
d. To protect posts from being displayed to users who are not registered(Answer)
15. What is Blogroll in WordPress?
b. It is a collection of links to various blogs or news sites. (Answer)
16. What is the default path for the theme files in the WordPress.org version 2.5.1 deployment kit?
a. /wp_content/themes
b. /themes
c. /wordpress/themes
Odesk test answer d. /wp-content/themes
17. What is the difference between include_once and require_once with regard to handling failure?
Odesk test answer a. include_once just produces a warning and require_once produces a fatal error
b.include_once produces a fatal error and require_once just produces a warning include_once and require_once cannot handle failure
18. What is the main purpose of the Password Protect feature in the WordPress.org version 2.5.1?
a. To protect the style sheet from editing
b. To protect moderation of posts
c. To protect insertion of posts
Odesk test answer d. To protect posts from being displayed to users who are not registered
19. What is Blogroll in WordPress?
a. It is the categorization of blogs according to tags.
Odesk test answer b. It is a collection of links to various blogs or news sites.
c. It archives the blogs according to the date of posting.
d. It displays the long blogs using paging to avoid scrolling.
e. None of these
20. What is the function of widgets in WordPress?
a. It is used to display the site in proper design.
b. It is used to create a sitemap of the site.
Odesk test answer c. It is used to add additional components to the site.
d. It helps in easy and fast searching.
21. What is the amount of free space available in a free WordPress.com blog, for storing uploaded files and images?
a. 2000 Megabytes
Odesk test answer b. 3000 Megabytes
c. 1000 Megabytes
d. Unlimited storage
22. What kind of information do cookies store in WordPress?
Odesk test answer a. Information about the logged in user
b. Information about Comments
c. Information about New Posts
d. Information about Pages visited recently
23. What is Domain Mapping in the case of WordPress.com?
a. It is a method by which you can increase the domain reach of your free WordPress.com blog by a paid upgrade.
b. It is a method by which you can apply Domain Maps of your WordPress blog by a paid upgrade.
Odesk test answer c. It is a method by which you can replace the ‘WordPress.com’ name with your own domain name via paid upgrade.
d. None of these
24 . What is the main functionality of Akismet plug-in?
a.It is used for spell check.
Odesk test answer b.It helps in spam control.
c.It creates themes.
d.It is used for generating automated posts.
25. What is the function of Blog Stats in WordPress.com?
a. It provides the total number of page views of the blog.
b. It provides the list of the links (referral URLs) from which the people have visited your blog.
Odesk test answer c. It provides the list of posts which have received the most traffic.
d. It provides the ranking of the posts in terms of page views.
26. What are OpenIDs in the case of WordPress.com?
a. These are free ID’s given by WordPress as open invitations.
b. These are IDs given for free login to WordPress.
Odesk test answer c. These are registered users blog names which can be used to login to different sites.
d. None of these
27. What is the purpose of the ‘Meta’ widget in WordPress?
answer a. To show Meta-Tag information about the website
b. To show the ‘Log In’ and ‘Logout’ menus
c. To show the ‘Admin’ page link
d. To handle RSS Feeds
A) Only in the sidebar (Answer)
B) Only in the header
C) Anywhere
d) Only in the content
02. Where can Google Adsensebe integrated into a WordPress blog?
a. Only in the sidebar.
b. Only in the header
Odesk test answer c. Anywhere.
d. Only in the content.
03. Where can Google Adsensebe integrated into a WordPress blog?
c. Anywhere. ( answer)
04. When are Actions triggered in the WordPress.org version 2.5.1?
a. When a post is published (answer)
b. When a theme is changed(answer)
d. When a new user registers (answer)
05. When are Actions triggered in the WordPress.org version 2.5.1?
Odesk test answer a. When a post is published
Odesk test answer b. When a theme is changed
Odesk test answer c. When a page is displayed
Odesk test answer d. When a new user registers
e. When a month changes
06. What is the function of widgets in WordPress?
c. It is used to add additional components to the site. (Answer)
07. What is the amount of free space available in a free WordPress.com blog, for storing uploaded files and images?
b. 3000 Megabytes (Answer )
07. What is Domain Mapping in the case of WordPress.com?
c. It is a method by which you can replace the ‘WordPress.com’ name with your own domain name via paid upgrade. (answer)
08. What is the main functionality of Akismet plug-in?
b.It helps in spam control.(answer)
09. What is the function of Blog Stats in WordPress.com?
c. It provides the list of posts which have received the most traffic. (answer)
10. What are OpenIDs in the case of WordPress.com?
c. These are registered users blog names which can be used to login to different sites. ( answer )
11. What is the purpose of the ‘Meta’ widget in WordPress?
a. To show Meta-Tag information about the website ( answer)
12. What is the default path for the theme files in the WordPress.org version 2.5.1 deployment kit?
d. /wp-content/themes(Answer)
13. What is the difference between include_once and require_once with regard to handling failure?
a. include_once just produces a warning and require_once produces a fatal error (Answer)
14. What is the main purpose of the Password Protect feature in the WordPress.org version 2.5.1?
d. To protect posts from being displayed to users who are not registered(Answer)
15. What is Blogroll in WordPress?
b. It is a collection of links to various blogs or news sites. (Answer)
16. What is the default path for the theme files in the WordPress.org version 2.5.1 deployment kit?
a. /wp_content/themes
b. /themes
c. /wordpress/themes
Odesk test answer d. /wp-content/themes
17. What is the difference between include_once and require_once with regard to handling failure?
Odesk test answer a. include_once just produces a warning and require_once produces a fatal error
b.include_once produces a fatal error and require_once just produces a warning include_once and require_once cannot handle failure
18. What is the main purpose of the Password Protect feature in the WordPress.org version 2.5.1?
a. To protect the style sheet from editing
b. To protect moderation of posts
c. To protect insertion of posts
Odesk test answer d. To protect posts from being displayed to users who are not registered
19. What is Blogroll in WordPress?
a. It is the categorization of blogs according to tags.
Odesk test answer b. It is a collection of links to various blogs or news sites.
c. It archives the blogs according to the date of posting.
d. It displays the long blogs using paging to avoid scrolling.
e. None of these
20. What is the function of widgets in WordPress?
a. It is used to display the site in proper design.
b. It is used to create a sitemap of the site.
Odesk test answer c. It is used to add additional components to the site.
d. It helps in easy and fast searching.
21. What is the amount of free space available in a free WordPress.com blog, for storing uploaded files and images?
a. 2000 Megabytes
Odesk test answer b. 3000 Megabytes
c. 1000 Megabytes
d. Unlimited storage
22. What kind of information do cookies store in WordPress?
Odesk test answer a. Information about the logged in user
b. Information about Comments
c. Information about New Posts
d. Information about Pages visited recently
23. What is Domain Mapping in the case of WordPress.com?
a. It is a method by which you can increase the domain reach of your free WordPress.com blog by a paid upgrade.
b. It is a method by which you can apply Domain Maps of your WordPress blog by a paid upgrade.
Odesk test answer c. It is a method by which you can replace the ‘WordPress.com’ name with your own domain name via paid upgrade.
d. None of these
24 . What is the main functionality of Akismet plug-in?
a.It is used for spell check.
Odesk test answer b.It helps in spam control.
c.It creates themes.
d.It is used for generating automated posts.
25. What is the function of Blog Stats in WordPress.com?
a. It provides the total number of page views of the blog.
b. It provides the list of the links (referral URLs) from which the people have visited your blog.
Odesk test answer c. It provides the list of posts which have received the most traffic.
d. It provides the ranking of the posts in terms of page views.
26. What are OpenIDs in the case of WordPress.com?
a. These are free ID’s given by WordPress as open invitations.
b. These are IDs given for free login to WordPress.
Odesk test answer c. These are registered users blog names which can be used to login to different sites.
d. None of these
27. What is the purpose of the ‘Meta’ widget in WordPress?
answer a. To show Meta-Tag information about the website
b. To show the ‘Log In’ and ‘Logout’ menus
c. To show the ‘Admin’ page link
d. To handle RSS Feeds
odesk wordpress test part 01
hi,friendz ,,,today i share with you odesk test answer,,,,,,,
01. Which of the following are the differences between WordPress.org and WordPress.com?
a. In WordPress.org, you can upload themes and plugins but in WordPress.com, you cannot upload themes and plugins. ( answer)
d. In WordPress.org, you have to manually upgrade the software and take backups whereas in WordPress.com, automatic software upgrades and backups are available.(answer)
02. Which type of media files can be uploaded to WordPress.com?
answer a. .wma
answer b. .jpg
03. Which of the following methods can be used to add Pagination to a WordPress site?
A) Using a widget
B) Setting the feature in the admin settings
C) Using a plug-in (Answer)
D) Pagination cannot be added to WordPress site
04. Which of the following constitutes ‘Permalinks’ structures in the WordPress.org version 2.5.1?
c. Numeric ( answer)
e. Custom Structure( answer)
05. Which of the following methods can be used to enable posting via e-mail?
A) Installing the wp-emailpost plug-in
B) Configuring the feature in admin settings (Answer)
C) Using a widget
D) This feature is not available in WordPress
06. Which of the following blog site can be imported into wordpress?
a) Joomla (Answer)
B) Yahoo Blog (Answer)
c) Drupal (Answer)
d) Blogspot
e) All of the above
07. Which of the following methods can be used to display the time in every post?
A) Changing the config file
B) Setting the feature in the admin settings
C) Changing the index.php file (answer)
D) Updating the database
08. Which of the following methods can be used to make permalinksSEO friendly?
A) Updating the database
B) Changing the source code
C) Configuring the features in the config file
D) Configuring the features in the admin settings (Answer)
09. Which of the following are true about Template Tags?
A) The template tag comprises of the three tag (PHP code tag, WordPress function, optional Parameters)
B) A template tag is code that instruct WordPress to do or get somethings (Answer)
C) There are only two types of parameters that are supported by wordpress template tag (String, Boolean)
D) All of the above
10. Which of the following constitutes ‘Permalinks’ structures in the WordPress.org version 2.5.1?
a. Day and name
b. Month and name
Odesk test answer c. Numeric
d. Alphanumeric
Odesk test answer e. Custom Structure
11. Which of the following WordPress.org version 2.5.1 components or modules is not activated by default?
a. Akismet
b. Avatar Display
c. Comments Moderation
Odesk test answer d. All of these are activated by default
12. Which of the following User Roles are defined in the WordPress.org version 2.5.1?
a.Subscriber
b.Administrator
c.Editor
Odesk test answer d.Moderato
e.Contributor
13. Which of the following are the differences between WordPress.org and WordPress.com?
a. In WordPress.org, you can upload themes and plugins but in WordPress.com, you cannot upload themes and plugins. ( answer)
b. In WordPress.com, you can upload themes and plugins but in WordPress.org, you cannot upload themes and plugins.
c. In WordPress.org, you can alter the code file of the Theme Template but in WordPress.com, you can alter the CSS code file only.
d. In WordPress.org, you have to manually upgrade the software and take backups whereas in WordPress.com, automatic software upgrades and backups are available.( answer)
14. Which type of media files can be uploaded to WordPress.com?
Odesk test answer a. .wma
Odesk test answer b. .jpg
c. odt
d. doc
15. Which of the following tasks must be performed to add a favicon icon to your site?
A) Upload a favicon icon to your side
B) Add a favicon link to the theme’s header file or update the exising favicon icon link to the new one (Answer)
C) Change the favicon icon in admin settings
D) The favicon icon cannot be changed
16. Which of the following statements are true regarding widgets and plug-in in WordPress?
A) Plug-in is a software used to add function to blog (Answer)
B) Widget is an object derived from a plug-in and can be added to the sidebar (Answer)
C) Widgets are alwasy plugins (Answer)
D) All of the above
17. Which of the following actions performed before upgrading WordPress?
A) Back up the site (Answer)
B) Disable plugins (Answer)
C) Enable FTP on the site
D) All of the above
18. Which of the following methods can be used to eliminate spam?
A) Using the “wp-captcha-free” plug-in
B) Using the “askimet” plug-in (Answer)
C) Using a widget
D) None of the above
19. Which of the following needs to be edited in order to creat the function for the shortcode?
A) Index.php
B) functions.php (Answer)
C) post.php
D) page.php
20. Which of the following arguments are accepted in shortcodes handler function while using shortcode API?
A) $atts
B) $Content
C) $code
D) All of the above (Answer)
21. Which of the following is a good reason to delete the admin account?
A) Because other users know this admin name (Answer)
B) Because it is not necessary
C) To enhance performance
D) TO enhance security (Answer)
22. Which of the following method helps you put HTML code into a post, and get it to format the way you expect?
A) Replacing special characters with corresponding html codes or character codes
B) Using the <codegt;
01. Which of the following are the differences between WordPress.org and WordPress.com?
a. In WordPress.org, you can upload themes and plugins but in WordPress.com, you cannot upload themes and plugins. ( answer)
d. In WordPress.org, you have to manually upgrade the software and take backups whereas in WordPress.com, automatic software upgrades and backups are available.(answer)
02. Which type of media files can be uploaded to WordPress.com?
answer a. .wma
answer b. .jpg
03. Which of the following methods can be used to add Pagination to a WordPress site?
A) Using a widget
B) Setting the feature in the admin settings
C) Using a plug-in (Answer)
D) Pagination cannot be added to WordPress site
04. Which of the following constitutes ‘Permalinks’ structures in the WordPress.org version 2.5.1?
c. Numeric ( answer)
e. Custom Structure( answer)
05. Which of the following methods can be used to enable posting via e-mail?
A) Installing the wp-emailpost plug-in
B) Configuring the feature in admin settings (Answer)
C) Using a widget
D) This feature is not available in WordPress
06. Which of the following blog site can be imported into wordpress?
a) Joomla (Answer)
B) Yahoo Blog (Answer)
c) Drupal (Answer)
d) Blogspot
e) All of the above
07. Which of the following methods can be used to display the time in every post?
A) Changing the config file
B) Setting the feature in the admin settings
C) Changing the index.php file (answer)
D) Updating the database
08. Which of the following methods can be used to make permalinksSEO friendly?
A) Updating the database
B) Changing the source code
C) Configuring the features in the config file
D) Configuring the features in the admin settings (Answer)
09. Which of the following are true about Template Tags?
A) The template tag comprises of the three tag (PHP code tag, WordPress function, optional Parameters)
B) A template tag is code that instruct WordPress to do or get somethings (Answer)
C) There are only two types of parameters that are supported by wordpress template tag (String, Boolean)
D) All of the above
10. Which of the following constitutes ‘Permalinks’ structures in the WordPress.org version 2.5.1?
a. Day and name
b. Month and name
Odesk test answer c. Numeric
d. Alphanumeric
Odesk test answer e. Custom Structure
11. Which of the following WordPress.org version 2.5.1 components or modules is not activated by default?
a. Akismet
b. Avatar Display
c. Comments Moderation
Odesk test answer d. All of these are activated by default
12. Which of the following User Roles are defined in the WordPress.org version 2.5.1?
a.Subscriber
b.Administrator
c.Editor
Odesk test answer d.Moderato
e.Contributor
13. Which of the following are the differences between WordPress.org and WordPress.com?
a. In WordPress.org, you can upload themes and plugins but in WordPress.com, you cannot upload themes and plugins. ( answer)
b. In WordPress.com, you can upload themes and plugins but in WordPress.org, you cannot upload themes and plugins.
c. In WordPress.org, you can alter the code file of the Theme Template but in WordPress.com, you can alter the CSS code file only.
d. In WordPress.org, you have to manually upgrade the software and take backups whereas in WordPress.com, automatic software upgrades and backups are available.( answer)
14. Which type of media files can be uploaded to WordPress.com?
Odesk test answer a. .wma
Odesk test answer b. .jpg
c. odt
d. doc
15. Which of the following tasks must be performed to add a favicon icon to your site?
A) Upload a favicon icon to your side
B) Add a favicon link to the theme’s header file or update the exising favicon icon link to the new one (Answer)
C) Change the favicon icon in admin settings
D) The favicon icon cannot be changed
16. Which of the following statements are true regarding widgets and plug-in in WordPress?
A) Plug-in is a software used to add function to blog (Answer)
B) Widget is an object derived from a plug-in and can be added to the sidebar (Answer)
C) Widgets are alwasy plugins (Answer)
D) All of the above
17. Which of the following actions performed before upgrading WordPress?
A) Back up the site (Answer)
B) Disable plugins (Answer)
C) Enable FTP on the site
D) All of the above
18. Which of the following methods can be used to eliminate spam?
A) Using the “wp-captcha-free” plug-in
B) Using the “askimet” plug-in (Answer)
C) Using a widget
D) None of the above
19. Which of the following needs to be edited in order to creat the function for the shortcode?
A) Index.php
B) functions.php (Answer)
C) post.php
D) page.php
20. Which of the following arguments are accepted in shortcodes handler function while using shortcode API?
A) $atts
B) $Content
C) $code
D) All of the above (Answer)
21. Which of the following is a good reason to delete the admin account?
A) Because other users know this admin name (Answer)
B) Because it is not necessary
C) To enhance performance
D) TO enhance security (Answer)
22. Which of the following method helps you put HTML code into a post, and get it to format the way you expect?
A) Replacing special characters with corresponding html codes or character codes
B) Using the <codegt;
odesk test Microsoft word 2010
Microsoft Excel 2010 Test Answer::
01. Question: Question:If you want to create a citation and fill in the source information later, you should:
Answer: a. insert a caption.
02. Question: To select vertical blocks of text, you would hold down which key while dragging the mouse?
Answer: b. Ctrl
03. Question:If I do not want the contents of one of my fields to automatically update, I would have to do which of the following?
Answer: c. Make the field hidden.
04. Question: Sarah receives a company turnover summary in the form of an embedded Excel chart (as shown in the above image) in a Microsoft Word 2010 document from her boss. Her boss wants the chart to be sent over to the Public Relations department with a line in the chart showing the variations in the company’s turnover, as well as a prediction for the next 2 years. The turnover values for each year also need to be sent separately in an Excel file. What should Linda do to achieve this in the shortest possible time?
Answer: c. Change chart type to a line chart and type all the values into an Excel file.
05. Question: You want to add an image as the first character in your paragraph. Which type of text wrapping treats your graphic as if it were a character?
Answer: b. Square
06. Question: Roger was editing a Word document, when his mobile phone rang. By mistake, some button got clicked on the Word 2010 Ribbon area, so that the document’s appearance changed from Image A to Image B. Which of the following options could be the cause?
Answer: b. Tables with maximum number of rows and columns was added to the document.
07. Question: A particular chart layout can be applied to a chart only if:
Answer: c. it is a 2D chart.
08. Question: Choose the INCORRECT statement:
Answer: a. Only high-risk documents from an uncertain location are opened in Read-Only view.
09. Question: With which chart type(s) is the “Depth Gridlines” option available?
Answer: b. Line chart
10. Question: Which of the following is NOT an option under File > Print > Microsoft Document Image Writer?
Answer: c. MDI
11. Question: I want to use the AutoCaption feature for several elements in my document. What type of file format is NOT available in the AutoCaption dialog box?
Answer: c. XLS
12. Question: What view must be used when inserting a subdocument?
Answer: b. Web Layout
13. Question: Josh is creating a collage for his college project. He has an image – Image A – which he wants to show in different color themes so as to represent different moods in the collage (Images B, C and D). How can Josh achieve this in Microsoft Word 2010?
Answer: c. By using the Recolor option under Format Picture.
14. Question: Which of the following in NOT a type of Section Break?
Answer: d. Continuous
15. Question: Samantha is given an article to proofread. The article runs into hundreds of pages. She is asked to use hyphens to allow words in the article to break between two lines. There is an option in Microsoft Word 2010 which can be used to achieve this result with a single click. Please identify it.
Answer: c. Orientation
16. Question: Which of the following options allows you to arrange drawings in your document so they may be moved, kept together, aligned, or formatted more easily?
Answer: b. Insert Flowchart
17. Question: When you apply a theme to a Microsoft Word 2010 document, all the tables, charts, SmartArt graphics, shapes, and other objects are updated to complement one another.
Answer: b. False
18. Question: My table heading row is not repeating on subsequent pages though I have properly set the header row to repeat. What is one problem that might be causing this behavior?
Answer: a. “Allow row to break across pages” is unchecked.
19. Question: Microsoft Word 2010 has enabled ligatures for which of the following fonts?
Answer: a. Open Type fonts
01. Question: Question:If you want to create a citation and fill in the source information later, you should:
Answer: a. insert a caption.
02. Question: To select vertical blocks of text, you would hold down which key while dragging the mouse?
Answer: b. Ctrl
03. Question:If I do not want the contents of one of my fields to automatically update, I would have to do which of the following?
Answer: c. Make the field hidden.
04. Question: Sarah receives a company turnover summary in the form of an embedded Excel chart (as shown in the above image) in a Microsoft Word 2010 document from her boss. Her boss wants the chart to be sent over to the Public Relations department with a line in the chart showing the variations in the company’s turnover, as well as a prediction for the next 2 years. The turnover values for each year also need to be sent separately in an Excel file. What should Linda do to achieve this in the shortest possible time?
Answer: c. Change chart type to a line chart and type all the values into an Excel file.
05. Question: You want to add an image as the first character in your paragraph. Which type of text wrapping treats your graphic as if it were a character?
Answer: b. Square
06. Question: Roger was editing a Word document, when his mobile phone rang. By mistake, some button got clicked on the Word 2010 Ribbon area, so that the document’s appearance changed from Image A to Image B. Which of the following options could be the cause?
Answer: b. Tables with maximum number of rows and columns was added to the document.
07. Question: A particular chart layout can be applied to a chart only if:
Answer: c. it is a 2D chart.
08. Question: Choose the INCORRECT statement:
Answer: a. Only high-risk documents from an uncertain location are opened in Read-Only view.
09. Question: With which chart type(s) is the “Depth Gridlines” option available?
Answer: b. Line chart
10. Question: Which of the following is NOT an option under File > Print > Microsoft Document Image Writer?
Answer: c. MDI
11. Question: I want to use the AutoCaption feature for several elements in my document. What type of file format is NOT available in the AutoCaption dialog box?
Answer: c. XLS
12. Question: What view must be used when inserting a subdocument?
Answer: b. Web Layout
13. Question: Josh is creating a collage for his college project. He has an image – Image A – which he wants to show in different color themes so as to represent different moods in the collage (Images B, C and D). How can Josh achieve this in Microsoft Word 2010?
Answer: c. By using the Recolor option under Format Picture.
14. Question: Which of the following in NOT a type of Section Break?
Answer: d. Continuous
15. Question: Samantha is given an article to proofread. The article runs into hundreds of pages. She is asked to use hyphens to allow words in the article to break between two lines. There is an option in Microsoft Word 2010 which can be used to achieve this result with a single click. Please identify it.
Answer: c. Orientation
16. Question: Which of the following options allows you to arrange drawings in your document so they may be moved, kept together, aligned, or formatted more easily?
Answer: b. Insert Flowchart
17. Question: When you apply a theme to a Microsoft Word 2010 document, all the tables, charts, SmartArt graphics, shapes, and other objects are updated to complement one another.
Answer: b. False
18. Question: My table heading row is not repeating on subsequent pages though I have properly set the header row to repeat. What is one problem that might be causing this behavior?
Answer: a. “Allow row to break across pages” is unchecked.
19. Question: Microsoft Word 2010 has enabled ligatures for which of the following fonts?
Answer: a. Open Type fonts
Microsoft word test answer
1. Question: Which among the following methods would you select when you want to add protection to parts of a template?
Answer: Go to the Developer tab, click on Properties in the Controls group and then click any of the Locking options in the Content Control Properties dialog box.
2. Question: Which of the following is/are true about phishing?
Answer: All if the above
3. Question: This question is based upon the figure shown below
In some cases, when lists are combined into one “List,” the formatting is not updated. Refer to the picture given above. Which among the following options should be used to update this formatting?
Answer: D
4. Question: Which among the following charts do not have axes?
Answer: Doughnut charts
5. Question: Microsoft named two styles that work in Word 2007 as both character and paragraph types as being ______ styles:
Answer: Linked
6. Question: This question is based upon the figure shown below
Answer: It ensures that the text is not obscured by binding.
7. Question: With the help of which view will the Watermark not be seen?
Answer: Web Layout view
8. Question: This question is based upon the figure shown below
How will the Message Bar alerts be enabled as shown in the given picture?
Answer: Select Word Options from the Microsoft Office Button. Click on Trust Center, then click Trust Center Settings, and then click Message Bar.
9. Question: Which among the following is not a Bookmark option to sort the list of bookmarks in the document?
Answer: Author
10. Question: This question is based upon the figure shown below
Why is the “Different First Page” option used in the Page Setup dialog box as shown in the given picture?
Answer: This option allows you to remove the Page Number from the first page.
11. Question: State whether true or false:
Once a bullet is removed from the “Bullet Library” and it is no longer available in the “Document Bullets” area, the bullet cannot be added back to the Bullet Library.
Answer: False
12. Question: This question is based upon the figure shown below
Which of the following types of charts are not supported by either Lines or Bars, as shown in the picture?
Answer: Area charts
13. Question: Which among the following features could be used to create a connection to a Shared Network folder?
Answer: Map Network Drive
14. Question: Edit tracking changes are typically formatted in the following manner: (1) deletions—red strikethroughs, (2) additions—green and underlined, and (3) formatting changes are made bold in almost any other desired color. Where in Word 2007 could you set your own custom formatting options for tracking changes?
Answer: Select the Review ribbon and then select the triangle by Track Changes. In the drop-down menu, select “Change Tracking Options” and then set your formatting options in the Track Changes Options dialog box.
15. Question: How will you insert text boxes for a printed form?
Answer: Select the Insert tab, in the Text group, click on Text Box and then select Draw Text Box.
16. Question: To enter a symbol or special character into your document (to where the cursor is located), which of the following methods could you employ in Word 2007?
Answer: Open the Insert ribbon. Click Symbol in the Symbols group. A menu will appear with a small selection of symbols. If you don’t see the symbol or character you’d like to insert, click More Symbols. Choose the special character (or symbol) that you want and then click Insert and click Close.
17. Question: You are editing a figure using the Drawing Tools > Format options. Which among the following Shape Fill options in the Shape Styles group adds a solid color and transparency to a shape?
Answer: More Fill Colors…
18. Question: State whether true or false:
When you save a document as a Web page, the textures and gradients are saved as JPEG files and the patterns are saved as GIF files.
Answer: True
19. Question: Which among the following options is the reason of text deletion at the insertion point when you type a document?
Answer: The “overtype mode” is turned on in Word options.
20. Question: What is meant by Enhanced ScreenTips?
Answer: Enhanced ScreenTips are larger windows that display more descriptive text than a ScreenTip and can have a link to a Help topic.
21. Question: This question is based upon the figure shown below
Refer to the given picture. Which of the following Line Numbers should be used when each page has to begin with the number 1?
Answer: Restart Each Page
22. Question: Which keyboard shortcut could be used to switch to Draft View?
Answer: ALT+CTRL+N
23. Question: State whether true or false:
The “Add Assistant” shape option in a SmartArt graphic is available only if an organization chart layout is chosen.
Answer: True
24. Question: Which view(s) could be used to view the Equation placeholders in the Document Views group?
Answer: All of the above
25. Question: State whether true or false:
Any changes that are saved to “Normal.dotm” will be applied to the documents that you create in the future.
Answer: True
26. Question: State whether true or false:
Changing the Author property in the Document Information Panel of an existing document has no effect on the User name setting in the Word Options dialog box.
Answer: True
27. Question: How will you set the default font so that every time you open Microsoft Word it will use the settings that you had selected?
Answer: Select the Home tab, and then click the Font Dialog Box Launcher. Select the font style and size. Click on Default… and then click Yes.
28. Question: Which of the following line-spacing options sets fixed line spacing that Word does not adjust?
Answer: Doubled
29. Question: How will you change the author name in an existing document?
Answer: All of the above
30. Question: State whether true or false:
Microsoft Office programs store some additional information within the digital signature automatically that might not be visible in the current view document.
Answer: True
31. Question: Which among the following options could be used to turn off the Office Clipboard?
Answer: All of the above
32. Question: What does the command “Winword.exe /f MyDocument.docx” mean?
Answer: This command instructs Word to start and immediately open a file named MyDocument.docx.
33. Question: Which among the following is an invalid character to include in a file name?
Answer: All of the above
34. Question: State whether true or false:
Gridlines do not print when a document is printed.
Answer: True
35. Question: Which keyboard shortcut inserts a hyperlink?
Answer: CTRL+K
36. Question: Which among the following wildcards should be used to select any single character?
Answer: ?
37. Question: This question is based upon the figure shown below
Refer to the given image. Which option should be selected to convert a professionally formatted equation into an equation on one line?
Answer: C
38. Question: Which of the following is not a Content Control?
Answer: Chart
39. Question: This question is based upon the figure shown below
Answer: Numbering
40. Question: Which among the following is a correct way to make your file “Read-only?”
Answer: Click “Save As” from the Microsoft Office Button. Click on Tools and then click General Options. Select the Read-only recommended check box. Click OK. Click on Save.
41. Question: Which among the following options should be used to start a bulleted list automatically?
Answer: Type * (asterisk) and then press spacebar or the Tab key.
42. Question: Which of the following can be the reason for the appearance of the red X, as shown in the picture?
Answer: All of the above
43. Question: State whether true or false:
ASCII-formatted text contains no formatting information such as bold, italic, or fonts.
Answer: True
44. Question: State whether true or false:
New text animation effects can be applied in Microsoft Word 2007.
Answer: False
45. Question: Which among the following options should be used to number the cells in a table?
Answer: Select the table cells that need to be numbered. On the Home tab, in the Paragraph group, click on Numbering.
46. Question: Which of the following options repeats a table heading on subsequent pages?
Answer: Repeat Header Rows
47. Question: Which keyboard shortcut could be used to check the spelling of a text file?
Answer: F7
48. Question: Which among the following is not true regarding the use of a pie chart?
Answer: A pie chart should be used when there are more than seven categories.
49. Question: This question is based upon the figure shown below
Refer to the given picture. Which of the following options turns off Enhanced ScreenTips but keeps the ScreenTips still visible?
Answer: B
50. Question: Unlike the other types of styles (paragraph, character, linked, and table), predefined list styles are available when you first create a document in Word 2007.
Answer: False
51. Question: This question is based upon the figure shown below
What is the maximum number of columns that can be created in the Columns dialog box as shown in the picture?
Answer: 13
52. Question: This question is based upon the figure shown below
Refer to the given image. In Picture1, axes appear on the left side. Which setting should you use to make them appear on the right side, as shown in Picture2?
Answer: Select the Axis Options tab in the Format Axis dialog box. Set the Axis labels: field to High.
53. Question: Which of the following two paragraphs is/are true for Word 2007?
(1)To show or hide formatting marks in your editing markup — on the Home ribbon, in the Paragraph group, click the Show/Hide button.
(2) The Show/Hide button will not hide all the formatting marks in the document if you selected those marks that are to be displayed at all times (such as paragraph marks, tab characters, hidden text, optional hyphens, object anchors, or spaces). To turn off any or all of these selected formatting marks, follow this procedure: Click the Microsoft Office Button and then click Word Options. Then Click Display. Under “Always show these formatting marks on the screen,” clear the check boxes for any formatting marks that you do not want to show at all times in your documents.
Answer: Both (1) and (2)
54. Question: This question is based upon the figure shown below
In the given picture, the “Washout” option has been selected. What purpose does it serve?
Answer: It lightens the picture so that it does not interfere with the text.
55. Question: The default installation of Word 2007 includes several built-in character styles. Which of the following is NOT one of the default, built-in character styles:
Answer: Special Emphasis
56. Question: What steps should be followed to replace a shape with other shape?
Answer: Select the shape to be changed. Select the Format tab; use the “Change Shape” button in the Shape Styles group.
57. Question: Just as in Word 2003 or prior Word versions, the default standard view for Word 2007 is the Draft view (and is still also called the Normal view in Word 2007):
Answer: False
58. Question: This question is based upon the figure shown below
What is the purpose of the “Demote” button as shown in the diagram?
Answer: It increases the level of a selected bullet or a shape.
59. Question: Which feature(s) should be selected in order to find and remove hidden data and personal information in Office documents?
Answer: Document Inspector
60. Question: Which keyboard shortcut is used to make the text size smaller?
Answer: CTRL+SHIFT+<
61. Question: Which among the following options will you use to add a command to the Quick Access Toolbar?
Answer: All of the above
62. Question: Which option(s) should you select to remove a chart or axis title from a chart?
Answer: To remove an axis title, select the Layout tab. In the Labels group, click on Axis Titles, click the type of axis title, and then click None.
63. Question: Which among the following macro settings is meant for developers only?
Answer: Trust access to the VBA project object model.
64. Question: State whether true or false:
A building block can be added to as many galleries as you want.
Answer: True
65. Question: Which of the following is/are true about phishing?
Answer: It is an online fraud technique used by criminals to lure users into disclosing their personal in
Answer: Go to the Developer tab, click on Properties in the Controls group and then click any of the Locking options in the Content Control Properties dialog box.
2. Question: Which of the following is/are true about phishing?
Answer: All if the above
3. Question: This question is based upon the figure shown below
In some cases, when lists are combined into one “List,” the formatting is not updated. Refer to the picture given above. Which among the following options should be used to update this formatting?
Answer: D
4. Question: Which among the following charts do not have axes?
Answer: Doughnut charts
5. Question: Microsoft named two styles that work in Word 2007 as both character and paragraph types as being ______ styles:
Answer: Linked
6. Question: This question is based upon the figure shown below
Answer: It ensures that the text is not obscured by binding.
7. Question: With the help of which view will the Watermark not be seen?
Answer: Web Layout view
8. Question: This question is based upon the figure shown below
How will the Message Bar alerts be enabled as shown in the given picture?
Answer: Select Word Options from the Microsoft Office Button. Click on Trust Center, then click Trust Center Settings, and then click Message Bar.
9. Question: Which among the following is not a Bookmark option to sort the list of bookmarks in the document?
Answer: Author
10. Question: This question is based upon the figure shown below
Why is the “Different First Page” option used in the Page Setup dialog box as shown in the given picture?
Answer: This option allows you to remove the Page Number from the first page.
11. Question: State whether true or false:
Once a bullet is removed from the “Bullet Library” and it is no longer available in the “Document Bullets” area, the bullet cannot be added back to the Bullet Library.
Answer: False
12. Question: This question is based upon the figure shown below
Which of the following types of charts are not supported by either Lines or Bars, as shown in the picture?
Answer: Area charts
13. Question: Which among the following features could be used to create a connection to a Shared Network folder?
Answer: Map Network Drive
14. Question: Edit tracking changes are typically formatted in the following manner: (1) deletions—red strikethroughs, (2) additions—green and underlined, and (3) formatting changes are made bold in almost any other desired color. Where in Word 2007 could you set your own custom formatting options for tracking changes?
Answer: Select the Review ribbon and then select the triangle by Track Changes. In the drop-down menu, select “Change Tracking Options” and then set your formatting options in the Track Changes Options dialog box.
15. Question: How will you insert text boxes for a printed form?
Answer: Select the Insert tab, in the Text group, click on Text Box and then select Draw Text Box.
16. Question: To enter a symbol or special character into your document (to where the cursor is located), which of the following methods could you employ in Word 2007?
Answer: Open the Insert ribbon. Click Symbol in the Symbols group. A menu will appear with a small selection of symbols. If you don’t see the symbol or character you’d like to insert, click More Symbols. Choose the special character (or symbol) that you want and then click Insert and click Close.
17. Question: You are editing a figure using the Drawing Tools > Format options. Which among the following Shape Fill options in the Shape Styles group adds a solid color and transparency to a shape?
Answer: More Fill Colors…
18. Question: State whether true or false:
When you save a document as a Web page, the textures and gradients are saved as JPEG files and the patterns are saved as GIF files.
Answer: True
19. Question: Which among the following options is the reason of text deletion at the insertion point when you type a document?
Answer: The “overtype mode” is turned on in Word options.
20. Question: What is meant by Enhanced ScreenTips?
Answer: Enhanced ScreenTips are larger windows that display more descriptive text than a ScreenTip and can have a link to a Help topic.
21. Question: This question is based upon the figure shown below
Refer to the given picture. Which of the following Line Numbers should be used when each page has to begin with the number 1?
Answer: Restart Each Page
22. Question: Which keyboard shortcut could be used to switch to Draft View?
Answer: ALT+CTRL+N
23. Question: State whether true or false:
The “Add Assistant” shape option in a SmartArt graphic is available only if an organization chart layout is chosen.
Answer: True
24. Question: Which view(s) could be used to view the Equation placeholders in the Document Views group?
Answer: All of the above
25. Question: State whether true or false:
Any changes that are saved to “Normal.dotm” will be applied to the documents that you create in the future.
Answer: True
26. Question: State whether true or false:
Changing the Author property in the Document Information Panel of an existing document has no effect on the User name setting in the Word Options dialog box.
Answer: True
27. Question: How will you set the default font so that every time you open Microsoft Word it will use the settings that you had selected?
Answer: Select the Home tab, and then click the Font Dialog Box Launcher. Select the font style and size. Click on Default… and then click Yes.
28. Question: Which of the following line-spacing options sets fixed line spacing that Word does not adjust?
Answer: Doubled
29. Question: How will you change the author name in an existing document?
Answer: All of the above
30. Question: State whether true or false:
Microsoft Office programs store some additional information within the digital signature automatically that might not be visible in the current view document.
Answer: True
31. Question: Which among the following options could be used to turn off the Office Clipboard?
Answer: All of the above
32. Question: What does the command “Winword.exe /f MyDocument.docx” mean?
Answer: This command instructs Word to start and immediately open a file named MyDocument.docx.
33. Question: Which among the following is an invalid character to include in a file name?
Answer: All of the above
34. Question: State whether true or false:
Gridlines do not print when a document is printed.
Answer: True
35. Question: Which keyboard shortcut inserts a hyperlink?
Answer: CTRL+K
36. Question: Which among the following wildcards should be used to select any single character?
Answer: ?
37. Question: This question is based upon the figure shown below
Refer to the given image. Which option should be selected to convert a professionally formatted equation into an equation on one line?
Answer: C
38. Question: Which of the following is not a Content Control?
Answer: Chart
39. Question: This question is based upon the figure shown below
Answer: Numbering
40. Question: Which among the following is a correct way to make your file “Read-only?”
Answer: Click “Save As” from the Microsoft Office Button. Click on Tools and then click General Options. Select the Read-only recommended check box. Click OK. Click on Save.
41. Question: Which among the following options should be used to start a bulleted list automatically?
Answer: Type * (asterisk) and then press spacebar or the Tab key.
42. Question: Which of the following can be the reason for the appearance of the red X, as shown in the picture?
Answer: All of the above
43. Question: State whether true or false:
ASCII-formatted text contains no formatting information such as bold, italic, or fonts.
Answer: True
44. Question: State whether true or false:
New text animation effects can be applied in Microsoft Word 2007.
Answer: False
45. Question: Which among the following options should be used to number the cells in a table?
Answer: Select the table cells that need to be numbered. On the Home tab, in the Paragraph group, click on Numbering.
46. Question: Which of the following options repeats a table heading on subsequent pages?
Answer: Repeat Header Rows
47. Question: Which keyboard shortcut could be used to check the spelling of a text file?
Answer: F7
48. Question: Which among the following is not true regarding the use of a pie chart?
Answer: A pie chart should be used when there are more than seven categories.
49. Question: This question is based upon the figure shown below
Refer to the given picture. Which of the following options turns off Enhanced ScreenTips but keeps the ScreenTips still visible?
Answer: B
50. Question: Unlike the other types of styles (paragraph, character, linked, and table), predefined list styles are available when you first create a document in Word 2007.
Answer: False
51. Question: This question is based upon the figure shown below
What is the maximum number of columns that can be created in the Columns dialog box as shown in the picture?
Answer: 13
52. Question: This question is based upon the figure shown below
Refer to the given image. In Picture1, axes appear on the left side. Which setting should you use to make them appear on the right side, as shown in Picture2?
Answer: Select the Axis Options tab in the Format Axis dialog box. Set the Axis labels: field to High.
53. Question: Which of the following two paragraphs is/are true for Word 2007?
(1)To show or hide formatting marks in your editing markup — on the Home ribbon, in the Paragraph group, click the Show/Hide button.
(2) The Show/Hide button will not hide all the formatting marks in the document if you selected those marks that are to be displayed at all times (such as paragraph marks, tab characters, hidden text, optional hyphens, object anchors, or spaces). To turn off any or all of these selected formatting marks, follow this procedure: Click the Microsoft Office Button and then click Word Options. Then Click Display. Under “Always show these formatting marks on the screen,” clear the check boxes for any formatting marks that you do not want to show at all times in your documents.
Answer: Both (1) and (2)
54. Question: This question is based upon the figure shown below
In the given picture, the “Washout” option has been selected. What purpose does it serve?
Answer: It lightens the picture so that it does not interfere with the text.
55. Question: The default installation of Word 2007 includes several built-in character styles. Which of the following is NOT one of the default, built-in character styles:
Answer: Special Emphasis
56. Question: What steps should be followed to replace a shape with other shape?
Answer: Select the shape to be changed. Select the Format tab; use the “Change Shape” button in the Shape Styles group.
57. Question: Just as in Word 2003 or prior Word versions, the default standard view for Word 2007 is the Draft view (and is still also called the Normal view in Word 2007):
Answer: False
58. Question: This question is based upon the figure shown below
What is the purpose of the “Demote” button as shown in the diagram?
Answer: It increases the level of a selected bullet or a shape.
59. Question: Which feature(s) should be selected in order to find and remove hidden data and personal information in Office documents?
Answer: Document Inspector
60. Question: Which keyboard shortcut is used to make the text size smaller?
Answer: CTRL+SHIFT+<
61. Question: Which among the following options will you use to add a command to the Quick Access Toolbar?
Answer: All of the above
62. Question: Which option(s) should you select to remove a chart or axis title from a chart?
Answer: To remove an axis title, select the Layout tab. In the Labels group, click on Axis Titles, click the type of axis title, and then click None.
63. Question: Which among the following macro settings is meant for developers only?
Answer: Trust access to the VBA project object model.
64. Question: State whether true or false:
A building block can be added to as many galleries as you want.
Answer: True
65. Question: Which of the following is/are true about phishing?
Answer: It is an online fraud technique used by criminals to lure users into disclosing their personal in
PHP5 odesk test answer
1. load is possible with:
A. checkbox
B. select
C. file
D. all of the above
Ans : A
2. State whether true or false
Paamayim nekudotayim operator allows access only to the static members of a class?
a. True
b. False
Ans: A
3. What is the output of the following code?
$a=500;
$b=200;
echo $a % 2 * $b;
a. 100
b. 200
c. 500
d. 0
e. Syntax error
Ans: D
4. which function will suitable replace “X”?
a. Filesize
b. Size
c. sizeofFile
d. getSize
Ans: A
5. Which of the following is not true for a persistent connection?
a. these are not closed even after the execution of the script
b. these are mainly used to increase the efficiency of thesystem
c. These can’t be converted to non-persistent connections
d. These are preferable not used in the scripts involving transactions
Ans: C
6. Which one is correct?
a. $s=fwrite(“a string here”);
b. $s=fwrite($fp,”a string here”);
c. $s=fwrite(“a string here ”,$fp);
d. none of the above
Ans: B
7. Which will be the output of the following code?
$a=0.0;
For($i=0;$i
the getSal() of emp has to behave exacltyle as getSal() ofperson . Which of the following lines of code would you use to replace the “???”?
a. Parent:: getSal();
b. Person::getSal();
c. Parent::getsal;
d. Person::getSal;
Ans: A
11. What is true regarding this code?
a. setcookie will return false
b. setcookie will return true
c. setcookie will return null
d. Any of the above can happen
Answer: b
12. Which of the following is not the correct way of starting a session?
a. session.auto_start
b. session_register()
c. session_initiate()
d. session_start()
Answer: c;
13. Which of the following functions do you need to implement HTTP Basic Authentication?
a. authenticate ()
b. header ()
c. basic_auth ()
d. None of the above
Answer: d;
14. Which of the following Command Line Interface constant is not defined in the CLI SAPI?
a. STDIN
b. STDOUT
c. STDPRT
d. STDERR
Answer: c;
15. Which of the following statements is correct with regard to final and abstract?
a. An abstract class cannot have final methods
b. An abstract class cannot have non abstract methods
c. A final class cannot have abstract methods
d. A final class cannot have final methods
Answer: C
Explanation :
a. An abstract class can have final method.
b. An abstract class can have other than abstract method.
c. a final class can have final method (but not a must requirement).
d. BUT a final class cannot have abstract method.
16. Which composite data types are supported by php?
a. Array
b. Enumeration
c. List
d. Object
e. Integer
Answer: A and D
17. The default value of register_globals in PHP is:
a. Off
b. On
Answer A
18. Using Register Globals
WarningThis feature has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged.
Perhaps the most controversial change in PHP is when the default value for the PHP directive register_globals went from ON to OFF in PHP » 4.2.0.
Choose the correct statement:
a. include() includes and evaluates a specific file
b. require() includes and evaluates a specific file
c. include_once() includes and evaluates a specific file only if it has not been included before
d. require_once() includes and evaluates a specific file only if it has not been included before
e. All of the above
Answer: E
19. If the session_cache_expire() is not set, then by default the session cache will expire after:
a. 1 hr
b. 2 hrs
c. 3 hrs
d. 4 hrs
Answer: C
20. The cache expire is reset to the default value of 180 stored in session.cache_expire at request startup time. Thus, you need to call session_cache_expire() for every request (and before session_start() is called).
What will be the output of the following script?
$count=50;
function Argument()
{
$count++;
echo $count;
}
Argument();
?>
a. It will print 50
b. It will print 51
c. It will print 52
d. It will print 1
Answer: D;
Explanation : $count is local in the method.
21. Which of the following statements is true with regard to comparisons in PHP5?
a. With “= =” operator, two object instances are equal if they have the same attributes and values, and are instances of a different class.
b. With “==” operator two object instances are equal if they have the same attributes and values, and are instances of the same class.
c. With (===) operator, object variables are identical if and only if they refer to the same instance of the same class.
d. With (===) operator, object variables are identical if and only if they refer to the different instance of the same class.
Answer C;
21. What will be the output of the following code?
$i=4;
$j=30;
$k=0;
$k=$j++/$i++;
echo $i . ” ” . $j . ” ” . $k . ” “;
a. 5 31 6
b. 5 31 6.2
c. 5 31 7
d. 4 31 7.5
e. 5 31 7.5
Answer e;
Explanation : After increment then Divition command will execute.
22. Which of the following is a not a correct way of commenting in php?
a. //PHP Comment
b. /*PHP Comment*/
c. #PHP Comment
d. /#PHP Comment
Answer d;
23. Following is a php code block:
$m=9;
$n=99;
$z=8;
$z=$n++/$m++ + –$z;
echo $z;
what will be the output?
a. 16
b. 18
c. 19
d. 20
e. 17
Answer: B; (?? not understand)
24. Which of the following is the correct way of specifying default value?
a. function GetDiscount($Type = “Special”) { . . . }
b. function GetDiscount(Type := “Special”) { . . . }
c. function GetDiscount($Type := “Special”) { . . . }
d. function GetDiscount($Type : “Special”) { . . . }
Answre a;
25. With reference to the following php script:
print ‘Text Line1′
print ‘Text Line2′
?>
What will be the output on running the script?
a. Text Line1Text Line2
b. Text Line1 Text Line2
c. ‘Text Line1′
d. ‘Text Line2′
e. Error message will be printed
Answer e;
26. Late PHP versions support remote file accessing for the functions:
a. include()
b. include_once()
c. require_once()
d. Both a and b
e. Both b and c
Answer: e;
27. Which of the following does not represent logical AND operator in PHP?
a. &
b. &&
c. And
d. AND
Answer: a
28. Which of the following are invalid data types in PHP?
a. string
b. integer
c. float
d. char
e. array
f. object
Answer: D
29. The Manager and Office classes are as follows:
class Manager{
function printName() {
echo “Manager”;
}
}
class Office{
function getManager() {
return new Manager();
}
}
$ofc = new Office();
???
?>
Which of the following should replace ‘???’ to obtain the value of printName() function?
a. $ofc->getManager()->printName();
b. new Office()->getManager()->printName();
c. $ofc->getManager->printName;
d. Office::getManager()::printName();
Answer: a
30.Which of the following variable declarations within a class is invalid in PHP5?
a. private $type = ‘moderate’;
b. var $term =3;
c. public $amnt = ’500′;
d. protected $name = ‘Quantas Private Limited’;
Answer: b;
31. What will be the output of following code?
$arr = “a”;
$arr[0]=”b”;
echo $arr;
echo $arr[0];
a. ab
b. $arr is undefined
c. bb
d. Parse error
Answer: C
32. What is the result of the following expression?
5+2 * 4+6
a. 70
b. 19
c. 34
d. 21
Anwer: b
33. What will be the output of following code?
$var = 1 + “-1.3e3?;
echo $var;
a. -1299
b. 1
c. 1-1.3e3
d. Error:cannot add integer and string
An swer: a
34. What will be the output of following code?
$var1=”a”;
$$var1=”b”;
echo “$var1 $a”;
a. a b
b. $var1 $a
c. Error: $a is undefined
d. Error: Parse error in line 2 ($$var1 = “b”)
Answer a
35. What will be the ouput of the following code?
if (-1)
print “true”;
else
print “false”;
?>
a. true
b. false
Answer: a
36. What will be the output of the following code?
echo 12 . 6;
a. 12 . 6
b. 126
c. 12.6
d. Error: You cannot add integers through the concatenation operator(.)
Answer: B
37. Consider the following sample code:
$x = 0xFFFE;
$y = 2;
$z = $x && $y;
What will be the value of $z?
a. 0
b. 1
c. 2
d. 3
e. 4
Answer: B
38. what would be the output of the following code?
$stg=’good day’;
$stg= ucwords($stg);
echo $stg;
?>
a. good day
b. GOOD DAY
c. Good Day
d None of the above
Ans: C
39. Which one of the following is turnary operator?
a. &
b. =
c. :?
d. ?:
e. +=
f. &&
Ans: D
40. If you want to pass a value to a function by reference, the correct way is:
a. function ModifyReport(&$Rptfile){}
b. function ModifyReport($Rptfile){}
c. function ModifyReport(ByRef $Rptfile){}
d. function ModifyReport(&Rptfile){}
Ans: A
THANKS TO ALL………………..
A. checkbox
B. select
C. file
D. all of the above
Ans : A
2. State whether true or false
Paamayim nekudotayim operator allows access only to the static members of a class?
a. True
b. False
Ans: A
3. What is the output of the following code?
$a=500;
$b=200;
echo $a % 2 * $b;
a. 100
b. 200
c. 500
d. 0
e. Syntax error
Ans: D
4. which function will suitable replace “X”?
a. Filesize
b. Size
c. sizeofFile
d. getSize
Ans: A
5. Which of the following is not true for a persistent connection?
a. these are not closed even after the execution of the script
b. these are mainly used to increase the efficiency of thesystem
c. These can’t be converted to non-persistent connections
d. These are preferable not used in the scripts involving transactions
Ans: C
6. Which one is correct?
a. $s=fwrite(“a string here”);
b. $s=fwrite($fp,”a string here”);
c. $s=fwrite(“a string here ”,$fp);
d. none of the above
Ans: B
7. Which will be the output of the following code?
$a=0.0;
For($i=0;$i
the getSal() of emp has to behave exacltyle as getSal() ofperson . Which of the following lines of code would you use to replace the “???”?
a. Parent:: getSal();
b. Person::getSal();
c. Parent::getsal;
d. Person::getSal;
Ans: A
11. What is true regarding this code?
a. setcookie will return false
b. setcookie will return true
c. setcookie will return null
d. Any of the above can happen
Answer: b
12. Which of the following is not the correct way of starting a session?
a. session.auto_start
b. session_register()
c. session_initiate()
d. session_start()
Answer: c;
13. Which of the following functions do you need to implement HTTP Basic Authentication?
a. authenticate ()
b. header ()
c. basic_auth ()
d. None of the above
Answer: d;
14. Which of the following Command Line Interface constant is not defined in the CLI SAPI?
a. STDIN
b. STDOUT
c. STDPRT
d. STDERR
Answer: c;
15. Which of the following statements is correct with regard to final and abstract?
a. An abstract class cannot have final methods
b. An abstract class cannot have non abstract methods
c. A final class cannot have abstract methods
d. A final class cannot have final methods
Answer: C
Explanation :
a. An abstract class can have final method.
b. An abstract class can have other than abstract method.
c. a final class can have final method (but not a must requirement).
d. BUT a final class cannot have abstract method.
16. Which composite data types are supported by php?
a. Array
b. Enumeration
c. List
d. Object
e. Integer
Answer: A and D
17. The default value of register_globals in PHP is:
a. Off
b. On
Answer A
18. Using Register Globals
WarningThis feature has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged.
Perhaps the most controversial change in PHP is when the default value for the PHP directive register_globals went from ON to OFF in PHP » 4.2.0.
Choose the correct statement:
a. include() includes and evaluates a specific file
b. require() includes and evaluates a specific file
c. include_once() includes and evaluates a specific file only if it has not been included before
d. require_once() includes and evaluates a specific file only if it has not been included before
e. All of the above
Answer: E
19. If the session_cache_expire() is not set, then by default the session cache will expire after:
a. 1 hr
b. 2 hrs
c. 3 hrs
d. 4 hrs
Answer: C
20. The cache expire is reset to the default value of 180 stored in session.cache_expire at request startup time. Thus, you need to call session_cache_expire() for every request (and before session_start() is called).
What will be the output of the following script?
$count=50;
function Argument()
{
$count++;
echo $count;
}
Argument();
?>
a. It will print 50
b. It will print 51
c. It will print 52
d. It will print 1
Answer: D;
Explanation : $count is local in the method.
21. Which of the following statements is true with regard to comparisons in PHP5?
a. With “= =” operator, two object instances are equal if they have the same attributes and values, and are instances of a different class.
b. With “==” operator two object instances are equal if they have the same attributes and values, and are instances of the same class.
c. With (===) operator, object variables are identical if and only if they refer to the same instance of the same class.
d. With (===) operator, object variables are identical if and only if they refer to the different instance of the same class.
Answer C;
21. What will be the output of the following code?
$i=4;
$j=30;
$k=0;
$k=$j++/$i++;
echo $i . ” ” . $j . ” ” . $k . ” “;
a. 5 31 6
b. 5 31 6.2
c. 5 31 7
d. 4 31 7.5
e. 5 31 7.5
Answer e;
Explanation : After increment then Divition command will execute.
22. Which of the following is a not a correct way of commenting in php?
a. //PHP Comment
b. /*PHP Comment*/
c. #PHP Comment
d. /#PHP Comment
Answer d;
23. Following is a php code block:
$m=9;
$n=99;
$z=8;
$z=$n++/$m++ + –$z;
echo $z;
what will be the output?
a. 16
b. 18
c. 19
d. 20
e. 17
Answer: B; (?? not understand)
24. Which of the following is the correct way of specifying default value?
a. function GetDiscount($Type = “Special”) { . . . }
b. function GetDiscount(Type := “Special”) { . . . }
c. function GetDiscount($Type := “Special”) { . . . }
d. function GetDiscount($Type : “Special”) { . . . }
Answre a;
25. With reference to the following php script:
print ‘Text Line1′
print ‘Text Line2′
?>
What will be the output on running the script?
a. Text Line1Text Line2
b. Text Line1 Text Line2
c. ‘Text Line1′
d. ‘Text Line2′
e. Error message will be printed
Answer e;
26. Late PHP versions support remote file accessing for the functions:
a. include()
b. include_once()
c. require_once()
d. Both a and b
e. Both b and c
Answer: e;
27. Which of the following does not represent logical AND operator in PHP?
a. &
b. &&
c. And
d. AND
Answer: a
28. Which of the following are invalid data types in PHP?
a. string
b. integer
c. float
d. char
e. array
f. object
Answer: D
29. The Manager and Office classes are as follows:
class Manager{
function printName() {
echo “Manager”;
}
}
class Office{
function getManager() {
return new Manager();
}
}
$ofc = new Office();
???
?>
Which of the following should replace ‘???’ to obtain the value of printName() function?
a. $ofc->getManager()->printName();
b. new Office()->getManager()->printName();
c. $ofc->getManager->printName;
d. Office::getManager()::printName();
Answer: a
30.Which of the following variable declarations within a class is invalid in PHP5?
a. private $type = ‘moderate’;
b. var $term =3;
c. public $amnt = ’500′;
d. protected $name = ‘Quantas Private Limited’;
Answer: b;
31. What will be the output of following code?
$arr = “a”;
$arr[0]=”b”;
echo $arr;
echo $arr[0];
a. ab
b. $arr is undefined
c. bb
d. Parse error
Answer: C
32. What is the result of the following expression?
5+2 * 4+6
a. 70
b. 19
c. 34
d. 21
Anwer: b
33. What will be the output of following code?
$var = 1 + “-1.3e3?;
echo $var;
a. -1299
b. 1
c. 1-1.3e3
d. Error:cannot add integer and string
An swer: a
34. What will be the output of following code?
$var1=”a”;
$$var1=”b”;
echo “$var1 $a”;
a. a b
b. $var1 $a
c. Error: $a is undefined
d. Error: Parse error in line 2 ($$var1 = “b”)
Answer a
35. What will be the ouput of the following code?
if (-1)
print “true”;
else
print “false”;
?>
a. true
b. false
Answer: a
36. What will be the output of the following code?
echo 12 . 6;
a. 12 . 6
b. 126
c. 12.6
d. Error: You cannot add integers through the concatenation operator(.)
Answer: B
37. Consider the following sample code:
$x = 0xFFFE;
$y = 2;
$z = $x && $y;
What will be the value of $z?
a. 0
b. 1
c. 2
d. 3
e. 4
Answer: B
38. what would be the output of the following code?
$stg=’good day’;
$stg= ucwords($stg);
echo $stg;
?>
a. good day
b. GOOD DAY
c. Good Day
d None of the above
Ans: C
39. Which one of the following is turnary operator?
a. &
b. =
c. :?
d. ?:
e. +=
f. &&
Ans: D
40. If you want to pass a value to a function by reference, the correct way is:
a. function ModifyReport(&$Rptfile){}
b. function ModifyReport($Rptfile){}
c. function ModifyReport(ByRef $Rptfile){}
d. function ModifyReport(&Rptfile){}
Ans: A
THANKS TO ALL………………..
odesk English spelling Test U S Version
English Spelling Test (U.S. Version)
Question: 01
Identify the misspelled word in the list below.
a. Accomodate
b. Analyze
c. Acknowledgment
d. Asterisk
02. Identify the misspelled word in the list below.
a. Yacht
b. Youthful
c. Yeilding
d. Yesterday
03. Complete the following sentence by choosing the correct spelling of the missing word.
The clown’s performance was _______________, to say the least.
a. dissapointing
b. dissappointing
c. disapointing
d. disappointing
04. Choose the correct spelling of the word from the options below.
a. Vacuum
b. Vaccuum
c. Vacumm
d. Vaccum
05. Choose the correct spelling of the word from the options below.
a. Manoeuvar
b. Manouver
c. Maneuver
d. Manuver
06. Complete the following sentence by choosing the correct spelling of the missing word.
Sally’s nervous __________ left her standing at the altar.
a. fiancé
b. finance
c. feancé
d. fience
07. Complete the following sentence by choosing the correct spelling of the missing word.
Mrs. Baker took her ______________ class on a field trip to the zoo.
a. kindergarden
b. kindegarten
c. kindergarten
d. kindegarden
08. Complete the following sentence by choosing the correct spelling of the missing word.
Hazel Dormouse is a _________ creature.
a. nocternal
b. nocturnal
c. noctarnal
d. nacturnal
09. Complete the following sentence by choosing the correct spelling of the missing word.
The savvy dancer acted as a __________ between the detective and the cabaret owner.
a. liasion
b. liaison
c. liasone
d. leason
10. Complete the following sentence by choosing the correct spelling of the missing word.
_________animals feed almost exclusively on meat.
a. Carnivorus
b. Carnivorous
c. Carnivoures
d. Carnivoreus
11. Choose the correct spelling of the word from the options below.
a. Gauge
b. Gaje
c. Guage
d. Gaige
12. Complete the following sentence by choosing the correct spelling of the missing word.
Emma has always been fascinated by the way the mind works, so she’s decided to get a degree in __________.
a. pshycology
b. psycology
c. psyhcology
d. psychology
13. Choose the correct spelling of the word from the options below.
a. Efficency
b. Efficentsy
c. Efficiensy
d. Efficiency
14. Choose the correct spelling of the word from the options below.
a. Heinous
b. Henous
c. Heinus
15. Identify the misspelled word in the list below.
a. Stationery
b. Statutory
c. Sincerely
d. Sanctuery
16. Identify the misspelled word in the list below.
a. Parallel
b. Prevalent
c. Prejudice
d. Perserverance
17. Choose the correct spelling of the word from the options below.
a. Leiutenant
b. Luietenant
c. Lieutanent
d. Lieutenant
18. Identify the misspelled word in the list below.
a. Pageant
b. Poignant
c. Plummage
d. Priggish
19. Identify the misspelled word in the list below.
a. Quixotic
b. Quite
c. Questionaire
d. Quarantine
20. Choose the correct spelling of the word from the options below.
a. Adress
b. Addrress
c. Addres
d. Address
21. Choose the correct spelling of the word from the options below.
a. Reminiscience
b. Reminiscence
c. Reminescence
d. Reminisense
22. Identify the misspelled word in the list below.
a. Rhythmical
b. Reminiscence
c. Rheumatism
d. Resevoir
23. Complete the following sentence by choosing the correct spelling of the missing word.
The judge granted the reluctant witness complete ____________ from prosecution for his part in the crime.
a. amnesty
b. amnasty
c. anmesty
d. emnesty
24. Complete the following sentence by choosing the correct spelling of the missing word.
He __________ a summer house, an exercise bike, and a hamster in the divorce settlement.
a. accquired
b. ecquired
c. acquired
d. akquired
25. Choose the correct spelling of the word from the options below.
a. Temperamental
b. Tempermental
c. Temperamentle
d. Temparamental
26. Complete the following sentence by choosing the correct spelling of the missing word.
The crowd ________________ me on my acceptance into Mensa.
a. congradulated
b. congrachulated
c. congratulated
d. congratilated
27. Identify the misspelled word in the list below.
a. Cachet
b. Connoisseur
c. Charateristic
d. Catastrophe
28. Identify the misspelled word in the list below.
a. Wierd
b. Wired
c. Whined
d. Willful
29. Complete the following sentence by choosing the correct spelling of the missing word.
On the ____________ day of Christmas, Lucy was annoyed to find her yard full of noisy drummers drumming.
a. twelvth
b. twelfth
c. twelfeth
d. twelth
30. Identify the misspelled word in the list below.
a. Enhancement
b. Elicit
c. Enegma
d. Ecstasy
31. Identify the misspelled word in the list below.
a. Sophomore
b. Supersede
c. Susceptable
d. Spontaneous
32. Complete the following sentence by choosing the correct spelling of the missing word.
He wrote __________on every topic from shoestrings to string theory.
a. prollifically
b. prolificaly
c. prollificaly
d. prolifically
33. Identify the misspelled word in the list below.
a. Dexterity
b. Desicate
c. Dyeing
d. Desecrate
34. Complete the following sentence by choosing the correct spelling of the missing word.
Be sure to leave your travel __________with the secretary so he’ll know how to reach you while you’re away.
a. itenreray
b. itinerary
c. iteneray
d. itinirary
35. Complete the following sentence by choosing the correct spelling of the missing word.
My father does not believe in ____________ , but my mother does.
a. reincanation
b. reincarenation
c. reincarnation
d. reincantation
36. Complete the following sentence by choosing the correct spelling of the missing word.
Peter always makes such a _____________ of himself!
a. nuisance
b. nuisents
c. newsanse
d. nuisince
37. Complete the following sentence by choosing the correct spelling of the missing word.
Clara the cat simply chose to ignore the ______________ of our dog.
a. existence
b. existance
c. existense
d. existanse
38. Choose the correct spelling of the word from the options below.
a. Forfiet
b. Forfeit
c. Forefeit
d. Fourfit
39. Identify the misspelled word in the list below.
a. Fluorescent
b. Full fill
c. Facsimile
d. Fictitious
40. Complete the following sentence by choosing the correct spelling of the missing word.
Sam _________ a successful political campaign.
a. orchestraited
b. orchestrated
c. orchestrea
end
Question: 01
Identify the misspelled word in the list below.
a. Accomodate
b. Analyze
c. Acknowledgment
d. Asterisk
02. Identify the misspelled word in the list below.
a. Yacht
b. Youthful
c. Yeilding
d. Yesterday
03. Complete the following sentence by choosing the correct spelling of the missing word.
The clown’s performance was _______________, to say the least.
a. dissapointing
b. dissappointing
c. disapointing
d. disappointing
04. Choose the correct spelling of the word from the options below.
a. Vacuum
b. Vaccuum
c. Vacumm
d. Vaccum
05. Choose the correct spelling of the word from the options below.
a. Manoeuvar
b. Manouver
c. Maneuver
d. Manuver
06. Complete the following sentence by choosing the correct spelling of the missing word.
Sally’s nervous __________ left her standing at the altar.
a. fiancé
b. finance
c. feancé
d. fience
07. Complete the following sentence by choosing the correct spelling of the missing word.
Mrs. Baker took her ______________ class on a field trip to the zoo.
a. kindergarden
b. kindegarten
c. kindergarten
d. kindegarden
08. Complete the following sentence by choosing the correct spelling of the missing word.
Hazel Dormouse is a _________ creature.
a. nocternal
b. nocturnal
c. noctarnal
d. nacturnal
09. Complete the following sentence by choosing the correct spelling of the missing word.
The savvy dancer acted as a __________ between the detective and the cabaret owner.
a. liasion
b. liaison
c. liasone
d. leason
10. Complete the following sentence by choosing the correct spelling of the missing word.
_________animals feed almost exclusively on meat.
a. Carnivorus
b. Carnivorous
c. Carnivoures
d. Carnivoreus
11. Choose the correct spelling of the word from the options below.
a. Gauge
b. Gaje
c. Guage
d. Gaige
12. Complete the following sentence by choosing the correct spelling of the missing word.
Emma has always been fascinated by the way the mind works, so she’s decided to get a degree in __________.
a. pshycology
b. psycology
c. psyhcology
d. psychology
13. Choose the correct spelling of the word from the options below.
a. Efficency
b. Efficentsy
c. Efficiensy
d. Efficiency
14. Choose the correct spelling of the word from the options below.
a. Heinous
b. Henous
c. Heinus
15. Identify the misspelled word in the list below.
a. Stationery
b. Statutory
c. Sincerely
d. Sanctuery
16. Identify the misspelled word in the list below.
a. Parallel
b. Prevalent
c. Prejudice
d. Perserverance
17. Choose the correct spelling of the word from the options below.
a. Leiutenant
b. Luietenant
c. Lieutanent
d. Lieutenant
18. Identify the misspelled word in the list below.
a. Pageant
b. Poignant
c. Plummage
d. Priggish
19. Identify the misspelled word in the list below.
a. Quixotic
b. Quite
c. Questionaire
d. Quarantine
20. Choose the correct spelling of the word from the options below.
a. Adress
b. Addrress
c. Addres
d. Address
21. Choose the correct spelling of the word from the options below.
a. Reminiscience
b. Reminiscence
c. Reminescence
d. Reminisense
22. Identify the misspelled word in the list below.
a. Rhythmical
b. Reminiscence
c. Rheumatism
d. Resevoir
23. Complete the following sentence by choosing the correct spelling of the missing word.
The judge granted the reluctant witness complete ____________ from prosecution for his part in the crime.
a. amnesty
b. amnasty
c. anmesty
d. emnesty
24. Complete the following sentence by choosing the correct spelling of the missing word.
He __________ a summer house, an exercise bike, and a hamster in the divorce settlement.
a. accquired
b. ecquired
c. acquired
d. akquired
25. Choose the correct spelling of the word from the options below.
a. Temperamental
b. Tempermental
c. Temperamentle
d. Temparamental
26. Complete the following sentence by choosing the correct spelling of the missing word.
The crowd ________________ me on my acceptance into Mensa.
a. congradulated
b. congrachulated
c. congratulated
d. congratilated
27. Identify the misspelled word in the list below.
a. Cachet
b. Connoisseur
c. Charateristic
d. Catastrophe
28. Identify the misspelled word in the list below.
a. Wierd
b. Wired
c. Whined
d. Willful
29. Complete the following sentence by choosing the correct spelling of the missing word.
On the ____________ day of Christmas, Lucy was annoyed to find her yard full of noisy drummers drumming.
a. twelvth
b. twelfth
c. twelfeth
d. twelth
30. Identify the misspelled word in the list below.
a. Enhancement
b. Elicit
c. Enegma
d. Ecstasy
31. Identify the misspelled word in the list below.
a. Sophomore
b. Supersede
c. Susceptable
d. Spontaneous
32. Complete the following sentence by choosing the correct spelling of the missing word.
He wrote __________on every topic from shoestrings to string theory.
a. prollifically
b. prolificaly
c. prollificaly
d. prolifically
33. Identify the misspelled word in the list below.
a. Dexterity
b. Desicate
c. Dyeing
d. Desecrate
34. Complete the following sentence by choosing the correct spelling of the missing word.
Be sure to leave your travel __________with the secretary so he’ll know how to reach you while you’re away.
a. itenreray
b. itinerary
c. iteneray
d. itinirary
35. Complete the following sentence by choosing the correct spelling of the missing word.
My father does not believe in ____________ , but my mother does.
a. reincanation
b. reincarenation
c. reincarnation
d. reincantation
36. Complete the following sentence by choosing the correct spelling of the missing word.
Peter always makes such a _____________ of himself!
a. nuisance
b. nuisents
c. newsanse
d. nuisince
37. Complete the following sentence by choosing the correct spelling of the missing word.
Clara the cat simply chose to ignore the ______________ of our dog.
a. existence
b. existance
c. existense
d. existanse
38. Choose the correct spelling of the word from the options below.
a. Forfiet
b. Forfeit
c. Forefeit
d. Fourfit
39. Identify the misspelled word in the list below.
a. Fluorescent
b. Full fill
c. Facsimile
d. Fictitious
40. Complete the following sentence by choosing the correct spelling of the missing word.
Sam _________ a successful political campaign.
a. orchestraited
b. orchestrated
c. orchestrea
end
oDesk Readiness Test Answer
Question:01
Can I start my own agency on oDesk?
https://kb.odesk.com/questions/1372
a. Yes! You can create an agency and earn money by selling the services of your agency contractors.
b. No, oDesk is for independent contractors only
Ans: a
Question:02
Which of the following are TRUE about your oDesk Work Diary?
https://kb.odesk.com/questions/825
a. Allows employers to see when and what their contractors are working on
b. Enables automatic billing for hourly contracts
c. The oDesk Team application auto-tracks time which can be reviewed in the Work Diary
d. Manual time can be added, but isn’t guaranteed payment
e. All of the above
Ans: e
Question:03
Which of the following statements about oDesk fees is FALSE?
https://www.odesk.com/help/help/permalink/498
a. The oDesk fee is 10% of the employer’s payment to oDesk
b. oDesk is free to join
c. oDesk is free for contractors to apply and work on jobs
d. The oDesk fee is $2/hour for hourly contracts
e. All of the above
Ans: d
Question:04
Which of the following actions are NOT allowed when applying to job postings?
https://www.odesk.com/help/help/permalink/359#apply
a. Misrepresenting your skills, experiences, portfolio, etc.
b. Submitting boilerplate, placeholder or generic bids or other spam
c. Disclosing direct contact information
d. Applying when you are not truly qualified
e. All of the above
Ans:e
Question:05
Which of the following are required to qualify for guaranteed payment?
https://www.odesk.com/help/help/permalink/475
a. An hourly contract
b. Tracking your time with the oDesk Team application
c. Entering relevant memos
d. An employer with a verified payment method
e. All of the above
Ans:e
Question:06
Which of the following are NOT permitted on oDesk?
https://www.odesk.com/help/help/permalink/400
a. Sharing a single account between multiple people
b. Opening more than one account on oDesk
c. Using a logo or clip art as your profile portrait
d. Using a fake name
e. All of the above
Ans:e
Question:07
Which of the following is TRUE about fixed-price contracts?
https://kb.odesk.com/questions/1034
a. Employer billed automatically each week
b. How much to pay and when to pay is at the employer’s discretion
c. Hours worked will show on your profile
d. Time-tracking required
e. Qualify for the oDesk payment guarantee
Ans:b
Question:08
The oDesk Team application Time Tracker records which of the following?
https://kb.odesk.com/questions/1167
a. Screenshot of the active screen once per billing segment
b. Number of keystrokes
c. Number of mouse clicks
d. Memo entered by the contractor
e. All of the above
Ans:e
Question:09
What happens when a contract ends?
https://kb.odesk.com/questions/735
a. You lose access to the Work Diary
b. Both users can leave feedback
c. The feedback system is double blind, so your employer cannot see the feedback you left them until after they have left feedback for you
d. Hours will be billed (and disputes may be filed) according to the usual weekly payment schedule
e. All of the above
Ans: e
Question:10
Which of the following is FALSE about weekly limits on hourly contracts?
https://kb.odesk.com/questions/697
a. Hours in excess of the weekly limit will not be billed to the employer
b. You should discuss any need to work beyond your limit with your employer
c. The weekly limit can be changed by the contractor
d. The weekly limit can be changed by the employer
e. Hours in excess of the weekly limit are not guaranteed payment
Ans: c
Question:11
Which of the following are TRUE about the oDesk dispute process?
https://www.odesk.com/help/help/permalink/118#contractor
a. The dispute process only applies to Hourly contracts
b. If you fail to respond, oDesk will refund the employer and suspend your account
c. If you reject the dispute, oDesk specialists will review your Work Diary and evaluate it against the criteria of the payment guarantee
d. Disputed hours ruled in the employers favor are refunded
e. All of the above
Ans: e
Can I start my own agency on oDesk?
https://kb.odesk.com/questions/1372
a. Yes! You can create an agency and earn money by selling the services of your agency contractors.
b. No, oDesk is for independent contractors only
Ans: a
Question:02
Which of the following are TRUE about your oDesk Work Diary?
https://kb.odesk.com/questions/825
a. Allows employers to see when and what their contractors are working on
b. Enables automatic billing for hourly contracts
c. The oDesk Team application auto-tracks time which can be reviewed in the Work Diary
d. Manual time can be added, but isn’t guaranteed payment
e. All of the above
Ans: e
Question:03
Which of the following statements about oDesk fees is FALSE?
https://www.odesk.com/help/help/permalink/498
a. The oDesk fee is 10% of the employer’s payment to oDesk
b. oDesk is free to join
c. oDesk is free for contractors to apply and work on jobs
d. The oDesk fee is $2/hour for hourly contracts
e. All of the above
Ans: d
Question:04
Which of the following actions are NOT allowed when applying to job postings?
https://www.odesk.com/help/help/permalink/359#apply
a. Misrepresenting your skills, experiences, portfolio, etc.
b. Submitting boilerplate, placeholder or generic bids or other spam
c. Disclosing direct contact information
d. Applying when you are not truly qualified
e. All of the above
Ans:e
Question:05
Which of the following are required to qualify for guaranteed payment?
https://www.odesk.com/help/help/permalink/475
a. An hourly contract
b. Tracking your time with the oDesk Team application
c. Entering relevant memos
d. An employer with a verified payment method
e. All of the above
Ans:e
Question:06
Which of the following are NOT permitted on oDesk?
https://www.odesk.com/help/help/permalink/400
a. Sharing a single account between multiple people
b. Opening more than one account on oDesk
c. Using a logo or clip art as your profile portrait
d. Using a fake name
e. All of the above
Ans:e
Question:07
Which of the following is TRUE about fixed-price contracts?
https://kb.odesk.com/questions/1034
a. Employer billed automatically each week
b. How much to pay and when to pay is at the employer’s discretion
c. Hours worked will show on your profile
d. Time-tracking required
e. Qualify for the oDesk payment guarantee
Ans:b
Question:08
The oDesk Team application Time Tracker records which of the following?
https://kb.odesk.com/questions/1167
a. Screenshot of the active screen once per billing segment
b. Number of keystrokes
c. Number of mouse clicks
d. Memo entered by the contractor
e. All of the above
Ans:e
Question:09
What happens when a contract ends?
https://kb.odesk.com/questions/735
a. You lose access to the Work Diary
b. Both users can leave feedback
c. The feedback system is double blind, so your employer cannot see the feedback you left them until after they have left feedback for you
d. Hours will be billed (and disputes may be filed) according to the usual weekly payment schedule
e. All of the above
Ans: e
Question:10
Which of the following is FALSE about weekly limits on hourly contracts?
https://kb.odesk.com/questions/697
a. Hours in excess of the weekly limit will not be billed to the employer
b. You should discuss any need to work beyond your limit with your employer
c. The weekly limit can be changed by the contractor
d. The weekly limit can be changed by the employer
e. Hours in excess of the weekly limit are not guaranteed payment
Ans: c
Question:11
Which of the following are TRUE about the oDesk dispute process?
https://www.odesk.com/help/help/permalink/118#contractor
a. The dispute process only applies to Hourly contracts
b. If you fail to respond, oDesk will refund the employer and suspend your account
c. If you reject the dispute, oDesk specialists will review your Work Diary and evaluate it against the criteria of the payment guarantee
d. Disputed hours ruled in the employers favor are refunded
e. All of the above
Ans: e
oDesk Readiness Test for Independent Contractors and Staffing Managers
by kaderontor469161 On April 1, 2012 ·
1. Which of the following is FALSE about weekly limits on hourly contracts?
a.Hours in excess of the weekly limit will not be billed to the employer
b.You should discuss any need to work beyond your limit with your employer
c. The weekly limit can be changed by the contractor (Answer)
d.The weekly limit can be changed by the employer
e. Hours in excess of the weekly limit are not guaranteed payment
2.Which of the following actions are NOT allowed when applying to job openings?
e. All of the above (Answer)
3.Which of the following statements about the oDesk Team application are true?
e. All of the above (Answer)
4. Which of the following are TRUE about the oDesk dispute process?
a.The dispute process only applies to Hourly contracts
b. If you fail to respond, oDesk will refund the employer and suspend your account
c. If you reject the dispute, oDesk specialists will review your Work Diary and evaluate it against the criteria of the payment guarantee
d. Disputed hours ruled in the employers favor are refunded
e. All of the above (Answer)
5. Which of the following are TRUE about your oDesk Work Diary?
a. Allows employers to see when and what their contractors are working on
b. Enables automatic billing for hourly contracts
c.The oDesk Team application auto-tracks time which can be reviewed in the Work Diary
d. Manual time can be added, but isn’t guaranteed payment
e. All of the above (Answer)
6.What happens when a contract ends?
a. You lose access to the Work Diary
b. Both users can leave feedback
c. The feedback system is double blind, so your employer cannot see the feedback you left them until after they have left feedback for you
d. Hours will be billed (and disputes may be filed) according to the usual weekly payment schedule
e. All of the above (Answer)
7.Can I start my own agency on oDesk?
a. Yes! You can create an agency and earn money by selling the services of your agency contractors. (Answer)
b. No, oDesk is for independent contractors only
8.Which of the following is true of your oDesk timelog?
e. All of the above (Answer)
9 Which of the following are required to qualify for guaranteed payment?
a. An hourly contract
b. Tracking your time with the oDesk Team application
c. Entering relevant memos
d. An employer with a verified payment method
e. All of the above (Answer)
10 Which of the following statements are correct about oDesk fees?
e. All of the above (Answer)
11. Which of the following actions are NOT allowed when applying to job postings?
a. Misrepresenting your skills, experiences, portfolio, etc.
b. Submitting boilerplate, placeholder or generic bids or other spam
c. Disclosing direct contact information
d. Applying when you are not truly qualified
e. All of the above (Answer)
12. Which of the following are NOT permitted on oDesk?
a. Sharing a single account between multiple people
b. Opening more than one account on oDesk
c. Using a logo or clip art as your profile portrait
d. Using a fake name
e. All of the above (Answer)
13. What do you need to do to ensure guaranteed payment on hourly jobs?
e. All of the above (Answer)
14. Which of the following break the oDesk user agreement?
e. All of the above (Answer)
15.Which of the following statements about oDesk fees is FALSE?
a. The oDesk fee is 10% of the employer’s payment to oDesk
b. oDesk is free to join
c. oDesk is free for contractors to apply and work on jobs
d. The oDesk fee is $2/hour for hourly contracts (Answer)
e. All of the above
16. Buyers set weekly limits on hourly assignments, how do these work?
e. All of the above (Answer)
17. The oDesk Team application Time Tracker records which of the following
a. Screenshot of the active screen once per billing segment
b. Number of keystrokes
c. Number of mouse clicks
d. Memo entered by the contractor
e. All of the above (Answer)
18. Can I start my own company on oDesk?
a. Yes! oDesk allows you to build and manage a team of workers, colleagues and collaborators. You can even subcontract other workers on oDesk to other customers oDesk (and take a cut). (Answer)
b. No
19.How does feedback work on oDesk?
e. All of the above (Answer)
20. Which of the following is TRUE about fixed-price contracts?
a. Employer billed automatically each week
b. How much to pay and when to pay is at the employer’s discretion (Answer)
c. Hours worked will show on your profile
d. Time-tracking required
e. Qualify for the oDesk payment guarantee
1. Which of the following is FALSE about weekly limits on hourly contracts?
a.Hours in excess of the weekly limit will not be billed to the employer
b.You should discuss any need to work beyond your limit with your employer
c. The weekly limit can be changed by the contractor (Answer)
d.The weekly limit can be changed by the employer
e. Hours in excess of the weekly limit are not guaranteed payment
2.Which of the following actions are NOT allowed when applying to job openings?
e. All of the above (Answer)
3.Which of the following statements about the oDesk Team application are true?
e. All of the above (Answer)
4. Which of the following are TRUE about the oDesk dispute process?
a.The dispute process only applies to Hourly contracts
b. If you fail to respond, oDesk will refund the employer and suspend your account
c. If you reject the dispute, oDesk specialists will review your Work Diary and evaluate it against the criteria of the payment guarantee
d. Disputed hours ruled in the employers favor are refunded
e. All of the above (Answer)
5. Which of the following are TRUE about your oDesk Work Diary?
a. Allows employers to see when and what their contractors are working on
b. Enables automatic billing for hourly contracts
c.The oDesk Team application auto-tracks time which can be reviewed in the Work Diary
d. Manual time can be added, but isn’t guaranteed payment
e. All of the above (Answer)
6.What happens when a contract ends?
a. You lose access to the Work Diary
b. Both users can leave feedback
c. The feedback system is double blind, so your employer cannot see the feedback you left them until after they have left feedback for you
d. Hours will be billed (and disputes may be filed) according to the usual weekly payment schedule
e. All of the above (Answer)
7.Can I start my own agency on oDesk?
a. Yes! You can create an agency and earn money by selling the services of your agency contractors. (Answer)
b. No, oDesk is for independent contractors only
8.Which of the following is true of your oDesk timelog?
e. All of the above (Answer)
9 Which of the following are required to qualify for guaranteed payment?
a. An hourly contract
b. Tracking your time with the oDesk Team application
c. Entering relevant memos
d. An employer with a verified payment method
e. All of the above (Answer)
10 Which of the following statements are correct about oDesk fees?
e. All of the above (Answer)
11. Which of the following actions are NOT allowed when applying to job postings?
a. Misrepresenting your skills, experiences, portfolio, etc.
b. Submitting boilerplate, placeholder or generic bids or other spam
c. Disclosing direct contact information
d. Applying when you are not truly qualified
e. All of the above (Answer)
12. Which of the following are NOT permitted on oDesk?
a. Sharing a single account between multiple people
b. Opening more than one account on oDesk
c. Using a logo or clip art as your profile portrait
d. Using a fake name
e. All of the above (Answer)
13. What do you need to do to ensure guaranteed payment on hourly jobs?
e. All of the above (Answer)
14. Which of the following break the oDesk user agreement?
e. All of the above (Answer)
15.Which of the following statements about oDesk fees is FALSE?
a. The oDesk fee is 10% of the employer’s payment to oDesk
b. oDesk is free to join
c. oDesk is free for contractors to apply and work on jobs
d. The oDesk fee is $2/hour for hourly contracts (Answer)
e. All of the above
16. Buyers set weekly limits on hourly assignments, how do these work?
e. All of the above (Answer)
17. The oDesk Team application Time Tracker records which of the following
a. Screenshot of the active screen once per billing segment
b. Number of keystrokes
c. Number of mouse clicks
d. Memo entered by the contractor
e. All of the above (Answer)
18. Can I start my own company on oDesk?
a. Yes! oDesk allows you to build and manage a team of workers, colleagues and collaborators. You can even subcontract other workers on oDesk to other customers oDesk (and take a cut). (Answer)
b. No
19.How does feedback work on oDesk?
e. All of the above (Answer)
20. Which of the following is TRUE about fixed-price contracts?
a. Employer billed automatically each week
b. How much to pay and when to pay is at the employer’s discretion (Answer)
c. Hours worked will show on your profile
d. Time-tracking required
e. Qualify for the oDesk payment guarantee
odesk seo test answer
1. Which black hat Seo Techique is characterized by a method to
deceive search engines, by detecting the search engine bot and
“feeding” it with a different HTML actually served to users?
ans: Cloaking
2. Which is the function of indexer part of the Google search Engine?
ans. It helps to retrieve web pages from the world wide wed
3. Google display up to _______ characters of a webpages Title Tag.
ans: 66
4. which of the following can be termed as a good keyword selection and placement strategies?
ans: a. targeting synonyms of the main keyword
d. Optimizing five or more keywords per page
5. What will happen if you type the words Certification-Networking in the google search box?
ans: google will find all the web pages in which the words certerfication and networking appear together
6. which search engine technology prevents a website from appearing in numerous top positions in the search engine result pages
ans: clustering
7. if a websites search engine saturation with respect to a particular search engine is 20%. what does it mean?
ans: only 20% of the pages of the website will be indexed by the search engine
8. Which of the following statements about google techinical and quality guidlines is true.
ans: Avoid using robot.txt to prevent crawling of search results pages or other auto- generated pages, even if they dont add much value for users coming from the search engines.
9. Impleminting a 301 permanent Redirects on the old pages to redirect to the new pages is a good idea from the SEO perspective.
True or False?
ans: True
10. what is the name of the search engine technology due to which a query for the word ‘actor’ will also show search results for related words such as actress, acting or act?
ans: RSD ( real time synonym detection )
11. Are Rss/Atom feeds returned in Google search results?
ans:No
12. All major search engines are case sensitive
ans: False
13. Cloaking is a controversial SEO technique. What does it involve
ans: Offering a different set of web pages to the search engines
14. which of the following statements is correct with regard to the description meta tag?
ans: Google uses the meta description to generate the search engine results pages.
15. which of the following statements about the search engine optimization techniques are correct.
ans: websites with deep linking are looked at the favorably by search engines
16.Which of the following factors have an impact on the google pagerank
ans: the subject matter of the site providing the inbound link to a page of a web site
17. what is the most likely time period required for getting a google page rank
ans: More Than 3 monts.
18. Which of the following is an ethical SEO Techique?
ans: Non of the above.
19. What is Anchor text
ans: it is the visible text that is hyper linked to another page
20. Google looks down upon paid links for enhancing page rank. If a website sells a links, what actions does Google recommend to avoid being penalized
ans: Paid links should be disclosed through index-nofollow attribute in the hyperlink
21. if you search for the term “iq test” in the word tracker keyword suggestion tool, will it return the number of independent searches for the term “iq”
Yes or no?
ans: no
22. if you enter “help site:http://www.expertrating.com‘ in the google search box, what will google search for
ans: it will find pages about help with-in http://www.expertrating.com
23. which of the following website design guidelines have been recommended by Google
ans: Every page should be reachable from at least one static text link
24. Which of the following statements regarding website content are correct?
ans: If you have two versions of a document on your website, google recommends that you only allow the indexing of the better version
25. which of the following statements about the RSS are correct.
ans: it is a form of XML
26. what is the main reason for the effectiveness of optimizing a webpages towards a long tail keyword search
ans: there are fewer websites that have targeted such keywords.
27. how are the site maps important for the search engine optimization process
ans:ste maps help the search engine spider pick up more pages from the website..
28. which of the following actions could get you banned by Google
ans:non of the above.
29. Do search engines such as google detect innatural linking patterns by checking the Class C ip address of the page where the link to the websites originates? Yes or no?
ans:yes
30. what is the term for optimization strategies that are in an unknown area of reputability/validity
ans:Silver hat techiques
ans: Cloaking
2. Which is the function of indexer part of the Google search Engine?
ans. It helps to retrieve web pages from the world wide wed
3. Google display up to _______ characters of a webpages Title Tag.
ans: 66
4. which of the following can be termed as a good keyword selection and placement strategies?
ans: a. targeting synonyms of the main keyword
d. Optimizing five or more keywords per page
5. What will happen if you type the words Certification-Networking in the google search box?
ans: google will find all the web pages in which the words certerfication and networking appear together
6. which search engine technology prevents a website from appearing in numerous top positions in the search engine result pages
ans: clustering
7. if a websites search engine saturation with respect to a particular search engine is 20%. what does it mean?
ans: only 20% of the pages of the website will be indexed by the search engine
8. Which of the following statements about google techinical and quality guidlines is true.
ans: Avoid using robot.txt to prevent crawling of search results pages or other auto- generated pages, even if they dont add much value for users coming from the search engines.
9. Impleminting a 301 permanent Redirects on the old pages to redirect to the new pages is a good idea from the SEO perspective.
True or False?
ans: True
10. what is the name of the search engine technology due to which a query for the word ‘actor’ will also show search results for related words such as actress, acting or act?
ans: RSD ( real time synonym detection )
11. Are Rss/Atom feeds returned in Google search results?
ans:No
12. All major search engines are case sensitive
ans: False
13. Cloaking is a controversial SEO technique. What does it involve
ans: Offering a different set of web pages to the search engines
14. which of the following statements is correct with regard to the description meta tag?
ans: Google uses the meta description to generate the search engine results pages.
15. which of the following statements about the search engine optimization techniques are correct.
ans: websites with deep linking are looked at the favorably by search engines
16.Which of the following factors have an impact on the google pagerank
ans: the subject matter of the site providing the inbound link to a page of a web site
17. what is the most likely time period required for getting a google page rank
ans: More Than 3 monts.
18. Which of the following is an ethical SEO Techique?
ans: Non of the above.
19. What is Anchor text
ans: it is the visible text that is hyper linked to another page
20. Google looks down upon paid links for enhancing page rank. If a website sells a links, what actions does Google recommend to avoid being penalized
ans: Paid links should be disclosed through index-nofollow attribute in the hyperlink
21. if you search for the term “iq test” in the word tracker keyword suggestion tool, will it return the number of independent searches for the term “iq”
Yes or no?
ans: no
22. if you enter “help site:http://www.expertrating.com‘ in the google search box, what will google search for
ans: it will find pages about help with-in http://www.expertrating.com
23. which of the following website design guidelines have been recommended by Google
ans: Every page should be reachable from at least one static text link
24. Which of the following statements regarding website content are correct?
ans: If you have two versions of a document on your website, google recommends that you only allow the indexing of the better version
25. which of the following statements about the RSS are correct.
ans: it is a form of XML
26. what is the main reason for the effectiveness of optimizing a webpages towards a long tail keyword search
ans: there are fewer websites that have targeted such keywords.
27. how are the site maps important for the search engine optimization process
ans:ste maps help the search engine spider pick up more pages from the website..
28. which of the following actions could get you banned by Google
ans:non of the above.
29. Do search engines such as google detect innatural linking patterns by checking the Class C ip address of the page where the link to the websites originates? Yes or no?
ans:yes
30. what is the term for optimization strategies that are in an unknown area of reputability/validity
ans:Silver hat techiques
No comments:
Post a Comment