Complete these tasks to reinforce what you learned in this module.
Given string name = "ada";, print exactly WELCOME, ADA using interpolation and ToUpper().
$"WELCOME, {name.ToUpper()}"using System;
class Program
{
static void Main()
{
// Uppercase the name and print the greeting
}
}