mcq of html mcq of css mcq of javascript

Welcome to your mcq of html mcq of css mcq of javascript

Full Name
Mother Name
Mobile Number
1. 
HTML stands for -

2. 
The correct sequence of HTML tags for starting a webpage is -

3. 
Which of the following element is responsible for making the text bold in HTML?

4. 
Which of the following tag is used to insert a line-break in HTML?

5. 
Which of the following tag is used for inserting the largest heading in HTML?

6. 
How to create an unordered list (a list with the list items in bullets) in HTML?

7. 
Which character is used to represent the closing of a tag in HTML?

8. 
How to create a hyperlink in HTML?

9. 
How to create an ordered list (a list with the list items in numbers) in HTML?

10. 
Which of the following element is responsible for making the text italic in HTML?

11. 
How to insert an image in HTML?

12. 
How to create a checkbox in HTML?

13. 
Which of the following tag is used to define options in a drop-down selection list?

14. 
HTML tags are enclosed in-

15. 
The tag in HTML is used for -

16. 
Which of the following is the correct way to send mail in HTML?

17. 
How to insert a background image in HTML?

18. 
What are the types of unordered or bulleted list in HTML?

19. 
Which of the following is the correct way to create a list using the lowercase letters?

20. 
Which of the following is the paragraph tag in HTML?

21. 
The tags in HTML are -

22. 
Which HTML tag is used to display the power in expression, i.e., (x2 - y2)?

23. 
Which is the correct way to comment out something in HTML?

24. 
Which of the following is the correct way to change the font face in HTML?

25. 
Type of Maping Coords in Html

26. 
CSS stands for -

27. 
Which of the following is the correct syntax for referring the external style sheet?

28. 
The CSS property used to control the element's font-size is -

29. 
Which of the following is the correct syntax to make the background-color of all paragraph elements to yellow?

30. 
Which of the following is the correct syntax to display the hyperlinks without any underline?

31. 
The CSS property used to make the text bold is -

32. 
The CSS property used to specify the transparency of an element is -

33. 
How to select the elements with the class name "example"?

34. 
Which type of CSS is used in the below code?

35. 
The correct syntax to give a line over text is -

36. 
The CSS property used to set the maximum width of the element's content box is -

37. 
The CSS property used to make the rounded borders, or rounded corners around an element is -

38. 
Which type of JavaScript language is ___

39. 
The "function" and " var" are known as:

40. 
Which one of the following symbol is used for creating comments in the javascript:

41. 
Choose the correct JavaScript syntax to change the content of the following HTML code.

p id="geek">GeeksforGeeks</p

42. 
Which of the following is the correct syntax to display “GeeksforGeeks” in an alert box using JavaScript?

.

43. 
Predict the output of the following JavaScript code.

script type="text/javascript"

a = 8 + "8";

document.write(a);

</script

44. 
Predict the output of the following JavaScript code.

script type="text/javascript" language="javascript"

var x=5;

var y=6;

var res=eval("x*y");

document.write(res);

45. 
Predict the output of the following JavaScript Code.

<script type="text/javascript"

<..!--
document.write("Hello");

//--..>

</script

46. 
How to write an ‘if’ statement for executing some code. If “i” is NOT equal to 5?

47. 
How to initialize an array in JavaScript?

48. 
Which company developed JavaScript?

49. 
Find output of below code var a = '20'; var b = a = 30; document.write(a+b);

50. 
Can we write javascript programming notepad

Leave a Comment