Recommended System Requirements
– 8 GB RAM,
– Intel Core i5 Processor,
– 500 GB HDD,
– 22″ Monitor
System Setup
Click the below links to download and install the softwares/tools to setup your development environment:
Visual Studio Community Edition
MS SQL Server Management Studio
Test your Development Environment
Perform the below steps to test if you have installed all the required software properly or not.
Visual Studio Community Edition
– Create an user account in GitHub. Launch Visual Studio and login with the GitHub credentials.
– Create a new C++ Console project from the Create Project wizard (or from File -> New -> New Project). Once the project is created, hit F5 to build and run the project output. If a black command prompt appears then the installation is successful.
– Again do the above steps for a C# Console project. If a black command prompt appears then the setup is right of C# projects as well.
MS SQL Server Express
– Open the MS SQL Server Management Studio.
– Click New Query.
– Enter an SQL query to create a table e.g. CREATE TABLE Student(ID int, NAME varchar(50)) and hit F5 to execute the query. If the query executed successfully then the installation is proper.
Eclipse
– After installing Java SDK. Add the path of Java\Bin folder to the PATH environment variable.
– Launch Eclipse.
– Create a new Java project.
– Add a new java file
– Write a HelloWorld program and hit CTRL + F11 to build and run.
– If the application runs properly, then your setup is correct.
