1 Your Name 1. Explain the different between visibility: hidden; and display: none;0 / 2. How would you add a jQuery plugin to your custom Wordpress theme?0 / 3. Explain WordPress hooks.0 / 4. Can you explain try, throw, and catch?0 / 5. What are a few places you might check if a site started serving just a blank white page?0 / 6. Are you familiar with database normalization? What is it and what forms are you familiar with?0 / 7. What is AJAX and what is an example situation you might use it?0 / 8. What is SQL injection and how can you prevent it?0 / 9. Which of the following functions is used to generate random numbers using PHP?srand()rand()random()None of the above 10.____ are used to help you quickly and easily format some text in your post.BlurbsQuicklinksQuickstylesQuicktags 11. Themes consist of what three main file types?Blurbs, function file and template filesFunction File, setup file, and template filesStylesheet, function file, and template files.Stylesheet, roles file, and template files 12. "so and so many people have seen this post" would be output like??printf( _n( '%d person has seen this post.', '%d people have seen this post.', $view_count ), $view_count );?printf( __( '%d people have seen this post.' ), $view_count ); ?printf( 1 = = $view_count ? __( '%d person has seen this post.' ) : __( '%d people have seen this post.' ), $view_count );?echo _n( 'One person has seen this post', "$view_count people have seen this post." ); 13. What is a DNS record?0 / 14. When would you change a DNS record? How (in general terms) would you go about change a DNS record?0 / 15. In the following code snippet, what value is given for the left margin: margin: 5px 10px 3px 8px5px;10px;3px;8px; 16. Which of the following would be used to create an ID called header which has a width of 750px, a height of 30px and the color of the text is black?#header { height: 30px; width: 750px; color: black; } .header { height: 30px; width: 750px; colour: black; }#header { height: 30px; width: 750px; text: black; }.header { height: 30px; width: 750px; color: black; } Submit & Email Previous Next