Monday, September 18, 2017

Introduction to Resumes & Cover Letters - Udemy Course 100% Off

Introduction to Resumes & Cover Letters - Udemy Course

Be familiar with many key things, concepts and recent trends in job application for the markets Worldwide. This online course at udemy designed for young professionals or those who want to transfer from one industry or position to another who wanted to refresh their understanding of the job application process and modern expectations for CVs, resumes and cover letters

Udemy Coupon :https://www.udemy.com/entrepreneurship-part-time-entrepreneur-course/?couponCode=NEWBIZ
Read More
Be Skilled Online with 100% Free Premium Courses from Udemy

Get 100% Free Coupon Codes and Promo Codes with Direct Udemy Course Link. Enroll any of your choiceable courses for Free and be skilled online

Sunday, January 1, 2017

UpWork WordPress Test Answers 2017

Get the right Answers for Upwork WordPress in 2017

UpWork WordPress Test Answers

Beautiful designs, powerful features, and the freedom to build anything you want. WordPress is both free and priceless at the same time. Over 60 million people are using WordPress to power the web.

We will collect more Upwork WordPress Test Answers as soon as we get and we will continue to combine with this question and answers.

1. You can limit the number of revisions WordPress stores by _____Note: 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:
  1. adding the following line to your wp-config.php file: define(‘WP_POST_REVISIONS’, 3);
  2. using a plugin
  3. changing a setting on admin panel
2. Which of the following will hash a string/password to its md5 equivalent?
Answers:
  1. md5()
  2. wp_generate_password()
  3. wp_generate_md5()
  4. password_md5()
3. 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:
  1. my_admin()
  2. view_admin()
  3. is_admin()
  4. root_admin()
4. Which of the following functions are used to add administration menu item in WordPress ?
Answers:
  1. add_menu_page();
  2. add_admin_item();
  3. add_admin_page();
  4. add_admin_option();
5. Which of the following WordPress Multisite functions allows for getting content from one blog and display it on another?
Answers:
  1. switch_blog()
  2. switch_to_blog()
  3. restore_current_blog()
  4. restore_to_current_blog()
