WAN domain which stands
for Wide Area Network and consists of the Internet and semi-private
lines.
The <span>RISKS
are: Service provider can have a major network
outage, Server can receive a DOS or DDOS attack</span>
and A FTP server can allow anonymously uploaded illegal software.
Answer:
Explanation:
.exe: is a file extension, means file that contain executable program which can be run by Microsoft windows.
.txt: is also file extension which contains text (characters).
.avi: means (audio video interleave) is a file extension, which contains audio and video data encoded.
Answer:
Line of sight and rules of composition
Explanation:
He needs the rules of composition in order to use the line of sight
Answer:
28 years
Explanation:
Let's represent present age of Chris and Dom as C and D respectively. Then since ratio of present age of Chris and Dom is 3:4. Therefore,
...(1)
Now, it is given that in 7 years their age ratio will become 4:5. Therefore,


Using value of C from equation(1),


Thus, present age of Dom is 28 years.
Answer:
The program to this question can be given as:
Program:
def swap_values(user_val1, user_val2): #define function
return (user_val2, user_val1) #return values
if __name__ == '__main__': #define constructor.
n1 = int(input('Enter first number :')) #input value form user
n2 = int(input('Enter second number :')) #input value form user
(n1,n2) = swap_values(n1,n2) #hold function values.
print(n1) #print values
print(n2) #print values
Output:
Enter first number :3
Enter second number :8
8
3
Explanation:
The explanation of the above python program can be given as:
- In the python program we define a function that is "swap_values". This function takes two integer values that is "user_val1 and user_val2" as a parameters and returns variable values that is "user_val2 and user_val1".
- Then we use a constructor in this we define two variable that is "n1 and n2" these variable are use to take user-input from the user and pass the value into the function.
- To hold the value of the function we use n1 and n2 variable and print these variable value.