Careerschool - Web-Development Screening Test
Web-Development Screening Test
Email *
Full Name *
Name of the College *
Department Name *
How to create a hyperlink in HTML? *
In HTML, how do we insert an image?
*
Which tag do we use to define the options present in the drop-down selection lists?
*
What is the correct way of sending mail in HTML?
*
Which element is used to get highlighted text in HTML5? *
 Which of the following is not a HTML5 tag? *
Which of the following is not the element associated with the HTML table layout? *
Which of the following tag is used to create a textarea in HTML Form? *
What is the correct syntax of web address? *
Which attribute specifies a unique alphanumeric identifier to be associated with an element? *
What is the correct way in which we can start an ordered list that has the numeric value count of 5? *
Which HTML tag do we use for displaying the power in the expression, (x² – y²)? *
How does the <bdo> element work? *
Which of these entities is not defined in the XML?
*
The ____________ entity is used for the arrow. *
Which of these doesn’t support the MP3 format? *
Which one of these helps us test if an old browser supports the geolocation? *
What do we call after initializing a plug-in to get A scripting interface? *
What attribute do we use for data binding? *
Which of the following statement(s) is true about the JavaScript? *
Which type of JavaScript language is _____? *
JavaScript ignores? *
Which property is used to define the HTML content to an HTML element with a specific id? *
Which JavaScript method is used to write into an alert box? *
Which is the correct JavaScript statement to print the addition of two numbers 10 and 20 in a paragraph whose id is 'result'? *
In JavaScript, single line comment begins with ___. *
In JavaScript, multi-line comments start with __ and end with ___ *
What is the output of the following JavaScript code?

<script>
    var a;
    document.getElementById("demo").innerHTML = a+1;
</script>
*
What is the output of the following JavaScript code?

<script>
    var a = 10 + 20 + "5";
    document.getElementById("demo").innerHTML = a;
</script>
*
What will be the output of the following JavaScript code?

<script>
    var x = 12.34;
    document.getElementById("test").innerHTML = typeof(x);
</script>
*
Which is the correct syntax for the function definition? *
What will be the output of the following JavaScript code snippet?

int a=1;
if(a!=null) // JavaScript not equal to Operators
    return 1;
else
    return 0;
*
What will be the output of the following JavaScript program?

function careerschool(javascript)
{
    return (javascript ?  “yes” :  “no”);
}
    bool ans=true;
console.log(careerschool(ans));
*
What will be the output of the following JavaScript code?

function height()
{    
    var  height = 123.56;
    var type = (height>=190) ? "tall" : "short";
    return type;
}
*
What will be the output of the following JavaScript function?

<p id="demo"></p>
<script>
function javascript()
{
// javacript abs() method
    document.getElementById("demo").innerHTML = Math.abs(-7.25);
}
</script>
*
Which of the following explains correctly what happens when a JavaScript program is developed on a Unix Machine? *
Which is a more efficient JavaScript code snippet?

Code 1 :

// for loop in javascript
for(var num=10;num>=1;num--)
{
           document.writeln(num);
}

Code 2 :

var num=10;
while(num>=1)
{
       document.writeln(num);
       num++;
}
*
What will be the output of the following JavaScript code?

function printArray(a)
{
     var len = a.length, i = 0;
     if (len == 0)
        console.log("Empty Array");
     else
     {
// do-while loop in javascript
         do
         {
             console.log(a[i]);
         } while (++i < len);
     }
}

*
Why JavaScript Engine is needed? *
Which of the following methods/operation does javascript use instead of == and !=? *
What will be the firstname and surname of the following JavaScript program?

var book = {
              "main title": "JavaScript",
              'sub-title': "The Derivative build",
              "for": "all audiences",
              author: {
                         firstname: "John",
                         surname: "Hoppkins"
                      }
           };
*
Consider the following JavaScript statement containing regular expressions and check if the pattern matches

var text = "testing: 1, 2, 3";
var pattern = /d+/g;
*
Which of the following is the property that is triggered in response to JS errors?

*
Why event handlers is needed in JS? *
 Which of the following tag is used to embed css in html page? *
Which of the following CSS selector is used to specify a rule to bind a particular unique element? *
What will be the output of following CSS code snippet?

h1 {color: "green";}
*
What will be the output of following CSS code snippet?

h1 {color: red text-decoration: underline; font-style: italic;}
*
Which of the following is the correct syntax to link an external style sheet in the HTML file? *
Which of the following is the first CSS specification to become an official W3C Recommendation? *
Which of the following CSS property defines the different properties of all four sides of an element’s border in a single declaration? *
Which of the following is not the property of the CSS box model? *
What will be the output of the following CSS code snippet?

span {
    border: 1px solid red;
        outline: green dotted thick;
}
*
Which of the following CSS property sets the shadow for a box element? *
Which of the following CSS selector selects the elements that are checked? *
Which of the following CSS property is used to specify table borders in CSS? *
Which of the following CSS Property sets the stacking order of positioned elements? *
What will be the output of the following CSS code?

div {
    border-width:5px;    
    border-style:dotted solid double dashed;
}
*
Which of the following CSS3 property can be used to allow line breaks within words? *
CSS stands for *
The _____________ property allows us to include the padding and border in an element’s total width and height *
Which of the following measurement defines a measurement relative to a font’s x-height? *
Which of the following is not the value for an unordered list? *
Which is not a box-level element? *
Which of the following CSS selectors are used to specify a group of elements? *
Which of the following are the CSS Extension Prefixes for Webkit? *
Which of the following is the correct way to apply CSS Styles? *
Which of the following CSS property sets what kind of line decorations are added to an element, such as underlines, overlines, etc? *
The CSS property used to specify the transparency of an element is - *
Submit
Clear form
Never submit passwords through Google Forms.
This content is neither created nor endorsed by Google. Report Abuse - Terms of Service - Privacy Policy