Linked in quiz

LinkedIn Wordpress quiz

LinkedIn Wordpress quiz
# In WordPress, what is the Loop used to do? - [ ] It displays a single page. - [ ] It displays posts on an archive. - [ ] It displays a single post. - [x] all of these answers # Who owns the trademark for WordPress and WordCamp names and logos? - [x] WordPress Foundation (The WordPress Foundation owns and oversees the trademarks for the WordPress and WordCamp names and logos.) - [ ] WordPress.com - [ ] Matt Mullenweg - [ ] Automattic # What is the name of the open-source project that serves as a bug tracker and project management tool for WordPress? - [ ] HackerOne - [ ] Redmine - [x] Trac - [ ] GitHub Issues # The REST API is a simple way to get data in and out of WordPress over HTTP. Applications using the REST API should be written in which programming language? - [ ] PHP - [x] any programming language that can make HTTP requests and interpret JSON - [ ] Java - [ ] Node.js # How many minutes does it take to install WordPress according to the "Famous X-Minute Installation" instructions on WordPress.org? - [x] 5 - [ ] 30 - [ ] 15 - [ ] 10 # In WordPress, what is true of plugins? - [ ] Plugins are available in free or premium (paid) versions. - [ ] Plugins can extend WordPress core functionality. - [x] all of these answers - [ ] Plugins add site-specific features. # Akismet is a plugin that comes automatically installed with WordPress. What does it do? - [ ] It connects your site to Google Analytics. - [ ] It displays a blog feed from websites similar to yours. - [x] It protects your site from comment spam. - [ ] It hardens site security by enforcing strong passwords. # What would you do to improve your site's performance? - [ ] Only load scripts and styles on pages where they are needed. - [ ] Minify CSS and JavaScript files. - [x] all of these answers - [ ] Use a CDN. # The REST API utilizes which data format? - [ ] YAML - [x] JSON - [ ] TXT - [ ] XML # What color is the paragraph nested within the div? ```

This is a paragraph inside a div.

``` - [ ] blue - [ ] black - [x] red - [ ] green # Theme developers can take advantage of the Customizer API to give users a way to manipulate basic theme settings. The Customizer API is object-oriented and provides four main objects. What are they? - [ ] widgets, containers, sections, settings - [ ] containers, hooks, settings, styles - [ ] panels, blocks, controls, settings - [x] panels, sections, controls, settings # Which WordPress setting would you use to make page URLs look like `http://example.com/my-page/` instead of the default `http://example.com/?p=21/?` - [ ] Writing - [x] Permalinks - [ ] Pretty URLs - [ ] Reading # In WordPress, what is the block editor used for? - [ ] cropping images in the media library - [ ] injecting specialized scripts into the content area - [ ] creating a site layout - [x] creating and laying out content # Which of the following file types is NOT involved in translating WordPress? - [ ] .po - [x] .pot - [ ] .mot - [ ] .mo # What is the default priority for an action hook or filter? - [x] 10 - [ ] 15 - [ ] 0 - [ ] 5 # What's the primary difference between template tags prefaced with the **versus get_the**? - [ ] Template tags prefaced with the \_ don't accept arguments. - [ ] Template tags prefaced with the \_ can be used directly within a template. - [x] Template tags prefaced with the \_ display a value. Template tags prefaced with get_the return a value. - [ ] Template tags prefaced with the \_ return a value. Template tags prefaced with get_the display a value. # WP_Query is the WordPress query class that is used to fetch posts from the database. How would you create a new instance of this class? - [ ] `$query = new query_posts();` - [x] `$query = new WP_Query();` - [ ] `$query = query_posts();` - [ ] `$query = get_posts();` # What is a user role that is unique to WordPress Multisite? - [ ] MU Admin - [ ] Owner - [x] Super Admin - [ ] Multisite Master # Within the editor, blocks are rendered as JavaScript. How are blocks rendered on the front end of a site? - [ ] as plain HTML - [x] as a React component - [ ] as JavaScript comments - [ ] as HTML comments # Which of these is NOT a part of the internationalization and localization process? - [ ] using a gettext function to wrap translatable strings when writing code - [ ] installing/using the WordPress Multilingual Plugin - [ ] using a tool like Poedit to parse source code and extract translatable strings into a POT file - [x] translators translating the POT file into a PO file, one for each language # The REST API provides public data, which is accessible to any client anonymously, as well as private data available only after authentication. How could you ensure that no one can anonymously access site data via the REST API? - [ ] Disable the REST API via the site's wp-config.php file. - [ ] Use the `rest_authentication_errors()` filter along with the `is_user_logged_in()` conditional to limit access to logged in users. - [ ] Use the `rest_authentication_errors()` filter along with cookie authentication to limit access to logged in users. - [x] Use the Disable REST API plugin. # Which of these snippets represents a wrapper that calls jQuery safely and doesn't require repetitive use of the word "jQuery"? - [ ] . ``` $.ready(function() { // do stuff }); ``` - [ ] . ``` (function($) { // do stuff })( jQuery ); ``` - [x] . ``` $(function() { // do stuff }); ``` - [ ] . ``` jQuery(function($) { // do stuff }); ``` # What is the correct order of parameters for the add_action() function? - [ ] `add_action( 'example_hook', 'example_function', $accepted_args, $priority )` - [ ] `add_action( 'example_function', 'example_hook', $priority, $accepted_args )` - [x] `add_action( 'example_hook', 'example_function', $priority, $accepted_args )` - [ ] `add_action( 'example_function', 'example_hook', $priority )` # You have a search bar on your site. You would like to use a `

About Us

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

Know More

Category

Join Our Newsletter

Join our newsletter to stay in the loop for new contents.