Maritime Security

Training Course

Our services are designed for three primary audiences: Government Employees from both military and civil sectors, Private security personnel responsible for security operations, and individuals with professional interest in the security field. We provide specialized solutions that address the unique challenges these groups face in their security-related responsibilities.

Level:

Beginner

Duration:

5 days (every morning from Sunday to Thursday)

Application Announcement

The registration will open soon!
Eligible candidates will be invited to the placement test.
To be eligible for the placement test, the candidate must be enrolled in the KAUST Academy/Coursera program within 3 days of receiving Coursera invitation and then complete the required pre-requisite courses within the recommended period, otherwise the Coursera subscription will be revoked and passed on to other applicants on the waiting list.

Requirements

1- You must be a university student currently enrolled in a university, or recently graduated within two years.
2- The accepted applicants’ age range is between 18 and 30, inclusive.
3- You must complete the prerequisite courses on Coursera.
4- Passing the assessments at each stage. Top qualified students will be invited to the next stage.

*Compulsory Step

Prerequisite Core Courses

To qualify for the Artificial Intelligence Specialization Program, you’ll need to sign up for Coursera within 5 days of receiving the invitation link at your registered email address, and then successfully complete one of two tracks to be eligible to take part in the placement test:

Prerequisite Courses of Artificial Intelligence – Python Basics

Prerequisite Courses of Artificial Intelligence – Mathematics

Students with top scores in the placement test will receive invitation for (Introduction to AI) to join a one week in person training during university breaks. At the end of the course, students with top performance will be invited to another one week in person training (Advanced AI) and take an exam at the end of the course as well.

The top qualified students will receive invitation to participate in a variety of KAUST Academy Summer Programs at elite partners institutions in KSA and/or abroad including Summer School, Internships, and Research Programs.

Students who will not be selected after passing the placement test in December, will still have access to over 200 courses, specializations, guided projects and more on Coursera until August 2026. They will be eligible to receive a free certificate for each achievement on Coursera during that period.

Theoretical part:

Practical Training:

Skills you’ll gain

Maritime Patrol Operations

Incident Management at Sea

Application of Maritime Security Regulations

Coordination with Maritime Security Forces

Ethical Conduct in Maritime Security

Course Agenda

Daily Schedule

 

Module 1

Introduction to Maritime Security

Duration:

09:00-12:00

Module 2

Understanding the roles and responsibilities of maritime security personnel

Duration:

13:00-15:00

Module 1

Maritime security regulations

Duration:

09:00-12:00

Module 1

Ensuring compliance with international maritime laws

Duration:

09:00-12:00

Module 1

Port and vessel security management

Duration:

09:00-12:00

Module 1

Incident reporting and documentation

Duration:

09:00-12:00

Module 1 : Hands-on Introduction to Linux Commands and Shell Scripting
Module 1 : Introduction to Maritime Security

Duration:

09:00-12:00

During university breaks 2025/2026

Duration:

09:00-12:00

Recommended Agenda for Stage 1

Below you can find a recommended agenda to complete the pre-requisite courses to be invited to the placement test and advance in the program.

Professor’s Take on the Course

“Artificial intelligence isn’t just a buzzword; it’s the cornerstone of our future. The potential for AI to revolutionize industries, drive economic growth, and enhance the quality of life is unparalleled. At the AI Initiative, we are committed to bringing the best research, facilities, and products to the Kingdom. Our collaborations with global leaders and institutions ensure that we remain at the forefront of AI research and development.

Our mission isn’t just about technology; it’s about nurturing local talent to sustain our progress. We are partnering with KAUST Academy in providing programs that are meticulously crafted to educate and empower Saudi students with the skills needed to not only keep up with the rapid advancements in AI but to drive innovation themselves. By fostering a vibrant AI ecosystem, we’re ensuring that the Kingdom remains a frontrunner in the AI race”

Professor Bernard Ghanem
Chair of KAUST Center of Excellence on Generative AI (GenAI)

Thousands of happy learners

Frequently Asked Questions (FAQ)

Who can apply for this program?

Saudi students and recent graduates in Saudi universities majoring in science and/or technology relevant fields.

By signing up and completing the prerequisite (online) courses via Coursera.

The program is currently offered with a full scholarship for talented students at all Saudi universities.

No, this training program is catered to Saudi students and recent graduates in Saudi universities to well prepare them for the ideal career opportunities in the Kingdom and/or abroad.

