4
Request a talent

Hello

Let us know about your hiring needs and we will help you find the best talent.

Request now

Mohammad Nazem Abu-Sada

United Arab Emirates - 13 years of Experience

About me

Operation Technology (OT) Systems Engineering Design, implementation, testing and communication of process control and SCADA systems for several applications. Maintenance activities and enhancement/modifications for OT systems.

My personality traits

Collaborative team player
Independent
Flexible
Analytical thinker

Technical skills

SQL TCP/IP Networks C Programming and problem-solving Code review and debugging User Research and Analysis User Interface (UI) Design

Education


Princess Sumaya University for Technology (PSUT)

Bachelor's degree . King Abdullah II School of Engineering

From 2007 to 2012

Courses and Programs


ISA/IEC 62443 Cybersecurity Risk Assessment Specialist

International Society of Automation

From Aug 2024 to Aug 2024

ISA/IEC 62443 Cybersecurity Fundamentals Specialist

International Society of Automation

From Jun 2023 to Jun 2023

CompTIA A+, Network+ & Security+

CompTIA

From May 2023 to May 2023

Breathing Apparatus and H2S

ETSDC, Abu Dhabi

From Feb 2022 to Feb 2022

BOSIET / TBOSIET/TFOET

ETSDC, Abu Dhabi

From Jan 2022 to Jan 2022

Python Programming Language

Couesera

From Jan 2022 to Jan 2022

CCNA 200-301

CCNA

From Sep 2021 to Sep 2021

AADvance System

Silvertech

From Feb 2021 to Feb 2021

AutroSafe SelfVerify IFG, configuration certification

Autronica Fire and security AS, Div. Oil&GAS

From Aug 2018 to Aug 2018

Professional Training Program for Dream Report 4.8 Software

Ocean Data Systems Training Center

From Feb 2018 to Feb 2018

Proficy HMI/SCADA CIMPLICITY Advanced on Ver. 9.0: Certified by GE IP

GE IP

From Apr 2017 to Apr 2017

Microsoft Excel Advanced

Microsoft

From Sep 2012 to Sep 2012

Silvertech Internal Training: Panel Hardware, Installation and Design

Silvertech

From Aug 2012 to Aug 2012

Safety Related Trainings: ADNOC HSE/Safety Induction, Fire Prevention & Fire Fighting, Elementary First Aid, Proficiency in Survival Techniques, Helicopter Underwater Escape & Sea Survival Techniques

ADNOC

From Jan 2018 to Jan 2022

Experience


Resident Engineer – (Sr. Automation and Control Eng.) Job

Abu Dhabi City Municipality

Aug 2023 - Present

Sr. Engineer - Projects & Commissioning Job

Crescent Middle East Trading & Oil-Fields Services

May 2023 - Aug 2023

Sr. Systems Engineer Job

SilverTech Middle East FZCO

May 2018 - May 2023

Field Services Engineer Job

SilverTech Middle East FZCO

Jul 2012 - May 2018

Services Engineer Job

Al-Shaker Scientific and Medical Supplies

Jan 2012 - Jun 2012

Research and Development Assistant Job

Princess Sumaya University for Technology

Sep 2011 - May 2012

Get free access to our talents till Dec 2025

To get the contact info, please sign up now as a company

To download the CV please create a company account

Hello again,


Log in to your account

or
Don't have an account? Join Us

title_name

Register for free today and start your journey to finding the best talent

or
Have a company account on Sprints?

Password Recovery

or

Account verification

Log in to your account

or
Don't have an account? Join Us

title_name

Register for free today and start your journey to finding the best talent

or
Have a company account on Sprints?

Password Recovery

or

Account verification

const route = $(this).data('route'); $(this).addClass('loadingbar primary').prop('disabled', true); $.ajax({ type: 'GET', url: route, data: 'json', success: (response) => { $(this).removeClass('loadingbar primary').prop('disabled', false); window.open(response.join_url, '_blank'); }, }); }); $(document).ready(function() { const $techShiftBanner = $('#tech-shift-banner'); const EIGHT_HOURS = 8 * 60 * 60 * 1000; const techShiftHiddenTime = localStorage.getItem('techShiftBannerHiddenTime'); const currentTime = new Date().getTime(); if (!techShiftHiddenTime || currentTime - parseInt(techShiftHiddenTime) > EIGHT_HOURS) { $techShiftBanner.removeClass('tw-hidden').addClass('tw-flex'); localStorage.removeItem('techShiftBannerHiddenTime'); } $('.close-tech-shift-banner').on('click', function() { $techShiftBanner.fadeOut(); localStorage.setItem('techShiftBannerHiddenTime', currentTime.toString()); }); const $agfBanner = $('#agf-banner'); const agfHiddenTime = localStorage.getItem('agfBannerHiddenTime'); if (!agfHiddenTime || currentTime - parseInt(agfHiddenTime) > EIGHT_HOURS) { $agfBanner.removeClass('tw-hidden').addClass('tw-flex'); localStorage.removeItem('agfBannerHiddenTime'); } $('.close-agf-banner').on('click', function() { $agfBanner.fadeOut(); localStorage.setItem('agfBannerHiddenTime', currentTime.toString()); }); }); $("#user-mode-toggle").on("change", function() { }); const itiErrorMap = ["Invalid number", "Invalid country code", "Too short", "Too long", "Invalid number"]; $(document).ready(function() { var removeItemsTitle = ""; if (removeItemsTitle != '') { Swal.fire({ html: '

The' + ` ${removeItemsTitle} ` + 'is currently not available for purchase and removed from your cart

', icon: 'info', showCancelButton: false, backdrop: 'static', allowOutsideClick: true, }); } if (isNotActivateAccountRoute && (mobileRequired || nameRequired || needUpdateType)) { let model = $('#popup_complete_profile').html(); if (typeof model === 'undefined') { return; } model = model.replaceAll('phone', 'phone_number'); model = model.replaceAll('error-msg', 'phone_error_msg'); model = model.replaceAll('valid-msg', 'phone_valid_msg'); Swal.fire({ html: model, icon: 'question', showCancelButton: false, showConfirmButton: false, backdrop: 'static', allowOutsideClick: false, customClass: { content: 'p-0 text-left', }, onOpen: () => { $('[data-toggle="tooltip"]').tooltip(); renderPhoneField('phone_number'); }, width: '32rem', }); } }); let iti; let phoneNumber = null; let countryCode = null; function renderPhoneField(id, defaultCountry = 'eg') { const input = document.querySelector("#" + id); if (!input) { return; } input.setAttribute("dir", document.body.dir); iti = intlTelInput(input, { hiddenInput: () => ({ phone: "mobile", country: "country_code" }), initialCountry: defaultCountry, separateDialCode: true, nationalMode: false, }); countryCode = defaultCountry; input.addEventListener('countrychange', (e) => { countryCode = iti.getSelectedCountryData().iso2; }); input.addEventListener('keyup', (e) => { phoneNumber = e.target.value.replaceAll(' ', ''); }); } function validatePhone(id, returnValue = false) { const input = document.querySelector("#" + id); if (input) { let errorMsg = ''; let error = false; if (!input.value.trim()) { errorMsg = "Phone is required."; error = true; } else if (!iti.isValidNumber()) { const errorCode = iti.getValidationError(); errorMsg = itiErrorMap[errorCode] || "Invalid number"; error = true; } if (error) { if (returnValue) { return error } $.toast({ text: errorMsg, bgColor: '#f63c3c', textColor: 'white', hideAfter: 10000, position: 'bottom-right', icon: 'error' }); } return error; } }