6. What is the BEST way to get last inserted row ID from WordPress database ?
Answers:
  1. Use the following code snippet $lastid->$wpdb=$last->get_row;
  2. 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.
  3. The following code snippet should be added $last = $wpdb->get_row(“SHOW TABLE STATUS LIKE ‘table_name'”); $lastid = $last->Auto_increment;
  4. Straight after the $wpdb->insert() insert, the following code should be added: $lastid = $wpdb->insert_id;
7. Which of the follow is a WordPress alternatives for Ruby on Rails?
Answers:
  1. Refinery
  2. Typof
  3. Symenta
  4. Rubyalt
8. Which of the following code snippets can be used to create custom POST status in wordpress 3.0 +?
Answers:
  1. register_new_post()
  2. register_post_status()
  3. add_new_post_status()
  4. modify_post_status()
9. How can the upload media panel be included in a WordPress template/plugin?
Answers:
  1. By using function wp_enqueue_script(‘media-upload’)
  2. By using function wp_add_media( );
  3. By using function wp_enqueue_script(‘upload’);
  4. By using function wp_add_script(‘media-upload’);
10. What are the database privileges that are required for WordPress?
Answers:
  1. insert, delete, update, drop and alter
  2. select, insert, delete, update, create, drop and alter
  3. insert, delete, update, create, drop and alter
  4. insert and delete
11. Which of the following is an example of a WordPress plugin that provides multilingual capabilities?
Answers:
  1. WP Super Cache
  2. qTranslate
  3. BuddyPress
  4. Hotfix
12. Which of the following functions can be used to create a WordPress page?
Answers:
  1. wp_insert_post()
  2. wp_insert_page()
  3. wp_create_post()
  4. wp_create_page()
13. Which function is used to display the name of current page in wordpress?
Answers:
  1. get_the_title()
  2. content_title()
  3. page_name()
  4. post_name()
14. Which of the following methods can be used to make permalinks SEO friendly?
Answers:
  1. Updating the database.
  2. Changing the source code.
  3. Configuring the feature in the config file.
  4. Configuring the feature in the admin settings.
15. User Level 7 converts to _________?
Answers:
  1. Contributor
  2. Author
  3. Editor
  4. Subscriber
  5. Administrator
16. Which of the following is the correct way to add custom excerpts length identifiers in WordPress?
Answers:
  1. By adding excerpt_length filter in function.php
  2. Can’t declare custom excerpts in wordpress
  3. Custom exceprts are already available in wordpress
  4. Using the_excerpt(‘long’); or the_excerpt(‘short’)
17. Which of the following is the correct sequence of steps to adapt a WordPress plugin to a multisite?
Answers:
  1. 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
  2. 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
  3. 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
  4. 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
18. On which of the following databases can WordPress be installed by default?
Answers:
  1. MySQL
  2. Oracle Database
  3. Microsoft SQL Server
  4. PostgreSQL
19. Which of the following actions must be performed to import data from wordpress.com?
Answers:
  1. Enter the full access to wordpress.com into the data import form so that it can automatically connect and directly retrieve content.
  2. Import from wordpress.com’s RSS.
  3. Login to wordpress.com, then the export data using the export tool, then import an exported xml file to the site.
20. Meta tags can be added to WordPress pages by ________________.
Answers:
  1. using plug-ins
  2. adding them to the header.php file
  3. updating the database
  4. 1 and 2
  5. and c
21. Which of the following codes will return the current plugin directory in WordPress?
Answers:
  1. <!–?php plugin_basename($file); ?–>
  2. <!–?php plugin_basename(‘url’); ?–>
  3. < !–?php bloginfo_plugin(‘url’); ?–>
  4. < !–?php content_plugin_url( $path ); ?–>
22. WordPress’s requirements are modest. At minimum, which of the following standards should your server support for WordPress 3.1?
Answers:
  1. PHP version 4.4.9 or greater, MySQL version 4.0 or greater
  2. PHP version 4.3 or greater, MySQL version 4.1.2 or greater
  3. PHP version 4.4.9 or greater, MySQL version 5.1 or greater
  4. PHP version 4.3 or greater, MySQL version 5.1 or greater
23. Which of the following will give the option to add inline Ajax for comment posting?
Answers:
  1. Enabling Ajax in the wp-config.php file
  2. Activating Ajax from the admin settings of WordPress
  3. Using the Ajax Comment Posting plugin
  4. WordPress doesn’t support inline Ajax.
24. What is the limitation to the depth of your categories?
Answers:
  1. 10 levels
  2. 20 levels
  3. No limit levels
25. Can the contents of the wp-content folder be moved or renamed without changing any settings?
Answers:
  1. Yes
  2. No
26. Which of the following code snippets best protects a system from SQL injections?
Answers:
  1. sql_real_escape_strong()
  2. mysql_real_escape()
  3. mysql_real_escape_string()
  4. mysql_not_real_delete_string()
27. Which of the following role levels has the highest privilege?
Answers:
  1. Level_0
  2. Level_10
  3. Depends on your settings.
  4. Every role level has the same privilege.
28. How can the Home link be disable from the WordPress top nav?
Answers:
  1. Using Jquery to hide it
  2. 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’ );
  3. wp_nav_menu( array(‘menu’ => ‘news’, ‘show_home’ => false))
  4. Can not disable the default Home link from wordpress top nav
29. Which of the following is the correct way to retrieve a featured image from a post?
Answers:
  1. <!–?php echo get_post_thumb($page->ID, ‘thumbnail’); ?–>
  2. <!–?php echo get_featured_image($page->ID, ‘thumbnail’); ?–>
  3. <!–?php echo get_the_post_thumbnail($page->ID, ‘thumbnail’); ?–>
  4. <!–?php echo get_post_thumbnail($page->ID, ‘thumbnail’); ?–>
