The figures shown below depict four mechanisms made using links and hinges, where the small circles represent hinges. Which of the options will allow relative motions between the links?
Shown below are images of chairs produced using typical manufacturing processes. Which of the following statements is/are TRUE?
Shown on the left is an animation loop of a mouse moving. Which option shows the CORRECT path of the mouse?
Shown below is an animation of a bird flying. Which frame is NOT present in the animation?
Shown below is a configuration of a circle and a rigid rod. The length of the rod PQ is equal to the circumference of the green circle. The rod tangentially revolves around the circle till point Q reaches point P. Which option represents the CORRECT tracing of point Q?
Which option has all four parts, that belong to the disc shown on the left?
The words given below are written using a particular font. Identify the digit that does not belong to the same font.
A monospaced font is a font in which all characters are exactly of same width. A document uses a monospaced font for typesetting where each character is exactly 0.6 cm wide. A text line in this document contains only 10 words, where each word contains 6 characters. What is the length of the line in cm?
A wheel of mass \( 4M \) and radius \( R \) is made of a thin uniform distribution of mass \( 3M \) at the rim and a point mass \( M \) at the center. The spokes of the wheel are massless. The center of mass of the wheel is connected to a horizontal massless rod of length \( 2R \), with one end fixed at \( O \), as shown in the figure. The wheel rolls without slipping on horizontal ground with angular speed \( \Omega \). If \( \vec{L} \) is the total angular momentum of the wheel about \( O \), then the magnitude \( \left| \frac{d\vec{L}}{dt} \right| = N(MR^2 \Omega^2) \). The value of \( N \) (in integer) is:
Consider the following code:
int a; int arr[] = {30, 50, 10}; int *ptr = arr[10] + 1; a = *ptr; (*ptr)++; ptr = ptr + 1; printf("%d", a + arr[1] + *ptr);