Home / CSE / Javascript - CS :: Invocation and Performance Navigation

CSE :: Javascript - CS

  1. Which of the following property gives access to the JavaScript memory usage data?

  2. A.

     performance.memory

    B.

     memory(performance)

    C.

     performance(memory)

    D.

     none of the mentioned


  3. What is the purpose of the timing property in the window.performance object?

  4. A.

     Time of navigation event

    B.

     Time of page load event

    C.

     Time of navigation and page load event

    D.

     None of the mentioned


  5. Which of the following property is associated with the Response event?

  6. A.

     responseStart

    B.

     responseEnd

    C.

     both responseStart and responseEnd

    D.

     none of the mentioned


  7. Which of the following computation is correct to calculate the time taken for page load once the page is received from the server?

  8. A.

     responseEnd-loadEventEnd

    B.

     loadEventEnd-responseEnd

    C.

     loadEventEnd/responseEnd

    D.

     responseEnd/loadEventEnd


  9. Which of the following property is associated with the Processing event?

  10. A.

     domComplete

    B.

     domContentLoaded

    C.

     domInteractive

    D.

     none of the mentioned


  11. What does it indicate when the type attribute of the navigation object is set to 2?

  12. A.

     Navigation by moving back through history

    B.

     Navigation by moving forward through history

    C.

     Navigation by moving back & forward through history

    D.

     None of the mentioned


  13. What does the method Performance.now() return?

  14. A.

     DOMTimeStamp

    B.

     DOMHighResTimeStamp

    C.

     DOMStamp

    D.

     TimeStamp


  15. Which of the following is a read-only property?

  16. A.

     PerformanceTiming.navigationStart

    B.

     PerformanceTiming.fetchStart

    C.

     PerformanceTiming.navigationStart & PerformanceTiming.fetchStart

    D.

     None of the mentioned


  17. Which of the following is an interface?

  18. A.

     Time

    B.

     Timing

    C.

     Performance

    D.

     PerformanceTiming


  19. How many properties are associated with the Response event?

  20. A.

     1

    B.

     2

    C.

     3

    D.

     4