

MCQOPTIONS
Saved Bookmarks
1. |
What does the following code display while execution?
class Program { static void Main(string[] args) { Uri obj = new Uri("https://www.mcqsmentor.com/Category/c-sharp-programming"); Console.WriteLine(obj.AbsoluteUri); Console.ReadLine(); } } |
A. | mcqsmentor |
B. | mcqsmentor.com |
C. | www.mcqsmentor.com |
D. | https://www.mcqsmentor.com/Category/c-sharp-programming |
Answer» E. | |