About Faculty of Engineering, Imo State University, Owerri (IMSU)…
Are you good in sciences and have a good mathematical mind? Interested in studying to become an Engineer? Studying Engineering at The Faculty of Engineering, Imo State, University, you will use this knowledge and put it into practice through various design projects.
Imo State University (IMSU) have a wide range of resources and engineering heritage and currently IMSU offer a wide variety of engineering courses spread across five departments that will empower you to face the future with a class.
Departments Available in the Faculty on Engineering
Below are the list of Departments available in the Faculty of engineering in IMSU. Simply click on any of the departments to know more about the Philosophy, Aims, Ojectives, UTME/Direct entry Admission Requirements.
- Agricultural Engineering
- Electrical & Electronic Engineering
- Civil Engineering
- Food Science & Technology
- Mechanical Engineering
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 (_) {}
})();