Answer:
The answer is "Option D".
Explanation:
In the network, the UNC defines a related file with the removable drive from, which the file is stored without needing interpretation. It is used to ensure, that unguarded computers can be accessed across the network and other options, that can be clarified in the following terms which are not correct:
- In option A, It is used to manage computers and other devices on the internet, that's why it is wrong.
- In option B, It is also known as a server that manages network security, that's why it is wrong.
- In option c, It is used in software designing, that's why it is wrong
.
Answer:
The program to this question as follows:
Program:
x=int(input('Input the first number: ')) #defining variable x and input value by user
y=int(input('Input the second number: ')) #defining variable y and input value by user
if x > y: #if block to check value x>y
max=x #define variable max that hold variable x value
print('max number is: ', x) #print value
else: #else block
max=y #define variable max that holds variable y value
print('max number is: ', y) #print value
Output:
Input the first number: 22
Input the second number: 33
max number is: 33
Explanation:
In the above code two-variable, "x and y" is defined, which holds a value, which is input by the variable. In the next step, the if block statement is used that can be described as follows:
- In the if block, it will check x is greater than y it will define a variable, that is "max", that holds variable x value and prints its value.
- In the else block, if the above condition is false it uses the max variable, that holds variable y value and prints its value.