Advanced Web Designing Class 12 MCQs

Advanced Web Designing is a important topic from Class 12 Information Technology (IT) of the MSBSHSE (Maharashtra Board). It focuses on modern website development using HTML, CSS, JavaScript, Bootstrap, and basic backend concepts.

On this page, students will find chapter-wise MCQs for Advanced Web Designing Class 12, prepared strictly according to the latest HSC syllabus. These multiple-choice questions help students strengthen their conceptual understanding, improve problem-solving skills, and prepare effectively for board exams, unit tests, and practical assessments.

Advanced Web Designing Class 12 MCQs

1. HTML stands for _.
a. Hyper Text Markup Language
b. Hyper Text Mackup Language
c. High Transfer Machine Learning
d. None of the above

Show Answer ⟶
a. Hyper Text Markup Language

2. HTML5 is basically used because it supports __.
a. Browser Technology
b. Mobile Technology
c. Backend Technology
d. None of the above

Show Answer ⟶
b. Mobile Technology

3. Which of the following browsers is supported by HTML 5?
a. Google Chrome
b. Microsoft Edge
c. Mozilla Firefox
d. All of the above

Show Answer ⟶
d. All of the above

4. HTML5 has introduced additional form controls which can also be used for _.
a. Styling web pages
b. Collecting user input more effectively
c. Creating server-side scripts
d. Designing animations

Show Answer ⟶
b. Collecting user input more effectively

5. Which of the following code is used for the colour picker?
a. <input type=”color”>
b. <input type=”picker”>
c. <input type=”colorpicker”>
d. None of the above

Show Answer ⟶
a. <input type=”color”>

6. What is the default range for <input type=”range”>?
a. Unlimited
b. 1 to 10
c. 10 to 1000
d. 0 to 100

Show Answer ⟶
d. 0 to 100 (By default <input type=”range”> spans from 0 to 100 unless specified otherwise.)

7. Which of the following attributes ensures that a field must be filled before form submission?
a. Read-only
b. Pattern
c. Required
d. Placeholder

Show Answer ⟶
c. Required (The required attribute makes an input field compulsory.)

8. Which input type is best suited for entering a telephone number?
a. <input type=”telephone”>
b. <input type=”tele”>
c. <input type=”tel”>
d. None of the above

Show Answer ⟶
c. <input type=”tel”>

9. What does the pattern attribute do in an input field?
a. Specifies maximum value
b. Provides a temporary label
c. Defines a regular expression for validation
d. Makes the field read-only

Show Answer ⟶
c. Defines a regular expression for validation

10. Which attribute uniquely identifies an input element in the DOM?
a. class
b. id
c. name
d. type

Show Answer ⟶
B) id

11. Which attribute is used to apply CSS styles to an input element?
a. id
b. style
c. class
d. name

Show Answer ⟶
c. class

12. The <meta> tag is known as the _ tag.
a. empty tag
b. singular tag
c. Both a) and b)
d. container tag

Show Answer ⟶
c. Both a) and b)

13. The _ tag in HTML is used to provide information about the webpage.
a. <H1> tag
b. <p> tag
c. <meta> tag
d. <table> tag

Show Answer ⟶
c. <meta> tag

14. The HTML <meta> tag is used by _.
a. User
b. Search engines
c. CSS to style the webpage
d. JavaScript to add interactivity

Show Answer ⟶
b. Search engines

15. The <meta> tag is placed between __.
a. <title> tag
b. <head> tag
c. <body> tag
d. None of the above

Show Answer ⟶
b. <head> tag

16. In HTML, the <meta charset=”UTF-8″> tag is used to _.
a. Define language.
b. Define character encoding standard.
c. Define CSS
d. Define keyword

Show Answer ⟶
b. Define character encoding standard

17. The <meta http-equiv=”refresh” content=”5″> tag is used to _.
a. Refresh the page every 5 seconds.
b. Define character encoding.
c. Send cookies back to the server
d. None of the above

Show Answer ⟶
a. Refresh the page every 5 seconds.

18. The <meta http-equiv=”set-cookie”> tag is used to:
a. Refresh the page every 5 seconds.
b. Define character encoding.
c. Send cookies back to the server.
d. None of the above

Show Answer ⟶
c. Send cookies back to the server

19. CSS stands for _.
a. Cascading Style Sheets
b. Cascading Style Syntax
c. Creative Style System
d. None of the above

Show Answer ⟶
a. Cascading Style Sheets

20. The benefits of CSS in webpages are _.
a. CSS saves a lot of work.
b. Allows consistent styling across multiple pages
c. It reduces code duplication.
d. All of the above

Show Answer ⟶
d. All of the above

21. The declaration block can contain _.
a. Only one declaration
b. One or multiple declarations
c. Both a) and b)
d. None of the above

Show Answer ⟶
b. One or multiple declarations

22. How many methods are used in CSS to implementing styling information to an HTML document?implement
a. One method
b. Two methods
c. Three methods
d. None of the above

Show Answer ⟶
c. Three methods

23. __ CSS can apply directly in the HTML code.
a. Inline stylesheet
b. Internal CSS
c. External CSS
d. All of the above

Show Answer ⟶
a. Inline stylesheet

24. Which of the following CSS can be written inside the <head> tag?
a. Inline stylesheet
b. Internal CSS
c. External CSS
d. All of the above

Show Answer ⟶
b. Internal CSS

25. The external style sheet is generally used when you want to make changes on multiple pages.
a. Inline stylesheet
b. Internal CSS
c. External CSS
d. All of the above

Show Answer ⟶
c. External CSS

