The program language we use to running this question is python.
Multiprocessing is a process class in python that been used for set up another python process, it is a way for the parent application to control execution. Multiprocessing also can increase code efficiency because the defined tasks will be in different process.
The code is,
import multiprocessing
from datetime import datetime
import time
import random
def ptime():
cur = datetime.now()
print("Today's date and time is {}".format(cur))
time.sleep(random.random())
if __name__ == '__main__':
proc1 = multiprocessing.Process(target=ptime())
proc2 = multiprocessing.Process(target=ptime())
proc3 = multiprocessing.Process(target=ptime())
proc1.start()
proc2.start()
proc3.start()
proc1.join()
proc2.join()
proc3.join()
Learn more about multiprocessing here:
brainly.com/question/14611713
#SPJ4