Searching for "Garbage"

Q:

Arrange the given words in the sequence in which they occur in the dictionary.

i. Garbage
ii. Garrulous
iii. Gabber
iv. Garble

 

A) i, iii, iv, ii B) iii, iv, i, ii
C) iii, i, iv, ii D) i, iv, iii, ii
 
Answer & Explanation Answer: C) iii, i, iv, ii

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Logical Sequence of Words
Exam Prep: Bank Exams

Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

Mount Everest has earned the _____ distinction of being the world's highest garbage dump.

A) marked B) disgusting
C) dubious D) dismal
 
Answer & Explanation Answer: C) dubious

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

‘Protocol for Star Rating of Garbage-Free Cities’ launched on January 20, 2018 will be rating cities on ______ rating system.

A) 3-star B) 4-star
C) 5-star D) 7-star
 
Answer & Explanation Answer: D) 7-star

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

Q:

Which is not a benefit of burning garbage for fuel?

A) It creates more space for farming B) It produces methane that can be used like natural gas
C) It partially addresses the solid waste disposal problem D) It provides biomass energy
 
Answer & Explanation Answer: A) It creates more space for farming

Explanation:

Garbage burning is common in rural areas, but it poses health concerns and hazards to the environment. It especially affects people with sensitive respiratory systems, as well as children and the elderly.

 

Benefits ::

  • It produces methane that can be used like natural gas.
  • It partially addresses the solid waste disposal problem.
  • It provides biomass energy.

 

Hence, it creates more space for farming is not the benefit of the burning garbage.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

Q:

What is the difference between Serial and Throughput Garbage collector ?

Answer

The throughput garbage collector uses a parallel version of the young generation collector and is meant to be used with applications that have medium to large data sets. On the other hand, the serial collector is usually adequate for most small applications (those requiring heaps of up to approximately 100MB on modern processors).

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What is the purpose of garbage collection in Java, and when is it used ?

Answer

The purpose of garbage collection is to identify and discard those objects that are no longer needed by the application, in order for the resources to be reclaimed and reused.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What is the purpose of garbage collection in Java, and when is it used ?

Answer

The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

Explain how garbage collection manages the reclamation of unused memory?

Answer

The garbage collector assumes that all objects in the managed heap are garbage. It starts walking the roots and builds a graph of all objects reachable from the roots recursively. It stops when it attempts to add an object to the graph that it previously added. The graph contains the set of all objects that are reachable from the application's roots. Any object/s that is not in the graph is not accessible by the application, and is considered garbage. Collection only occurs when the heap is full. In such a case, each and every garbage object calls the Finalize method and reclaims the unused memory

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect