I believe a block. I think that is the thing that can be repeated though the different parts of the code.
Answer:
E
Explanation:
i think it is E because if you think about it they don't make everything accurate on normal mapping its just to give you an idea of where to go or find.
Answer:
Archiving data files manages the size of a mailbox for
✔ local
storage.
Creating an Outlook data file
✔ protects
data files in storage on a computer.
Explanation:
Because its right.
Answer:Packet and circuit switching
Explanation: Packet switching is the technique through which the data is sent from the source to destination in the form of data packets on dynamic path.It is the time of connectionless switching and route generates for each packet.
Circuit switching is the switching technique having connected path for the sending and receiving of the data.They have well defined and established path for the transmission of data.
Other options are incorrect because they define the terms that are associated with the data that gets transmitted like bandwidth,transmission rate ,packet etc. These options are not the way in which data transmitted or switched.Thus, the correct option is packet and circuit switching.
Static void PrintTriangle(int n){ for(;n>0;n--) { Console.WriteLine(new String('*', n)); }}