Answer:
Here you go :)
Explanation:
Change this however you'd like:
array = []
for n in range(10):
x = int(input("Enter integer: "))
array.append(x)
dup = set(array)
print(", ".join(str(i) for i in dup))
Answer:
B. False
Explanation:
A page-replacement policy can be defined as a set of algorithm that instructs the operating systems on what memory page is to be swapped, paged out or written to disk in order to allocate more memory as they're required by various active processes during virtual memory management.
Some of the algorithms or techniques used by the operating system for page-replacement policy are;
1. Last In First Out (LIFO).
2. First In First Out (FIFO).
3. Least Recently Used (LRU).
4. Least Frequently Used (LFU).
5. Optimal (OPT or MIN).
Hence, the page-replacement policy means that pages are placed to make more space and to minimize the total number of page that would be missing.
Answer:
The answer to this question is given below in the explanation section
Explanation:
There are different forms control. for example HTML form controls are:
-
Text Input Controls.
- Checkboxes Controls.
- Radio Box Controls.
- Select Box Controls.
- File Select boxes.
- Hidden Controls.
- Clickable Buttons.
- Submit and Reset Button.
to take input from the user and store it into the variable, mostly text input form control is used.
however, you can also use text input, checkbox, radio button as a control to take input from the user and store the input value in some variables.