14.
What is the purpose of the <Link /> component in Next.js?
To render server-side content
To prefetch data for faster page rendering
To create clickable links within Next.js applications
To handle client-side navigation
Correct: B, C, D
The <Link /> component in Next.js is used for client-side navigation. It enables you to create clickable links within your Next.js application and handle the routing without reloading the entire page. This provides a better user experience and faster navigation. Additionally, it automatically prefetches the page data, improving the performance of your application.