Question
A fish is at a depth d below the surface of a water
tank. A cat observes the fish from air. Due to refraction at water-air interface, the apparent depth of the fish will be:Solution
When light passes from a denser medium (water) to a rarer medium (air) , it bends away from the normal , making the object appear closer to the surface than it actually is. This is why a submerged object (like a fish) appears at a shallower depth to an observer in air. This phenomenon leads to the concept of apparent depth , given by: Where: • d = real depth • μ = refractive index of water relative to air (>1) Since μ > 1, it follows that: Apparent depth < d Therefore, correct answer is option (c).
Which of the following is the primary goal of a Cross-Site Scripting (XSS) attack?
In the context of page replacement algorithms, which one minimizes page faults in an ideal scenario?
Which of the following allows dynamic memory allocation?
Which OSI model layer is responsible for reliable delivery of data between devices?
Which of the following is a primary advantage of using a star schema in a data warehouse design?
In CI/CD pipelines, which of the following is NOT a key benefit of Continuous Integration (CI)?
What is the primary role of a Certificate Authority (CA) in a Public Key Infrastructure (PKI)?
Which of the following is true about triggers in a relational database?
Which data structure is used in recursion?
What is the output of the following recursive function call func(3) ?
int func ( int n) {
if (n == 0 ) return 1 ; <...