Recall & Review
beginner
What is the .NET SDK?
The .NET SDK is a set of tools and libraries that developers use to build, run, and publish .NET applications. It includes the compiler, runtime, and command-line tools.
Click to reveal answer
beginner
How do you verify if the .NET SDK is installed on your computer?
Open a command prompt or terminal and type
dotnet --version. If the SDK is installed, it will show the installed version number.Click to reveal answer
beginner
Which website do you visit to download the .NET SDK?
You can download the .NET SDK from the official Microsoft website: https://dotnet.microsoft.com/en-us/download
Click to reveal answer
beginner
What command creates a new console application after installing the .NET SDK?
Use the command
dotnet new console -o MyApp to create a new console app in a folder named MyApp.Click to reveal answer
intermediate
Why is it important to add the .NET SDK to your system PATH?
Adding the .NET SDK to your system PATH allows you to run
dotnet commands from any folder in the terminal without specifying the full path.Click to reveal answer
What command shows the installed .NET SDK version?
✗ Incorrect
The command
dotnet --version displays the installed SDK version.Where do you download the official .NET SDK?
✗ Incorrect
The official .NET SDK is available at the Microsoft .NET download page.
Which command creates a new console app named MyApp?
✗ Incorrect
The
dotnet new console -o MyApp command creates a new console app in the MyApp folder.Why add .NET SDK to system PATH?
✗ Incorrect
Adding to PATH lets you run
dotnet commands anywhere in the terminal.What happens if you run
dotnet --version and get an error?✗ Incorrect
An error means the SDK is missing or the PATH is not set correctly.
Explain the steps to install and verify the .NET SDK on your computer.
Think about where to get it, how to install, and how to check it works.
You got /4 concepts.
Describe how to create a new console application using the .NET SDK command line.
Focus on commands and folder creation.
You got /4 concepts.