HELP,
I tried to duplicate the quiz in moodle 3.9 but it freezes, All the debug options are on but still, there's no issue in front.
FYI: I can still duplicate the attendance and PDFs in a course but not a quiz

The errors in that screenshot say you have jquery-3.4.1.js which suggests you have Moodle 3.9.4 or earlier. If so you should update to Moodle 3.9.15 as your site is missing 1.5 years of fixes. Maybe this issue has already been fixed or improved.
Also, check cron is running as there's an issue with random questions taking a very long time to copy that's resolved with a scheduled task (MDL-64595).
The Table 'moodledb_ace.mdl_tag_correlation' doesn't exist error from your cron shows that one of Moodle's database tables is missing. This table, mdl_tag_correlation, has been part of Moodle since version 1.x.
So you should fix this, but if you have one table missing perhaps there are others missing too. Moodle Docs has a page on how to verify the database schema. I've attached the CREATE TABLE statement for mdl_tag_correlation from my 3.9 site, this may need changing if your database uses a different character set and character collation.
The The backup destination folder does not exist or is not writable message means the web server process cannot write to this folder. Perhaps this is a permissions or folder ownership problem. Perhaps there's something like SELinux preventing access. If you find out which user your web server uses when running PHP scripts (often one of apache, www-data or php-fpm) then you could try a test like sudo -u apache touch /home/…/moodledata/moodlecoursebkp/testfile (change apache if your web server uses a different user, replace … as needed) to see if the user can create a file in the target folder.
Hey Leon, I was successfully able to add mdl_tag_correlation But still didn't get that part where we can compare the database to check if any other tables are missing. Also when I check the system status in reports it shows me this https://ibb.co/pwHpXNk . I'm not sure what ad-hoc is and how to keep it running also I wanted to know how to continuously run the cron script because as of now I've to do it manually from chrome by typing the URL.
There's one more error in cron.php and it's this https://ibb.co/mbhqpVj
Exception: Can't find data record in database table backup_courses. (SELECT * FROM {backup_courses} WHERE courseid = ? AND laststatus = ?
Thanks a lot for helping me with this Im totally unaware of how to moodle and all this works still trying to get it back as far as I can.