62. What exception is thrown if the user does not have a proper authorization?
63. Select the type argument of open constructed type?
64. What does the following form define?
Protocol://HostName/FilePath?Query
Protocol://HostName/FilePath?Query65. Choose the exceptions generated by the GetReponse() method defined by WebRequest.
66. What will be the output of the following C# code?
class Program
{
static void Main(string[] args)
{
Uri obj = new Uri("https://www.example.com");
Console.WriteLine(obj.AbsoluteUri);
Console.ReadLine();
}
}
class Program
{
static void Main(string[] args)
{
Uri obj = new Uri("https://www.example.com");
Console.WriteLine(obj.AbsoluteUri);
Console.ReadLine();
}
}67. Which of these exceptions is thrown by the URL class's constructors?
68. What does the following C# code set defines?
public Gen(T o) {
ob = o;
}
public Gen(T o) {
ob = o;
}