1. Capstone Project’s description

Develop of a significantly complex software system, employing knowledge gained from courses throughout the program including defining requirements, design, implementation, and quality assurance. Students must follow a suitable process model, pay attention to quality issues, and manage the project themselves, following all appropriate project management techniques. Success of the project has to deliver the stages on times.

Sample deliverables:

Students should deliver one or several iterations of a software system, along with all artifacts appropriate to the process model they are using. These would likely include a project plan (perhaps updated regularly and containing cost estimations, risk analysis, division of the work into tasks, etc.), requirements (including use cases), architectural and design documents, test plans, source code, and an installable software package.

Additional teaching considerations:

2. The IT Capstone Project Products

The Capstone Project Product is composed of 7 parts:

If you want to create a static web project, you can follow like this:

In the local computer, you can organize the folder structure on your computer as follows:

Academic policy

Prerequisite(s)

PRF192 - Programming Fundamentals

Java Technology

Java technology is a high-level, robust, and secure programming platform. It includes:

The Java Programming Language

Java is:

Java Platform

The Java platform includes:

1749043121839

Java Platform Editions

Bytecode

1749043071389

Example: A Simple Java Program

1
2
3
4
5
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

1749043171651