1. Question: Which of the following statements is not correct?

    A
    TimerEvent.TIMER is dispatched when one cycle of the timer is complete.

    B
    When the repeat count in a timer is set as 0, the timer continues indefinitely until the stop() method is invoked.

    C
    When a timer is instantiated, it starts automatically.

    D
    All of these statements are correct.

    Note: Not available
    1. Report
  2. Question: In the date formatter's format string, which of the following pattern letter represents minutes?

    A
    M

    B
    N

    C
    S

    D
    Y

    Note: Not available
    1. Report
  3. Question: While accessing the clipboard through the system manager class, we can:

    A
    read data from the clipboard.

    B
    write data to the clipboard.

    C
    read data from and write data to the clipboard.

    D
    Neither read data from nor write data to the clipboard.

    Note: Not available
    1. Report
  4. Question: Given two String variables str1="Hello" and str2="World", which of the following 2 ways can be used to concatenate the 2 strings and store the result in str1?

    A
    str1= str1+str2;

    B
    str2.concat(str1,str2);

    C
    str1.concat(str1,str2);

    D
    str1.concat(str2);

    E
    str2.concat(str1);

    Note: Not available
    1. Report
  5. Question: Which of the following loop structures are used to access dynamic instance variables of an object?

    A
    while

    B
    do-while

    C
    for

    D
    for-each-in

    Note: Not available
    1. Report
  6. Question: Which of the following properties of the Date class does not accepts 0 as a value?

    A
    hours

    B
    date

    C
    day

    D
    month

    Note: Not available
    1. Report
  7. Question: Which class is the parent class of all custom event classes?

    A
    Event

    B
    MouseEvent

    C
    ResultEvent

    D
    EventDispatcher

    Note: Not available
    1. Report
  8. Question: Suppose we have two swf's named Parent.swf and Child.swf (in the same domain), where the Child.swf is loaded inside the Parent.swf as a module, can an Event listener be registered in the Parent.swf to detect mouse click events inside the Child.swf?

    A
    Yes, for any event

    B
    Yes, but only for MouseEvent.CLICK

    C
    No, events that occur in the Child.swf do not propagate outside that swf

    D
    None of these

    Note: Not available
    1. Report
  9. Question: Which event is triggered when a timer completes its execution?

    A
    TimerEvent.CYCLE_COMPLETE

    B
    TimerEvent. END

    C
    TimerEvent. COMPLETE

    D
    TimerEvent.TIMER_COMPLETE

    Note: Not available
    1. Report
  10. Question: Read the following statements and then choose the correct option. i. A class can extend another class ii. A class can Implement an Interface iii. An interface can extend a class iv. An interface can extend another interface

    A
    Only i and ii are true

    B
    Only i, ii and iii are true

    C
    Only i, ii and iv are true

    D
    All the four are true

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