Q1. What is the use of "text-align:justify" in CSS?
Q2. Which CSS property is used to specify the indentation of the first line of a text?
Q3. Which CSS property is used to specify the space between lines?
Q4. Which of the following properties is used to change the font of text?
Hint
Q5. What are the valid values for "position" property?
Q6. The < style > in Internal CSS refers to ___.
Q7. How can you write into HTML output using JavaScript?
Q8. . ........ serializes only the enumerable own properties of an object.
Q9. What will be the output of the following code snippet?
a = [1, 2, 3, 4, 5];
print(a.slice(2, 4));
Q10. What is the correct syntax for referring an external CSS?
Q11. What will be the shift() output of the following JavaScript code?
var a = [];
a.unshift(1);
a.unshift(22);
a.shift();
a.unshift(3,[4,5]);
a.shift();
a.shift();
a.shift();
Q12. Array elements can be deleted using the JavaScript operator?
Q13. The files that can be committed are always present in git
Q14. Which of the following HTTP Status code means CREATED, when a resource is successful created using POST or PUT request?
Q15. Which of the following is not an OOPS concept?