The question above has multiple choices as
follows;
a. Internet
<span>
b. Intranet
<span>
c. Extranet
<span>
d. World Wide Web
Correct answer is
C. Extranet
<span>You are able to use an Extranet to securely
share part of a business’s operation with vendors, suppliers, customers, partners
or any other business organization. We
can also view an extranet as an intranet extended to users outside the company.</span>
</span></span></span>
There's no scenarios attached, so it's quite difficult to answer. But I think I can give you an example. People often use find option to search exact information. They use it when they know what they search.
Answer:
The original program is not given; So, I'll just write the program myself in python
import random
x = random.randint(1,10)
y = random.randint(1,10)
result = x * y
print(str(y)+" * "+str(x)+" = "+str(result))
Explanation:
The first line imports random
import random
The next two line generates random numbers between 1 and 10 and save in variables x and y
x = random.randint(1,10)
y = random.randint(1,10)
This line multiplies both numbers
result = x * y
This line prints the result
print(str(y)+" * "+str(x)+" = "+str(result))
Answer:
static void Main(string[] args)
{
try
{
Console.Write("Enter your name: ");
string name = Console.ReadLine();
if (name.Length > 15)
{
throw new Exception($"Name length {name.Length} is too long, max 15!");
}
else
{
Console.WriteLine("Hello " + name);
}
}
catch(Exception ex)
{
Console.WriteLine("Exception occurred: " + ex.Message);
}
}
Explanation:
This is one way of doing it. More elaborate is to subclass Exception into NameLengthException and throw that.