Prompt
Answer
Pseudo Code for Downloading Handouts from STI eLMS
Overview
The following pseudo code outlines the steps necessary to navigate to the STI eLMS platform, log in, and download handouts from a course. Each step corresponds to a specific action that should be taken.
Pseudo Code Structure
Open Browser
- Check if the device is iOS
- If iOS, open Safari
- Otherwise, open Chrome
Search for STI eLMS
- Enter search query "STI eLMS" in browser's search bar
- Navigate to the login page of STI eLMS
Login to STI eLMS
- Input Microsoft Email
- Input Password
- Click on "Login" button
Access Courses Section
- Locate and click on "Courses" section in the main menu
Navigate to Desired Course
- Browse the list of courses
- Identify and select the course that contains handouts
Open Modules Section
- Locate and click on "Modules" section of the selected course
Browse for Handout
- Review available handouts
- Identify the desired handout to download
Download Handout
- Click on the link or button for the handout (PDF file)
- Confirm download action if prompted
Select Application to Open PDF
- Upon completion of the download, a prompt appears
- Choose the preferred application or Microsoft Reader to open the PDF
Read the Handout
- Open the downloaded PDF in the selected application
- Read and review the content of the handout
Detailed Pseudo Code Example
BEGIN
// Step 1: Open Browser
IF device IS iOS THEN
OPEN Safari
ELSE
OPEN Chrome
ENDIF
// Step 2: Search for STI eLMS
SEARCH "STI eLMS"
NAVIGATE to login page
// Step 3: Login to STI eLMS
INPUT MicrosoftEmail
INPUT Password
CLICK "Login"
// Step 4: Access Courses Section
CLICK "Courses"
// Step 5: Navigate to Desired Course
SELECT Course (that contains handouts)
// Step 6: Open Modules Section
CLICK "Modules"
// Step 7: Browse for Handout
SELECT Handout (to download)
// Step 8: Download Handout
CLICK "Download PDF"
CONFIRM download if required
// Step 9: Select Application to Open PDF
PROMPT choose application to open with
CHOOSE application (e.g., Microsoft Reader)
// Step 10: Read the Handout
OPEN PDF in chosen application
READ Handout
END
Conclusion
The outlined pseudo code provides a clear, step-by-step representation of the actions required to navigate the STI eLMS and download a handout. This serves as a foundational document for implementation in a real programming environment.
Description
This pseudo code details the step-by-step process for navigating the STI eLMS platform, logging in, and downloading course handouts, providing a clear foundation for implementation in programming.