30. Which of the following will correctly load localized (translated) text for a WordPress plugin?
Answers:
  1. function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); load_theme_textdomain(‘tutsplus’, $lang_dir); } add_action(‘after_setup_theme’, ‘custom_theme_setup’);
  2. function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); add_action(‘after_setup_theme’, ‘custom_theme_setup’); }
  3. function custom_theme_setup() { $lang_dir = get_template_directory() . ‘/lang’); add_action(‘after_setup_theme’, ‘custom_theme_setup’); } load_theme_textdomain(‘tutsplus’, $lang_dir);
  4. function load_theme_textdomain(‘tutsplus’, $lang_dir); { $lang_dir = get_template_directory() . ‘/lang’); custom_theme_setup(); } add_action(‘after_setup_theme’, ‘custom_theme_setup’);
31. Image size limits can be set _______________.
Answers:
  1. directly in the posts
  2. in the wp-imageresize plug-in
  3. in the admin settings
  4. a and
32. How can a user be found through its meta data?
Answers:
  1. User can not be retrieved through its meta data
  2. get_user_by_metadata($metaid,$metavalue)
  3. get_user($args)
  4. get_users($args)
33. 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:
  1. POST
  2. GET
  3. SESSION or COOKIE
  4. POST or GET
34. Which of the following will call the WordPress media uploader form element?
Answers:
  1. <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”>
  2. <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>
  3. <a href=”media-upload.php?type=image&TB_iframe=true&width=640&height=105″>Upload Image</a>
  4. <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”>
35. 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:
  1. $firstTag[‘slug’];
  2. $firstTag->slug
  3. $firstTag.slug
    $firstTag[0][‘slug’]
36. Which of the following code snippets is the correct way to get content from Tinymce via javascript ?
Answers:
  1. document.getElementById(‘content’)
  2. tinymce.activeEditor.getContent();
  3. tinymce.element.getContent();
  4. document.getElement(‘tinymce_content’)
37. Is super cache a built-in plugin of WordPress?
Answers:
  1. Yes
  2. No
38. A possible way to allow the display of several authors’ names on one post is to ______
Answers:
  1. update the database
  2. change the admin settings
  3. change the config files
  4. use a plug-in
39. In which way MD5 hash does wordpress stores and represents?
Answers:
  1. In Hex string
  2. In Base64 string
  3. in raw data file
  4. text file
40. What is the first action you need to take for enabling WordPress MU feature?
Answers:
  1. Enable WordPress MU feature on admin panel
  2. Enable Network feature
  3. Add this code to wp-config.php file: define( ‘WP_ALLOW_MULTISITE’, true );
41. What is Automated Testing in WordPress?
Answers:
  1. Automated testing is running test cases where manual intervention is not required to run each one.
  2. It is a plugin which is used to test your custom template or plugin.
  3. It is a function available in WordPress to test the custom template/plugin.
  4. There is no such thing as Automated Testing in WordPress.
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:
  1. define(E_DEPRECATED, false);
  2. error_reporting(E_ALL ^ E_DEPRECATED);
  3. define(E_NOTICE, false);
  4. error_reporting(WP_DEBUG, true)
43. One possible way to collect realtime statistics about traffic on a WordPress site is:
Answers:
  1. using a built-in tool
  2. using a plugin
  3. using a widget
  4. 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:
  1. Contributo
  2. Autho
  3. Edito
  4. Subscribe
  5. Administrato
45. How can an < li >tag’s class and ID attributes be removed from menu items and page lists?
Answers:
  1. 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() : ”; }
  2. 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; }
  3. add_filter (‘wp_nav_menu’,’strip_empty_classes’); function strip_empty_classes($menu) { $menu = preg_replace(‘/ class=([“‘])(?!active).*?1/’,”,$menu); return $menu; }
  4. 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:
  1. Contributor
  2. Author
  3. Editor
  4. Subscriber
  5. Administrator
