0
0
C Sharp (C#)programming~5 mins

.NET SDK Installation and Setup in C Sharp (C#) - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
Adotnet --version
Bdotnet --install
Cdotnet --list
Ddotnet --help
Where do you download the official .NET SDK?
Ahttps://nuget.org
Bhttps://github.com/dotnet/sdk
Chttps://dotnet.microsoft.com/en-us/download
Dhttps://microsoft.com/windows
Which command creates a new console app named MyApp?
Adotnet build MyApp
Bdotnet create console MyApp
Cdotnet init console MyApp
Ddotnet new console -o MyApp
Why add .NET SDK to system PATH?
ATo run dotnet commands from any folder
BTo speed up the computer
CTo uninstall the SDK
DTo update Windows
What happens if you run dotnet --version and get an error?
AYour computer is broken
BThe .NET SDK is not installed or not in PATH
CYou need to restart the computer
DThe command is deprecated
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.