Skip to main content

WordPress Test Upwork Answers 2019

Which of the following is a default user role in wordPress?
Answers
  • Blogger
  • Author
  • Subscriber
  • Contributor
What are wordPress hooks?
Answers
  • Setting option available to WordPress administrators
  • Security function that run inside WordPress
  • Group of plugins which control WordPress behavior
  • Ways to change the default behavior of WordPress
Which constant is NOT recognized in wp-config.php?
Answers
  • WP_SITEURL
  • WP_CONTENT_DIR
  • WP_CONTENT_URL
  • WP_HOME_URL
Which of the following HTML tags are not allowed to be used in post comment?
Answers
  • Code
  • form
  • img
  • strike
  • table
Which of the following is not a default image size in WP?
Answers
  • Small Size
  • Medium Size
  • Large Size
  • Thumbnail Size
What does WordPress use to control user access to different features?
Answers
  • Username
  • Access Tokens
  • Role
  • Cookies
Which WordPress system can be used to temporarily store information?
Answers
  • Options
  • Meta Tables
  • Transients
  • The Rest API
_____ is the ability for readers to respond to articles written in your blog?
Answers
  • Comment posting
  • Comment rating
  • Comment spamming
  • Feedback posting
  • None of the above
A WordPress _____ is a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog.
Answers
  • layout
  • library
  • plug-in
  • theme
  • widget
What is a permalink?
Answers
  • A popular wordPress plugin.
  • The complete URL of your WordPress site.
  • The numeric IP address of your WordPress site.
  • Permalinks are the permanent URL to your individual weblog posts, as well as category and other lists of weblog posting.
What is WordPress multisite?
Answers
  • A popular WP theme that supports multiple sites.
  • A WP plugin that supports multiple sites.
  • WP configuration features that support multiple sites.
  • Special version of WordPress that can support many sites and is not free
Themes typically reside in the _____
Answers
  • wp-content/theme
  • wp-content/themedir
  • wp-content/style
  • wp-content/main
  • wp-content/
Where are plugin options stored in WordPress?
Answers
  • They are stored in WordPress database.
  • They are stored in WordPress.org website.
  • They are stored in WordPress plugin folder.
  • They are stored in WordPress theme folder.
Select all the default taxonomies in WordPress.
Note: There may be more than one right answer.
Answers
  • category
  • post_format
  • product_tag
  • link_category
  • post_tag
  • post_category
What is difference between the wp_title() and the_title() tags?
Answers
  • wp_title() function is for use inside “The Loop ” to display the title of a page. the_title() on the other hand is used within “The Loop”.
  • wp_title() function is for use outside “The Loop ” to display the title of a page. the_title() on the other hand is used within “The Loop”.
  • wp_title() function is for use inside “The Loop ” to display the title of a page. the_title() on the other hand is used without “The Loop”.
  • All of the above.
What can be Contributor role do?
Answers
  • Edit pages
  • Edit posts
  • Publish posts
  • Moderate comments
How do you enable the debug mode in WordPress?
Answers
  • It is enabled by default
  • By setting WP_DEBAUG as true in wp-config.php
  • By going to dashboard -> setting ->General and then enable debug mode
In a manual installation, wp-config-sample.php should be removed to ……
Answers
  • wp-config.php
  • wp-config-man.php
  • wp-loop.php
  • wp-main.php
  • wp-statup.php
What database does WordPress use?
Answers
  • MySQl
  • Notes
  • Oracel
  • PostgreSQL
Which option allows you to style each list item background or WordPress navigation separately?
Answers
  • nav li:nth-child(1).current-menu-item {background-color: red;}
    nav li:nth-child(2).current-menu-item {background-color: blue;}
    nav li:nth-child(3).current-menu-item {background-color: green;}
  • nav li:nth-childs(1).current-menu-item {background-color: red;}
    nav li:nth-childs(2).current-menu-item {background-color: blue;}
    nav li:nth-childs(3).current-menu-item {background-color: green;}
  • nav li:nth-fisrt-child(1).current-menu-item {background-color: red;}
    nav li:nth- fisrt-child(2).current-menu-item {background-color: blue;}
    nav li:nth- fisrt-child(3).current-menu-item {background-color: green;}
  • All of the above
A/An _____ is a globally recognized avatar.
Answers
  • site_avatar
  • gravtar
  • avataron
  • alter ego
  • alias
Which one of the following files is located in the root of your WordPress installation directory and contains your website’s setup details, such as database connection information.
Answers
  • wp-install.php
  • wp-setup.php
  • wp-config.php
  • html
Where can you change the Timezone used by WordPress in the dashboard?
Answers
  • In->Setting>General
  • In->Setting>Media
  • In->Setting>Reading
  • In->Setting>Writing
…… make it possible for a person to have one avatar across the entire web.
Answers
  • Avatars
  • Gravatars
  • Smileys
  • Widgets
  • None of the above
Which of the following is not a WordPress role?
Answers
  • Editor
  • Subscriber
  • Administrator
  • System
What is the default table prefix in WP?
Answers
  • _wp
  • w_
  • wp_
  • wp-
Which of the following is the correct way to register shortcode?
Answers
  • function foobar_func ($atts){return “foo and bar”;}new_shortcode( ‘foobar’, ‘foobar_func’ );
  • function foobar_func ($atts){return “foo and bar”;}insert_shortcode( ‘foobar’, ‘foobar_func’ );
  • function foobar_func ($atts) {return “foo and bar”;}register_shortcode( ‘foobar’, ‘foobar_func’ );
  • function foobar_func ($atts){return “foo and bar”;}add_shortcode( ‘foobar’, ‘foobar_func’ );
