Question
In a diffraction experiment using a single slit, the
angular width of central maximum decreases when:Solution
In a single-slit diffraction experiment, the central maximum is the bright fringe at the center of the diffraction pattern. The angular width of this central maximum is defined as the angle between the first minima on either side of the central peak, and it is given by: Angular width = 2θ = 2λ / a,
where:
- λ is the wavelength of the light used
- a is the width of the slit
- Increases when the wavelength (λ) increases
- Decreases when the slit width (a) increases
Which operation is used to add an element to the top of a stack?
Which SQL command is used to remove only specific rows from a table while preserving the structure and other rows?
In a data warehousing environment, what is the primary purpose of an OLAP (Online Analytical Processing) cube?
Which design pattern is best suited for managing the creation of objects without specifying their concrete classes?
Which tree traversal gives nodes in non-decreasing order for a BST?
In the context of Management Information Systems (MIS), which of the following best describes the role of a decision support system (DSS)?
Which of the following techniques is most efficient for finding the kth smallest element in a Binary Search Tree (BST)?
Which of the following statements is true about ACID properties in database transactions?
Which of the following best illustrates Encapsulation in Object-Oriented Programming?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...