47. Which of the following will show the most recent post (by date) from a custom taxonomy?
Answers:
  1. 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)
  2. 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)
  3. 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)
  4. 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:
  1. 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
  2. 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
  3. 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
  4. 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?
<li>example 1
<li>example 2
<li>example 3
<li>example 4
$(document).ready(function(){
$(‘#sortable’).sortable({
update: function(event, ui) {
var newOrder = $(this).sortable(‘toArray’).toString();
$.get(‘saveSortable.php’, {order:newOrder});
}
});
});
Answers:
  1. Removes positions from data base based on the user input
  2. Saves sortable positions to data base based on the user input
  3. Adding new sortable positions from another data base
  4. 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:
  1. wp_set_post_categories($postId,$categories)
  2. wp_set_category($catId,$postId)
  3. By XML-RPC call to wpc.newPost
  4. This is not possible
51. Conditional tags can be used to _______________________.
Answers:
  1. get all comments from one post
  2. get all posts from one category
  3. change the content to be displayed
  4. 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:
  1. sudo chown -Rf www-data *
  2. chown -Rf www-data *
  3. sudo crown -Df www-data *
  4. Alldo chown -Rf www-data *
53. How can a custom content filter be added?
Answers:
  1. By using add_action(‘the_content’,’my_custom_filter’)
  2. By using add_filter(‘the_content’,’my_custom_filter’)
  3. By using wp_filter(‘the_content’,’my_custom_filter’)
  4. By using add_action(‘content’,’my_custom_filter’)
54. How can a post ID be retrieved from the permalink?
Answers:
  1. Its not possible to retrieve the post ID from a permalink due to its structure.
  2. It can be retrieved by using a Regular Expression.
  3. wp_get_post_id($permalink)
  4. 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:
  1. add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { return(‘Your custom url’); exit(); } }
  2. add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { wp_redirect(‘Your custom url’); exit(); } }
  3. add_action(‘init’,’possibly_redirect’); function possibly_redirect(){ global $pagenow; if( ‘wp-login.php’ == $pagenow ) { redirect(‘Your custom url’); exit(); } }
  4. 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:
  1. Include the file wp-blog-header.php from WordPress installation directory to codeigniters index.php and create template inside codeigniter’s view.
  2. Include the file wp-settings.php from WordPress installation directory to codeigniters index.php and create template inside codeigniter’s view.
  3. Create template inside WordPress theme directory and include the file in codeigniter’s view.php file.
  4. 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:
  1. Enable the WordPress multisite feature on admin panel
  2. Enable the Network feature
  3. 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:
  1. add_taxonomy
  2. register_taxonomy
  3. create_taxonomy
59. Which of the following actions cannot be hooked in with add_submenu_page() function?
Answers:
  1. admin_submenu
  2. admin_menu
  3. user_admin_menu
  4. network_admin_menu
60. Which of the following is the correct way to filter the content for a few posts?
Answers:
  1. By using apply_filters(filter,postId)
  2. This is not possible in wordpress
  3. Can create filter for posts in a specific wordpress category
  4. Passing arguments into the_content()
61. What is the function of add_filter in WordPress?
Answers:
  1. It registers a filter for a tag.
  2. It removes line breaks from the pages list.
  3. It is a companion function to apply_filters().
  4. All of the above.
62. Which of the following code snippets will create plugins back-end page without showing it as menu item?
Answers:
  1. add_submenu_page with parent slug = null
  2. add_menu_page with parent slug = null
  3. add_submenu_page without parent slug = null
  4. add_menu_page without parent slug = null
63. ____________ can manage their own profiles, but can do virtually nothing else in the administration area.
Answers:
  1. Contributor
  2. Author
  3. Editor
  4. Subscriber
  5. Administrator