What is the default site update service that WordPress automatically notifies when you publish a new post?
Answers
How do you enable Network setup item (enable multisite) in WordPress?
Answers
  • Set WP_ALLOW_MULTISITE as true in wp-config.php
  • WP MU has been discontinued as a separate project so there is no way to set up multisite WP now.
  • Activate WP Multisite in Setting menu
  • Install WP MU plugin
Is it possible to programmatically create post?Answers
  • Yes with wp_insert_post() function
  • Yes with wp_add_post() function
  • Yes with wp_create_post() function
  • No
Which of the following post type are by default available in WordPress installation. (choose all that apply)Note: There may be more than one right answer.
Answers
  • Post
  • Page
  • Blog
  • Media
  • Category
  • Archive
What are common features of the following function: next_post, previous_post, link_pages, the_author_url, wp_get_link?
Answers
  • They all echo something
  • They all point to points or post list
  • They are deprecated
  • They all returns URLs
What does the wp_rand() function do?
Answers
  • Generates a random number
  • Generates a random post ID for wp_insert_post() function
  • Gets a random category ID
  • Generates a random post ID
Pick the default template tag(s)?Note: There may be more than one right answer.
Answers
  • the_field()
  • wp_title()
  • the_title()
  • wp_field()
_____ as condensed summaries of your blog post
Answer
  • excerpts
  • hints
  • tweets
  • blurbs
  • None of these
WordPress uses a _____ in conjunction with the mod_rewrite Apache module to produce permalinks.
Answers
  • config file
  • an XFN file
  • an .htaccess file
  • an XML file
  • none of these
A theme _____ acts like a plugin and, if present in your theme, is automatically loaded during WordPress initialization.
Answer
  • Bootstrap File
  • Function File
  • Plugin File
  • Setup File
  • StyleSheet
Which of the following is true about wp_mail() function? (Choose all that apply)
Note: There may be more than one right answer.
Answer
  • A true return value does not automatically mean that the user received the email successfully
  • For this function to work, the setting SMTP and smtp_port(default: 25) need to be set in your php.ini file
  • The default content type allow using html
  • The function can handle only one email as $to parameter
A minimal Theme consist of what two files.
Answer
  • style.css and funcion.php
  • style.css and index.php
  • style.css and template.php
  • template.php and index.php
  • theme.css and homepage.php

Comments

  1. Casino | Downtown Kansas - JTA Hub
    JTG Marriott 경상남도 출장샵 Hotel & Casino 오산 출장샵 Kansas City, 시흥 출장안마 Missouri offers 24-hour 의왕 출장안마 gaming. Come 경주 출장마사지 play at our downtown Kansas City location at the Southgate, MO Casino.

    ReplyDelete

Post a Comment

Popular posts from this blog

English Spelling Test (U.S. Version) Upwork Answers Test 2019

1 . Complete the following sentence by choosing the correct spelling of the missing word. Their relationship was plagued by _______ problems. Perpetual   —- it means: continuing for ever in the same way, often repeated Perpechual Purpetual Perptual 2.  Complete the following sentence by choosing the correct spelling of the missing word. The crowd _________ me on my acceptance into Mensa Congradulated Congrachulated Congratulated  —- it mean: to praise someone Congratilated English Spelling Test (U.S. Version) Answer;Upwork English test answer; Upwork English test answer 2017; lastest Upwork English test answer; upwork test answer;  3. Choose the correct spelling of the word from the options below. Goverment Governmant Government  — the group of people who officially control a country Govermant 4. Choose the correct spelling of the word from the options below. Temperamental ...

Office Skills Test Upwork Test Answers 2019

Question:* Your computer is not printing and a technician is not available, so you perform the following activities to investigate the problem. In which order should you take these up? 1 See if the printer cartridge is finished 2 See if the printer is switched on 3 Try to print a test page using the printer self-test 4 Try to print a test page from Windows 5 See if the printer is properly attached to the computer Answer: • 2,3,1,5,4 Question:* What is 'flexi-time'? Answer: • The flexible use of personal office hours, such as working an hour earlier one day, in order to leave an hour earlier another day. Question:* Which of the following are proven methods of improving your office skills? Answer: • All of the above Question:* When replying to an e-mail, who do you place in the cc: line and who in the bcc: line? Answer: • A person you wish to openly inform goes in the cc: line, and the person you wish to read the e-mail without the knowledge of the rec...

Analytical Skills Test Upwork Answers 2019

This question is based on following series: aABLJ1238YZM957QRF Which character is midway between the 3 rd  character from left and 6 lh  character from rights a.  2 b.  3 c.  8 d.  Y This question is based upon the figure shown below Count the number of rectangles in the diagram given above. a. 10 b. 19 c. 8 d. 12 e. 18 In  a game, Peter places seven marbles adjacently in a row. Two marbles are red in color. Two blue colored marbles are adjacent to the same red marble. There is one pink colored marble. There are too white colored marbles but they are not placed adjacent to each other. One of the red colored marbles is place a tone end of the row. If the pink colored marble is placed at the other end of the row, where is the second red colored marble? a. In the second place. b. In the third place. c. In the fourth place. d. In the seventh place. Read the following information and ...