C#
C# and .Net Framework Lab SNJPSNMS Degree College, Nidasoshi 1 Program 1: Write c# program to show the machine details like machine name, operating system, version, physical memory and calculate the time since last boot up. using System; class Program { static void Main(string[] args) { Console.WriteLine("machine name is:"+Environment.MachineName); Console.WriteLine("\ncurrent operating systeem is:"+Environment.OSVersion); Console.WriteLine("\nexecuting version of visual studio .net is"+Environment.Version); Console.WriteLine("\ncurrent directory is:"+Environment.CurrentDirectory); Console.WriteLine("\nyou have{0} byes of RAM in your system", + Environment.WorkingSet); Console.WriteLine("\nthe system time since last bootup is:{0} minutes", (Environment.TickCount)/1000/60); Console.WriteLine("\nlogical drives in the system are :"); String[] drives=Environment.GetLogicalDrives(); for (int...