64. Are categories and tags available for pages?
Note: 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:
  1. Yes
  2. No
65. Which of the following is the correct way to get WordPress Post ID from the Post title?
Answers:
  1. $page = get_page_title( ‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
  2. $page = get_page_by_title( ‘Home’ ); $page_id = $page->ID;
  3. $page = get_page_by_title( ‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
  4. None of the above
66. Which of the following will correctly add custom mod rewrite rules to .htaccess from a WordPress plugin?
Answers:
  1. $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”]; }}
  2. $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”]; } }
  3. $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); } }
  4. $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:
  1. $images =& get_children( ‘post_type=attachment&post_mime_type=image&post_parent=10’ );
  2. $images = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
  3. $images = get_post(7, ARRAY_A);
  4. It cannot be done
68. Which of the following will echo the base URL of a WordPress site?
Answers:
  1. <?php echo get_bloginfo(‘base_url’) ?>
  2. <?php echo get_bloginfo(‘url’) ?>
  3. <?php echo get_bloginfo(‘site_url’) ?>
  4. <?php echo get_website_url() ?>
69. Which of the following functions are used when adding CSS and jQuery codes on a WordPress plugin?
Answers:
  1. wp_register_style
  2. wp_enqueue_style
  3. wp_enqueue_script
  4. None of these.
70. In order to display a widget, the user must _________________.
Answers:
  1. set the “show property” of the desired widget to “true”
  2. drag the desired widget to the side ba
  3. add the desired widget to the post
  4. change the source code
Read More

Friday, December 9, 2016

Ultimate Job Interview Guide - 100% Free Download

Ultimate Job Interview Guide

Get tips from the team that conducts over 250 interviews a month as the Job Interview Guide eBook.

An open job receives an average of 118 applicants. If you land the interview, you’ve beaten the odds. Time to celebrate, right?! Not exactly. Now comes the hardest part — the interview.

A job interview is your only chance at a first impression. It’s your time to show off the skills, experience and knowledge you’ve gained thus far. It can push your career in exciting new directions, or send you back to the drawing board.

At Morgan Hunter, we interview an average of 257 people a month. We’ve seen it all — the good, the bad, and the just okay. We want to share our experience with you, because we know what it takes to have a successful interview.

In this Job Interview Guide eBook, we will walk you through the steps you need to take to nail your next interview

Free Download Link :http://coursehall.tradepub.com/c/pubRD.mpl
Read More

Monday, November 14, 2016

UpWork Readiness Test Answers for Independent Contractors and Staffing Managers 2016

UpWork Readiness Test Answers for Independent Contractors
12 Readiness Test Answer Questions:

1. What kind of profile image works best for attracting clients?
Answers:
A picture of me smiling, because it's considered more trustworthy and pleasant.
• An illustrated image of my favorite animal.
• A picture of me wearing a baseball hat and dark sunglasses.
• My company's logo.

2. UpWork charges clients 10% of what they pay on your contract.
Answers:
True
• False

3. What is the secret to being a highly successful freelancer on UpWork.com?
Answers:
• Communicate early, communicate often.
• Provide honest and realistic project updates.
• Respond quickly and hit deadlines.
• Listen to your client's concerns and have a positive attitude.
All of the above

4. Which of the following is TRUE about fixed-price jobs?
Answers:
• Fixed-price jobs are not covered by the UpWork Guarantee.
• Payment is at the client's discretion.
• Fixed-price jobs are generally smaller and are paid upon completion.
• Terms of the job are agreed upon before work begins.
• All of the above

5. What is one smart way to prove you're right for the job?
Answers:
• Offer to work for free.
• Ignore the client's invitation to interview.
• Offer to do a short, paid "test project" to show you have the necessary skills.
• Send a cut and paste cover letter full of spelling errors.
• Beg them to hire you because you really need the money.

