Right Answer: A hypertext link, or hyperlink, is a clickable element in a web page that directs users to another location, which can be another web page, a different section of the same page, or a file.
HTML5 is special because it introduced powerful new features that made websites more interactive, media-rich, and mobile-friendly. Key highlights:
- Built-in support for audio and video without plugins - New semantic tags (like <article>, <section>) for better structure - Improved form controls (date pickers, sliders, etc.) - Offline storage and faster performance - Better mobile and cross-platform support
In short: HTML5 made web development cleaner, faster, and more flexible.
Right Answer: ADO stands for ActiveX Data Objects, which is a Microsoft technology used for accessing and manipulating data from various sources, such as databases, in a programming environment.
Right Answer: A delegate in ASP.NET is a type that represents references to methods with a specific parameter list and return type. It allows methods to be passed as parameters, enabling event handling and callback methods.
Right Answer: The `z-index` property in CSS controls the stacking order of elements that overlap. Elements with a higher `z-index` value are displayed in front of those with a lower value. It only works on positioned elements (those with a position value of `relative`, `absolute`, `fixed`, or `sticky`).