Answer:
A peer-to-peer (p2p) network provides a scalable and fault-tolerant mechanism to locate nodes anywhere on a network without maintaining large amount of routing state. This allows for a variety of applications beyond simple file sharing, including in multicast systems, anonymous communications systems, and web caches.
Explanation:
Not hard at all ma'am.
This stage is known as fetching.
- Any operation you do in a computer, it runs a lot of codes inside it, and these codes are in binary.
- For the operation, the computer accesses the RAM memory to gather information about this process, and moves it to the CPU, in a process named as fetching.
- Thus, the stage asked in this problem is known as fetching.
A similar problem is given at brainly.com/question/21536104
3) helps the designer develop a website tailored to the desired audience
In python, spaces in the sense you're talking about, dont matter. For instance,
print ( "hello") will run the same as print("hello")
But, you cannot put a space before the print statement. That's called indenting. You are only supposed to indent code that is inside loops, if-elif-else statements, and functions.