6. Which statement about the Team App is FALSE?
Answers:
• The Team App lets you track your time for hourly jobs.
• The Team App takes work-in-progress snapshots at random times in 10-minute intervals.
The Team App must be used for fixed-price contracts.
• The Team App records the total number of keystrokes and mouse clicks.

7. A good profile includes which of the following?
Answers:
• Your full name, title, and photo.
• An overview that lets potential clients know what you can do for them.
• A few completed skill tests to demonstrate your expertise.
• Well-written text that has a positive tone, is grammatically correct, and is spelled properly.
• All of the above

8. What do you need to be successful on UpWork?

HINT: Everything you need to know is in the Contractor Manual!
Answers:
• A fast, reliable Internet connection and an up-to-date Internet browser.
• A work-only email account and a free Skype account.
• A basic understanding of the English language.
• A ready-to-work attitude, a strong set of skills, and an entrepreneurial spirit.
• All of the above

9. Which of the following is TRUE about hourly jobs?
Answers:
• The client is billed only for hours worked.
• Work time is logged through the UpWork Team App.
• Your time is covered by the UpWork Guarantee that an hour worked is an hour paid.
All of the above

10. Before you apply for a job, what questions should you ask yourself?
Answers:
• Do I have the right skills and experience for this job?
• Do I have the time available to complete this job?
• Do I think the offered rate is acceptable?
All of the above

11. UpWork charges a 10% fee on each contract.
Answers:
• True
• False

12. What do you need to be successful on UpWork ?

HINT: Everything you need to know is in the Freelancer Manual
Answers:
• A fast, reliable Internet connection and an up-to-date Internet browser.
• A work-only email account and a free Skype account.
• A basic understanding of the English language.
• A ready-to-work attitude, a strong set of skills, and an entrepreneurial spirit.
All of the above
Read More

How much time will you need to work on this project to see results and how will you spend your time working on this project?

Upwork Additional Question Answer: I have a strong belief that I would be able to make this project successful within short time. I will spend my time working on this project hourly with white hat updated method and make it successful.
Read More

Tuesday, June 30, 2015

Upwork Cover Letter Sample for SEO -Search Engine Optimization

Hi John,

I’ve carefully gone through your job posting on “Job title here”. I ’m an expert Search Engine Optimizer with more than 2 years experiences of both “On-Page” and “Off -Page” SEO. I am very much interested in your project with all of your requirements.

Recently I have successfully completed a SEO project on “A project name” both on-page and Off- page SEO, Full white hat Complying with Google Panda and Penguin Updates.

For more on my skill and successfully finished jobs, please have a look on my Profile, Portfolio, Work history and Feedback. You can see my official site also “Your site link” (If you have not any site, please delete this line)

I am always available on Email and Skype. Please have a voice or video chat if necessary. I will be available more than 60 hours per week and able to start your project as soon as possible according to you.

Thank you for your consideration.

Best Regards

Your Name
Read More

Upwork Cover Letter Sample for Blog-Article Posting at website

Hello

I have got your job posting “Job Title” and I am very much interested to work in your project. I am a pro blogger and have more than 6 years experiences of blog writing, Posting and SEO. So, I think you’ll find, I have the skills you’re looking for.

For more on my skill and successfully finished jobs, please have a look on my Profile, Portfolio, Work history and Feedbacks. Normally, I can write and post a blog content with graphics and all the SEO supplements within two hours.

I am always available on Email and Skype. Please have a voice or video chat if necessary. I will be available more than 60 hours per week and able to start your project as soon as possible according to you.

Thank you for your consideration,

Best Regards,

Your Name
Read More

Why did you apply to this particular job?

Upwork Addition Question Answer:
I have applied to this particular job because all the requirements of this project are in favor of me and I can 100% assure you that I must be successful in this project and satisfy you. I never apply to any job what doesn’t match my skills.
Read More