Question
20 identical solid hemispheres of radius 3 cm are melted
to form a big solid hemisphere. What is the radius (in cm) of the biggest hemisphere formed, if 20% of the solid is wasted during the process?Solution
Given: Radius = 3 cm 20 hemispheres 20% wasted → 80% used Volume of 1 small hemisphere = (2/3)π(3³) = 18π Total volume = 20 × 18π = 360π Used volume = 360π × 0.8 = 288π Volume of big hemisphere = (2/3)πR³ = 288π ⇒ (2/3)R³ = 288 ⇒ R³ = 432 ⇒ R = ∛432 So, 432 = 6³ × 2 ⇒ ∛432 = 6∛2
What does the term "code optimization" refer to in the context of software development?
Mutex locks can be used in CPU scheduling.
Which of the following members of a superclass are NOT inherited by its subclass?
Which keyword is used in Java to indicate that a method in a subclass is intended to override a method in its superclass?
A system call is typically implemented as a(n):
State true or false
This scheduling algorithm is not ideal for time sharing systems.
Consider the following Java code snippet:
  import java.util.PriorityQueue;
  public class HeapQuestion9 {
    publ...
A hash map (or dictionary) implemented with separate chaining is exhibiting very poor performance, even with a seemingly good hash function. Operations ...
Which algorithm divides the input array into two halves, sorts each half, and then merges the sorted halves?
In object-oriented programming, when defining an interface method, which of the following statements is true regarding method parameters?