DELSU first semester Computer Based Examination timetable for 2021/2022 session
The Examination is scheduled to start on 16th May, 2022.
The timetable for the Examination has been provided below for easy access
The Examination is scheduled to start on 16th May, 2022.
The timetable for the Examination has been provided below for easy access
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();