Question
A hemispherical bowl of internal radius 15 cm contains a
liquid. The liquid is to be filled into cylindrical shaped bottles of diameter 5 cm and height 6 cm. The number of bottles required to empty the bowl is:Solution
Hemisphere volume: = (2/3) × (22/7) × 15³ = 7071.43 cm³ Bottle volume: = (22/7) × (2.5)² × 6 = 117.86 cm³ Number of bottles = 7071.43 ÷ 117.86 = 60
Fill the blank
In K-Means algorithm, we calculate the distance between each point of the dataset to every ________ initialized.Â
...Which layer is not in OSI but in TCP/IP
What is the purpose of the CASE statement in SQL?
Which of the following is NOT a primary function of an operating system?
Fill the correct option for blank space 23.
Consider a simplified backtracking approach for generating permutations of [1, 2, 3]. If the current partial permutation is [1, 3], what is the next log...
What is a characteristic feature of a bipartite graph?
Which of the following tools is commonly used for compliance auditing in Unix/Linux environments?Â
A data analyst frequently performs range queries (e.g., "find all records where salary is between X and Y"). Which type of indexing is generally most ef...
Complete the Python function to return the number of elements in a given list.
def get_list_length(my_list):
  _________ # Line to complete