26. Which of the following CSS codes adds blank spaces around the content of an element?
a. Letter spacing
b. Padding
c. Border
d. None of the above

Show Answer ⟶
b. Padding

27. To control the alignment of any block-level text or paragraph can be defined as _.
a. left, right
b. left, right, centre
c. centre
d. left, right, centre, justify

Show Answer ⟶
d. left, right, centre, justify

28. The extension of a CSS file is __.
a. “.c”
b. “.cs”
c. “.css”
d. “.csc”

Show Answer ⟶
c. “.css”

29. Which of the following elements can be defined uniquely within the page?
a. ID Selector
b. Class Selector
c. Universal Selector
d. None of the above

Show Answer ⟶
a. ID Selector

30. In ID Selector, which of the following characters should be used?
a. ‘.’ full stop symbol
b. ‘#’ hash character
c. ‘$’ dollar character
d. None of the above

Show Answer ⟶
b. ‘#’ hash character

31. In the CLASS selector, which of the following characters should be used?
a. ‘.’ full stop symbol
b. ‘#’ hash character
c. ‘$’ dollar character
d. None of the above

Show Answer ⟶
a. ‘.’ full stop symbol

32. Which of the following selectors is used as a wildcard character?
a. ID selector
b. Class selector
c. Universal selector
d. Group selector

Show Answer ⟶
c. Universal selector

33. The _ is used to select all the elements with the same style definitions and helps to minimise the code.
a. ID selector
b. Class selector
c. Universal selector
d. Group selector

Show Answer ⟶
d. Group selector

34. Using the position property, the element can be positioned _.
a. Top, Bottom
b. Left, right
c. Top, bottom, left, right
d. Top, bottom, right

Show Answer ⟶
c. Top, bottom, left, right

35. Which of the following is the type of positioning in CSS?
a. Static Position and Fixed Positioning
b. Relative Positioning and Absolute Positioning
c. Both a) and b)
d. None of the above

Show Answer ⟶
c. Both a) and b)

36. The FIXED property forces an element into a __ relative to the browser window.
a. Static Positioning
b. Fixed Positioning
c. Relative Positioning
d. Absolute Positioning

Show Answer ⟶
b. Fixed Positioning

37. __ property sets an element in a specific location, and it is not affected by the flow of the page.
a. Static Positioning
b. Fixed Positioning
c. Relative Positioning
d. Absolute Positioning

Show Answer ⟶
d. Absolute Positioning

38. _ property is used to set the element relative to its normal position.
a. Static Positioning
b. Fixed Positioning
c. Relative Positioning
d. Absolute Positioning

Show Answer ⟶
c. Relative Positioning

39. The _ property defines the flow of content.
a. Float Property
b. Display Property
c. Universal Property
d. All of the above

Show Answer ⟶
a. Float Property

40. The __ property in CSS defines how the components (div, hyperlink, heading, etc.) are going to be placed on the web page.
a. Float Property
b. Display Property
c. Universal Property
d. All of the above

Show Answer ⟶
b. Display Property

41. An unordered list created using the _ tag.
a. <ol>
b. <ul>
c. <ordered>
d. <unordered>

Show Answer ⟶
b. <ul>

42. An ordered list created using the _ tag.
a. <ol>
b. <ul>
c. <ordered>
d. <unordered>

Show Answer ⟶
a. <ol>

43. To define a definition list, the _ tag is used.
a. <ddl>
b. <dl>
c. <df>
d. None of the above

Show Answer ⟶
b. <dl>

44. If the list within another list is known as _.
a. Unordered
b. Nested list
c. Ladder list
d. None of the above

Show Answer ⟶
b. Nested list

45. MPEG stands for _.
a. Moving Picture Experts Group
b. Main Picture Exit Group
c. Motion Picture Experts Group
d. None of the above

Show Answer ⟶
c. Motion Picture Experts Group

46. The __ element enables you to embed (or add) audio files on web pages.
a. <mp3>
b. <audio>
c. <sound>
d. None of the above

Show Answer ⟶
b. <audio>

47. Which of the following audio attributes will start playing as soon as it is ready?
a. Autoplay
b. Autocontrols
b. Auto
c. Autoloop

Show Answer ⟶
a. Autoplay

48. The _ tag is used to specify multiple media resources for media elements.
a. <audio>
b. <source>
c. <media>
d. All of the above

Show Answer ⟶
b. <source>

49. The HTML __ tag is used to embed video into your web page; it has several video sources.
a. <MP4>
b. <video>
c. <media>
d. All of the above

Show Answer ⟶
<video>

50. Which of the following formats are supported by web browsers?
a. ‘.mp4’
b. ‘.Ogg’
c. ‘.WebM’
d. All of the above

Show Answer ⟶
d. All of the above

Disclaimer: We have provide you with the accurate handout of “Advanced Web Designing Class 12 MCQs“. If you feel that there is any error or mistake, please contact me at anuraganand2017@gmail.com. The above study material present on our websites is for education purpose, not our copyrights.

All the above content and Screenshot are taken from Information Technology Class 12 Textbook and MSBSHSE (HSC) Support Material which is present in MSBSHSE (HSC) website, This Textbook and Support Material are legally copyright by Maharashtra State Bureau of Textbook Production and Curriculum Research, Pune. We are only providing a medium and helping the students to improve the performances in the examination. 

Images and content shown above are the property of individual organisations and are used here for reference purposes only. To make it easy to understand, some of the content and images are generated by AI and cross-checked by the teachers. For more information, refer to the official website.

cbseskilleducation.com

Leave a Comment