The compulsory short-answer type question covers the entire syllabus. Students must attempt it along with one question from each of the four sections.
<h1> to <h6> tags define headings. <h1> is the highest level (most important), while <h6> is the lowest level.
Use the <img> tag with src attribute specifying the image URL. Example: <img src="photo.jpg" alt="description">.
<ol> creates an ordered (numbered) list. <ul> creates an unordered (bulleted) list. Both use <li> for each list item.
Use the colspan attribute inside <td> or <th>. Example: <td colspan="2"> merges two columns into one cell.
CSS controls the visual presentation of HTML elements—colors, fonts, layout, and spacing—separating content from design for easier maintenance.
Recursion occurs when a function calls itself repeatedly until a base condition is met. It is useful for tasks like calculating factorials.
Programmer-defined functions are created by the user. JavaScript global functions (e.g., parseInt(), isNaN()) are built into the language and always available.
Pass the array name as an argument. The function receives a reference to the original array, allowing modifications to affect the original data.
The Document object represents the loaded HTML page (DOM), while Window represents the browser container. Document is a property of the Window object.
No Description Added
The compulsory short-answer type question covers the entire syllabus. Students must attempt it along with one question from each of the four sections.
<h1> to <h6> tags define headings. <h1> is the highest level (most important), while <h6> is the lowest level.
Use the <img> tag with src attribute specifying the image URL. Example: <img src="photo.jpg" alt="description">.
<ol> creates an ordered (numbered) list. <ul> creates an unordered (bulleted) list. Both use <li> for each list item.
Use the colspan attribute inside <td> or <th>. Example: <td colspan="2"> merges two columns into one cell.
CSS controls the visual presentation of HTML elements—colors, fonts, layout, and spacing—separating content from design for easier maintenance.
Recursion occurs when a function calls itself repeatedly until a base condition is met. It is useful for tasks like calculating factorials.
Programmer-defined functions are created by the user. JavaScript global functions (e.g., parseInt(), isNaN()) are built into the language and always available.
Pass the array name as an argument. The function receives a reference to the original array, allowing modifications to affect the original data.
The Document object represents the loaded HTML page (DOM), while Window represents the browser container. Document is a property of the Window object.