976). Where are memory leaks found?

[A] Client side objects
[B]Server side objects
[C]Both Client side and Server side objects
[D]User side objects

Show Answer

977). Which handler is triggered when the content of the document in the window is stable and ready for manipulation?

[A]onload
[B]manipulate
[C]create
[D]oncreate

Show Answer

978). What is the central concept of JavaScript memory management?

[A]Reliability
[B]Reachability
[C]Efficiency
[D]Transparency

Show Answer

979). When does a memory leak happen?

[A]Browser doesn’t release memory from objects unnecessary
[B]Browser releases too many memories
[C]Browser releases memory iteratively
[D]Browser releases memory quickly

Show Answer

980). What will happen when the data of the jQuery.cache is read from an element?

[A]Unique number is retrieved as elem[jQuery.expando]
[B]Data is read from jQuery.cache[id]
[C]Unique number is retrieved as elem[jQuery.expando] & Data is read from jQuery.cache[id]
[D] Data is cleared from jQuery.cache[id]

Show Answer

981). The style property belongs to which of the following object?

[A]Element
[B]Window
[C]Location
[D]Navigation

Show Answer

982). Which of the following functions are referenced internally?

[A]setTimeout
[B]setInterval
[C]both setTimeout and setInterval
[D]clearInterval

Show Answer

983). What is the purpose of destroying the functions and objects?

[A]Consume unnecessary CPU cycles
[B] Prevent the dropping of reference count to 0
[C]Centralize the responsibility to clean up
[D] All of the mentioned

Show Answer

984). When does a cycle occur during memory leak?

[A]No reference occurs
[B]Two objects reference
[C]One object gets referenced
[D]Three object gets referenced

Show Answer

985). Which of the following is a way to retain an object in memory?

[A]Console Log
[B]Closures
[C]Destroy objects
[D]Clear object

Show Answer