Absolutely. The course emphasizes practical programming and covers foundational concepts that are applicable to real-world AI solutions.

(Stage one) Prerequisite online course is self-paced, suggested completion time is 3 to 5 weeks.

(Stages 2, 3, and 4) Introduction, Advanced, and Summer Program) are full day in-person training and instructor-paced. They will will take place during university breaks.

To qualify for the placement test, you are required to successfully complete only the pre-requisite course(s) which are auto-enrolled to your access upon joining Coursera.

Yes, participants who successfully complete the online course(s) and/or the in-person courses will receive a certificate of completion to showcase their newfound knowledge and skills at each stage.

The program consists of four stages with assessment after each stage to get qualified to the following one. Top performing students will be selected to advance further until they successfully reach the summer program.

Students who successfully complete the pre-requisite courses on Coursera will be already benefited from this program even if they do not get selected to the second stage.

Do not forget that you have free access to over 200 courses, specialization, guided projects, and more through the KAUST Academy/Coursera license.

We strongly recommend that you enroll, complete and earn free certificates for as many courses as you like, during the entire period of the program.

  1. Question: In Python, if you create a new list b as a clone of list a using slicing (b = a[:]), which of the following statements is true?
    1. a and b are the same list, and any modification to a will also reflect in b.
    2. a and b are different lists, but they share the same memory address.
    3. a and b are different lists, and modifications to b do not affect a.
    4. a and b are different lists, but modifications to a will still affect b.

Answer: C

  1. Question: The Hessian matrix of a function f(x, y) is a matrix of:
    1. First partial derivatives of f with respect to x and y
    2. Second partial derivatives of f with respect to x and y
    3. Mixed partial derivatives of f with respect to x and y only
    4. Derivatives of f with respect to time

Answer: B

  1. Question: Which line correctly writes a list athlete = [“John”, 28, “Basketball”] as a CSV row?
    1. write(“,”.join(athlete) + “\n”)
    2. write(“,”.join([str(item) for item in athlete]) + “\n”)
    3. write(“Name, Age, Sport\n” + athlete + “\n”)
    4. writelines(“,”.join(athlete))

Answer: B

  1. Question: If class Dog inherits from class Animal, which of the following statements is true?
    1. Dog can access all methods and attributes of Animal.
    2. Animal can access all methods and attributes of Dog.
    3. Instances of Animal can call methods defined only in Dog.
    4. Dog and Animal have no relationship unless explicitly specified in each method.

Answer: A

  1. Question: If the correlation coefficient between two variables X and Y is -0.85, which of the following is true?
    1. X and Y have a strong positive relationship.
    2. X and Y have a weak negative relationship.
    3. X and Y have a strong negative relationship.
    4. There is no relationship between X and Y.

Answer: C

 

  1. Question: Given two lists, names = [“Alice”, “Bob”, “Charlie”] and ages = [25, 30], what will list(zip(names, ages)) return?
    1. [(“Alice”, 25), (“Bob”, 30), (“Charlie”, None)]
    2. [(“Alice”, 25), (“Bob”, 30), (“Charlie”, 0)]
    3. [(“Alice”, 25), (“Bob”, 30)]
    4. [(“Alice”, 25), (“Bob”, 30), (“Charlie”, “Unknown”)]

Answer: C, Explanation: zip stops at the shortest list, so “Charlie” is ignored.

  1. Question: Which feature scaling method is equivalent to calculating the z-score (standardizing to have mean 0 and standard deviation 1)?
    1. Min-max scaling
    2. Robust scaling
    3. Standard scaling
    4. None of the above

Answer: C

  1. Question: Why is the characteristic equation of a matrix important in linear algebra?
    1. It determines if a matrix is invertible.
    2. It is used to calculate the eigenvalues of the matrix.
    3. It finds the trace of the matrix.
    4. It checks if the matrix is symmetric.

Answer: B

  1. Question: You have a DataFrame df with columns [‘Category’, ‘Sales’]. Which command will give the average Sales for each unique Category?
    1. groupby(‘Category’).mean()
    2. groupby(‘Category’)[‘Sales’].mean()
    3. groupby(‘Category’)[‘Sales’].average()
    4. groupby(‘Category’).count()

Answer: B

Do you have any questions?

About us

Discover the story, mission, and vision behind KAUST Academy

Partners

Collaborate with us to drive innovation and academic excellence.

Contact us

Feel free to reach out to us with any questions, comments, or feedback.