Answer:
Option b is the correct answer for the above question.
Explanation:
Thrashing occurs when the virtual memory of the computer is more used. It is because the system does not have more memory. That's why the virtual memory is busy in the paging or other work of the operating system and there is no memory left for the other useful work of the system and then Thrashing occurs.
The question statement states the same which is described above and this is the cause when thrashing occurs. Hence the b option is correct. while other is not because--
- Option "a" states about spooling but spooling is a concept of copy the data.
- Option C states about an interrupt but it is a concept to stop the work of CPU when any input is coming from the outside.
- Option D states about a pooling signal which is an operation of computers.
Answer:
Desmos (colab w/h math antics) , Calendar, Quizlet (colab w/h google) , Quizizz (colab w/h quizlet) , Kahoot (colab w/h google) , or Google Translate
I am pretty sure A is the answer because it makes most sense plugged into the sentence.
Answer:
import sys, time
from os import walk, remove
from os.path import exists, join, getsize, getctime
file_counter = [ ]
folder_name, file_size = argv
isExist = exists( folder_name )
if folder_name == True:
for root, folder, files in walk( folder_name ):
for file in files:
if getsize( join ( root, file ) ) >= file_size:
file_log = [ ]
file_log.append( file )
file_log.append( join ( root, file) )
file_log.append( time.ctime( getctime( file ) ) )
file_counter.append( file_log )
else:
remove ( join ( root, file ) )
Explanation:
The python script above output the filename, size and file creation date of any folder passed to it.