1. Question: Which of the following is not a mouse event?

    A
    onmousescroller

    B
    onclick

    C
    onmouseover

    D
    onmousemove

    Note: Not available
    1. Report
  2. Question: Which event is triggered when a field loses the focus?

    A
    onmouseout

    B
    onblur

    C
    onunfocus

    D
    onkeyup

    Note: Not available
    1. Report
  3. Question: Which of the following is used to capture all click events in a window?

    A
    window.captureEvents(Event.CLICK);

    B
    window.routeEvents(Event.CLICK );

    C
    window.handleEvents (Event.CLICK);

    D
    window.raiseEvents(Event.CLICK );

    Note: Not available
    1. Report
  4. Question: Which of the following events are normally used in form element?

    A
    onClick()

    B
    onReset()

    C
    onSubmit()

    D
    onMouseMove()

    Note: Example
    <form onsubmit="return confirm('Are you sure to submit?')" onreset="return confirm('Are you sure to clear?')">
           City:<select onchange="alert(this.value)">
                <option>Dhaka</option>
                <option>Khulna</option>
                <option>Borishal</option>
            </select>
            Name:
            <input type="text" onfocus="this.style.boxShadow='0 0 4px 3px rgba(0,0,0,.3)'" onblur="this.style.boxShadow='none'" />
            <input type="submit" value="Submit">
            <input type="reset" value="Reset">
        </form>
    1. Report
  5. Question: Which of the following elements are normally uses onChange() event?

    A
    <select>

    B
    <input type="radio">

    C
    <input type="checkbox">

    D
    <input type="text" >

    Note: Not available
    1. Report
  6. Question: Which of the following are general event categories?

    A
    Keyboard and mouse events

    B
    Load events

    C
    Form-related events

    D
    Hardware events

    Note: Not available
    1. Report
  7. Question: Which of the following events are normally used in <input type="text"> element?

    A
    onBlur()

    B
    onReset()

    C
    onFocus()

    D
    onLoad()

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd