Answer:
RAM
Explanation:
"RAM" refers to <em>Random-Access Memory. </em>Just like the human brain, this stores your computer files temporarily. It is considered to be a <em>"volatile memory"</em> which means that information can only be stored<u> when there's power.</u> So, when your computer shuts down,<u> the information is los</u>t. This is similar to the human brain, especially when it comes to learning. When a person learns new things, some of the information he read before may be forgotten.
Answer: False
Explanation:
The given statement is false, as the configuration of the firewall, operational and administration procedure must be documented.
The configuration of multiple firewall are identical and the integrity and also performance of the configuration firewall files are check on the regularly bases.
It is basically used to avoid the security leaks and the documentation errors so it is necessary that it should be check regularly so that it can easily implement without any interrupt occurrence.
Answer:
- m = 3
- n = 20
-
- triList = []
- current = 0
- for i in range(1, n + 1):
- current = current + i
- if(current >= m and current <= n):
- triList.append(current)
-
- print(triList)
Explanation:
The solution code is written in Python 3.
Firstly, create variable m and n and set the value 3 and 20 to the variables (Line 1 -2)
Create a triangle number list (Line 4) and another variable current to hold the value of current total of triangle number (Line 5).
Create a for loop and iterate through the number between m and n (Line 6). Calculate the current total of triangle number (Line 7) and proceed to check if the current triangle number is bigger or equal to m and smaller and equal to n, add the current triangle number to triList (Line 8-9).
Print the triList (Line 11) and we shall get [3, 6, 10, 15]
Answer:
Universal disc format (UDF) file system.
Explanation:
Blue-ray discs are the optical disc for data storage in a digital format. They were designed as succession of DVDs. They use UDF file system in them.
- UDF file system is used in blu-ray discs.
- This system is used to store data on discs by burning media.
- These files have the extension (.UDF)
- UDF is mostly used in DVDs and optical discs.
- Broad range of data is stored in computer storage using UDF.
Answer: Option [C] : The longest time path through the network.
Explanation:
The critical path of a network is the longest time path through the network.