Answer:
Swap daemon
Explanation:
Swap daemon manages the physical memory by moving process from physical memory to swap space when more physical memory is needed. The main function of the swap daemon is to monitor processes running on a computer to determine whether or not it requires to be swapped.
The physical memory of a computer system is known as random access memory (RAM).
A random access memory (RAM) can be defined as the internal hardware memory which allows data to be read and written (changed) in a computer.Basically, a random access memory (RAM) is used for temporarily storing data such as software programs, operating system (OS),machine code and working data (data in current use) so that they are easily and rapidly accessible to the central processing unit (CPU).
Additionally, RAM is a volatile memory because any data stored in it would be lost or erased once the computer is turned off. Thus, it can only retain data while the computer is turned on and as such is considered to be a short-term memory.
There are two (2) main types of random access memory (RAM) and these are;
1. Static Random Access Memory (SRAM).
2. Dynamic Random Access Memory (DRAM).
Answer:false becuse that what i got but i dont know though
Answer:
How do different frequencies (colors) of light affect a recorded video image? It gives the recording a hue. It might also mess up the colors of the object on the set.
Answer:
Written in Python:
num1 = 10
num2 = 15
print(num1)
print(num2)
print(num1 * num2)
Explanation:
The programs requires that two number be assumed and multiplied.
The program uses num1 and num2 to represent the two numbers (line 1 and line2)
These numbers were then initialized to 10 and 15, respectively (note that, you can replace these numbers with any number of your choice)
The next two lines then print num1 and num2
The last line prints the result of their multiplication
However, line by line explanation is as follows:
<em>This line initializes num1 to 10</em>
num1 = 10
<em>This line initializes num2 to 15</em>
num2 = 15
<em>This line prints num1</em>
print(num1)
<em>This line prints num2</em>
print(num2)
<em>This line prints the product of num1 and num2</em>
print(num1 * num2)
Answer:
<img src="cricket.jpeg" style="width: 500px; height:400px">