Skip to content

Computer Multimedia Animation

Faculty-Shared Solved Questions, Part 1

What is CSS? Explain difference between styles in CSS.

  • CSS[Cascading Style Sheets] is a style sheet language used to describe the presentation and visual appearance of HTML and XML documents.

    1. Inline Styles: Inline style are applied directly to html elements using the style attribute. Inline style have high specific but the code result in code duplication if used externally.
    • EXAMPLE:
      html
      <p style="color: blue; font-size: 16px;">
    1. Internal Styles: This are defined within the <style> tag within document CSS rules are written directly with style block, allows to define syles for specific for specific html elements within the same html file.
    • EXAMPLE:
      html
      <head>
          <style>
              color: blue;
              font-size: 16px;
          </style>
      </head>
    1. External Styles: This are the separates CSS files linked to html documents using the <link> tag. There are rules within the external CSS file, which is referenced in the href attribute of the <link> tag.
    • EXAMPLE:
      html
      <head>
          <link ref="stylesheet" href="styles.css">
      </head>
    1. [OTHER]CSS Framework: It is like a bootstrap foundation and Bulma offer pure-designed styles, layout systems and components.

What is JavaScript and it's features.

  • JS[JavaScript] is a high-level programming language primarily used for the client-side web development.
  • Features:
    1. Client-Side: It runs on the user's browser.
    2. Versatile: JS can be used for wide range of tasks, from simple calculation to complex server-side application.
    3. Dynamic Typing: JS is a dynamically typed language which means types of variable are defined based on stored values.

Explain about <a> tag: href, target and name attributes.

  • <a> tag: This tag is also known as anchor tag used to create hyperlinks in HTML and it allows navigate to other web pages, email address or locations within the same page.
    1. href[HyperText Reference]: It specifies the URL of the link. It can be an absolute or a relative URL.
      EXAMPLE: /examprep
    2. target: It specifies where to open the link.
      • _blank: Opens the link in a new tab or window.
      • _self[default]: Opens the link in the same tab or window.
      • _parent: Opens the link in the parent frame.
      • _top: Opens the link in full page.
    3. name: It specifies a name for the "anchor". This attributes is used for book marking purpose, allowing users to create a link to a specific section of a page.
  • EXAMPLE:
html
<a href="https://www.github.com/jack-pots/" target = "_blank" name = "github-account">
    SIGMA MALE
</a>

Briefly describe alert() and confirm() methods in JavaScript.

  • alert():
    • Displays a message box with a specified message.
    • It is used to display the warning or error message to the user.
    • It is used to provide information to the user, such as a confirmation message.
    • It is used in debugging purposes to display variable values or other information.
    • EXAMPLE:
      javascript
      alert("Hello!")
  • confirm():
    • It is used to display a dialog box with specified message and two button and two button: OK and Cancel.
    • It is used to confirming users actions, such as deleting a file or submitting a form.
    • EXAMPLE:
      javascript
      confirm("Speed your computer by deleting System32");

Explain addEventListener() method with example.

  • It attaches an event handler to a specified element.
    • Parameters:
      1. Event: The type of event to listen for[E.g. "click", "hover", "submit"].
      2. Function: The event handler function to execute when the event occurs.
      3. Use Capture: An optional boolean value indicating whenther to use event capture or bubbling.
    • Syntax:
      javascript
      Element.addEventListener(Event, Function, User Capture)
    • Example:
      javascript
      <button id="Mybutton">Click Me!</button>
      <script>
          const button = document.getElementById("Mybutton");
          button.addEventListener("click", function() { 
              alert("Button Clicked!");
          });
      </script>

Explain Longhand properties and Shorthand properties.

  • CSS transitions can be defined using both longhand and shorthand properties. These two approaches offer distinct levels of control or convenience for specifying transition effects.

    1. Longhand Properties: They are CSS properties that are written out in full, with each individual aspect of the transition such as the properties being transitioned, the duration the timing function and the delay.
    • EXAMPLE:
      css
      .ballontop {
          transition-property: width;
          transition-duration: 1s;
          transition-timing-function: ease-in-out;
          transition-delay: 0.2s;
      }
    1. Shorthand Properties: It allows to specify multiple properties in a single line of code. Shorthand properties offer a more concise way to declare transition by combining multiple aspects into a single property called transition.
    • EXAMPLE:
      css
      transition: width 1s case-on-out 0.2s;
    AspectsLonghand PropertiesShorthand Properties
    NO. OF DECLARATIONFor separate declaration for property, duration.A single declaration combining all aspects.
    CONTROLProvides precise control over each aspects.Offers more concise way to declare.
    READABILITYMay result in longer, more detailed code.Provides a compact and readable declaration.
    FLEXIBILITYAllows different properties to have individual settings.Suitable for straightforward transitions.