6.
Which command can be used to create a new Next.js application?
npx create-next-app@latest
npm new create-next-app
npm init next-app
None of these
Correct: A
The correct command to create a new Next.js application is "npx create-next-app@latest". With this command, you will quickly start building a new Next.js application, with everything set up for you.