WordPress Developer Skills Assessment
- Timing: The test is timed, so please manage your time effectively within the allocated 60 minutes.
- Thoughtful Responses: Answer each question carefully, as you cannot revisit previous questions once answered.
- Continuous Testing: There are no breaks between sections, so proceed without interruptions.
- Domain Knowledge: Each section focuses on specific skills required of a WordPress developer.
- Timing: The test is timed, so please manage your time effectively within the allocated 60 minutes.
- Thoughtful Responses: Answer each question carefully, as you cannot revisit previous questions once answered.
- Continuous Testing: There are no breaks between sections, so proceed without interruptions.
- Domain Knowledge: Each section focuses on specific skills required of a WordPress developer.
This section consists of 8 questions. The timer starts from the next page. The consequent assessments will be in continuation to this assessment.
This section consists of 8 questions. The timer starts from the next page. The consequent assessments will be in continuation to this assessment.
<!DOCTYPE HTML>
<html>
<head>
<style>
#f1
{
display:none;
}
#a1
{
display:initial;
}
</style>
</head>
<body>
<div id="f1">Fish</div>
<div id="o1">Octopus</div>
<div id="a1">Algae</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
body{
background-color:red;
color:black;
font-size:10px;
}
</head>
<body>
<p>Hi my name is Marie.</p>
<p>How are you?</p>
</body>
</html>
<link rel="stylesheet" type="text/css" href="example.css">
This syntax refers to which stylesheet?
Yuli has made the following website: What will be the correct characteristics of this website?
<!DOCTYPE HTML>
<html>
<head>
<style>
#P1
{
background-color:red;
display:contents;
}
#p2
{
background-color:yellow;
}
#p3
{
float:right;
display:contents;
}
</style>
</head>
<body>
<div id="P1">AB</div>
<div id="p2">CD</div>
<div id="p3">EF</div>
</body>
</html>
I want to adjust the printed text in the center, so what property should I use for the h1 and p tags?
<!DOCTYPE html>
<html>
<head>
<style>
h1{
color:green;
}
p{
color:red;
}
body{
background-color:black;
}
</style>
</head>
<body>
<h1>CSS</h2>
<p>CSS stands for Cascading Style Sheet</p>
</body>
</html>
What changes does a student need to make to the given code to sort the elements of the array in descending order?
<!DOCTYPE html>
<html>
<body>
<p id="abc"></p>
<p id="xyz"></p>
<script>
const letter = ["O", "C", "S", "M", "A", "N", "Z", "L", "F"];
letter.sort();
document.getElementById("xyz").innerHTML = letter;
</script>
</body>
</html>
Andy writes a fun
Let myfun ction = fun ction(){{
var greeting = 'hello';let name = "andy"
}
console.Log(greeting);console.Log(name);
}
<p id="demo">Jaipur.</p>
<button type="button" onclick="myFun ction()">Try it</button>
<script src="jaipur.js"></script>
What will be the output of the following code?
<?php
$refill="10";
$ammo= "5";
$weapon = $refill + $ammo;
echo $weapon;
?>
What is the output of the following code?
$function = function() {
return 'I am a function';
};
echo get_class($function);
Max is seeking information about a PHP fun
Which of the following PHP fun
What will be the output of the following code?
function SAYHELLO() {
echo "Hello World !!";
}
sayhello();
What is the output of the following code:
echo ucwords('I love PHP.');
What is the output of the following code?
<?php
$a = 5;
$b = 10;
$c = 15;
$a *= $b += $c;
echo $a;
?>
What is the output of the following code?
<?php
$fruits = array("apple", "banana", "orange");
foreach ($fruits as $fruit) {
if ($fruit == "banana") { continue; }
echo $fruit . " ";
}
?>
What is the output of the following code?
<?php
$x = 5;
$y = 10;
function foo() {
global $x, $y;
$x += $y;
}
foo();
echo $x;
?>
What will be the output of the following code snippet?
<?php
$a = "$winner";
$b = "/$looser";
echo $a,$b;
?>
What will be the correct output of the following code?
<?php
function multi($num)
{
if ($num == 3)
echo "I Wonder";
if ($num == 7)
echo "Which One";
if ($num == 8)
echo "Is The";
if ($num == 19)
echo "Correct Answer";
}
$can = stripos("I love php, I love php too!", "PHP");
multi($can);
?>
What will be the output of the following code?
Echo “99”+2;
What is the expected output of the PHP code provided below?
echo substr ('aeroplane', (5*-1), (15/3));