Assignment Mobile Android application

Size: px
Start display at page:

Download "Assignment Mobile Android application"

Transcription

1 Assignment Mobile Android application Due date: 11:50 pm AEST, Friday Week 6 ASSESSMENT Weighting: 30% Length: Less than 50 MB 1 Objectives This assessment item relates to the learning outcome 1, 2 and 3. More specifically, to design and implement a complex mobile application. The objective of this assignment is for students to: Develop, test and maintain a mobile application using an integrated suite of mobile software development tools. More specifically Android Java development is undertaken using Android Studio and Android API's. Introduction You are assigned the task of creating a data logger to capture inventory location data in a mobile application that stores the data in a local database. The app has fields to record data for items owned by the company were the app is employed to capture time, location and condition data for items in the companies inventory. After the name of the staff member entering the data is given, a page (fragment) is shown to record data values for the items in the inventory. An entry consists of inventory data. When the Save Log Entry button is pressed this data is saved locally in an application SQLDatabase. When the Show Log Entries button is pressed a related page (fragment) is shown that list all the date/time, location and data entries made for that item. We will refer to our app as InventoryLogs. More details of these pages will be given in the sections below. You should also consult the weekly lecture/tutorials on the Moodle website for help and more information on completing the assignment. The tutorials contain step-by-step procedures for working through the assignment as well as some tips and extra help and clarification of the specification. Make sure you read the lecture/tutorials on the Moodle website. The specification of this app will be further refined in Assignment 2. Mobile Application Home Startup Page Fig. 1: Home page (fragment) Page 1 of 6

2 The application start-up page (Home_fragment) is shown in Fig. 1. You are to implement this functionality using the Android API. The application should be based on a single activity with multiple fragments used to present various other views (fragments). The User name: TextEdit field is used for an employer authorised to collected inventory information to enter information on subsequent pages (fragments). Only if a user name has been entered does a click on the Next button result in switching to the inventory data entry page (fragment). If no user name is entered the toast message shown on the right of Figure 1 should be displayed. The inventory data entry page fragment/s is discussed in the next section. Inventory Data Entry Page The page has large text for the pages name, Inventory Item, at the top of the view area. In the figures below the lines of data that are to be logged and saved are shown. The line immediately below the title line has the text "Invoice# ", followed by an EditText field to enter the invoice number with the hint Invoice number. This is followed by a button field with the label ADD ITEM. Then there is the label Quality with a spinner that is used to select one of the possible qualities {"", "Failed", "Poor", "Average", "Good"}. When the spinner is pressed a drop down list is shown and the selected item displayed.the layout and a sample input is shown in figure 2. The ADD ITEM button is used is used to add the invoice number and quality strings to an internal data object that saves the values. The current time is added to this data when the ADD ITEM button is pressed. The SHOW ITEMS button is used to present all the log entries in a list format as shown in the next section. If a value (invoice number, time, or quality) does not have a value then a Toast error message must be displayed indicating the problem, how to fix it, and the entry should not be saved. If the entry is saved an appropriate dialog should be given. SHOW ITEMS Page (Fragment) Fig. 2: Vehicle variety data entry page (fragment). This fragment contains a list view with each of the specific users invoice number, time, and quality entered for every item entered shown as a list item. Every saved entry for that user is displayed in the list like this. A user may have more than one entry during so multiple entries can appear in the list, as shown in figure 3 on the right. At the bottom of the page is a button that returns the user to the invoice data entry page. Note this buttons' text is customised with the name BACK TO ADD INVOICES. Page 2 of 6

3 Options Menu pages Fig. 3: Show log entry page. A number of menu options should be shown, if the user presses the console Menu button, as shown in Fig. 4. Fig. 4: Options menu. If the user taps the Save Menu then all data in the inventory list should be saved to a SQLite database on the mobile device. Typically this is done when the user finishes entering data for the day. When the application is opened, this database is used to intialise previously saved inventory' logger entries to that given in the database. Subsequently new values are added to the app as the user enters new data. The Send all entries will be used for other purposes in the next assignment, but for now we will use it to clear the current database of all inventory entries. This would typically be done at the end of the week. Profile page The Profile fragment UI is shown in the Fig. 5. A Username edit text field is supplied to enter their username. Two text fields are also supplied so that the user can enter their associated password for this username. When the Save profile button is pressed this data is to be saved in local variables (for use in the next assignment) and the Home page (fragment) is shown. If the Cancel profile button is pressed the Home page is returned to. The intention of this is to allow for authentication to a company database at a later stage of development of this app. Page 3 of 6

4 Other Features Fig. 5: Profile page. When the Send menu option is chosen the dialog shown on the left of the Fig. 6 is shown. If the "OK" button is selected then the existing SQLite database is cleared of all entries along with the local objects used to save the inventory entries. As a result, subsequently showing the list the inventory will present an empty list. When the Android BackButton is pressed on the Android device the dialog on the right of the figure below is presented. If the user taps the "Yes" button then the local inventory logs will be written to the SQLite database before quitting the application. If the "No" button is tapped then the application exits without saving any changes to the SQLite database. The intent is that when the user sends the data the database is cleared. Fig. 6: Profile dialogs. Page 4 of 6

5 Required Documentation You are also to prepare a Word document. Your document should include an appropriate title page. Your document should have two sections that address the hardware and software requirements and application commentary given below. Hardware and Software Requirements Your document should: Create a list of mobile devices and manufacturers targeted for the application. You should state what mobile devices where used to test the application and what version of Android is supported. Application Commentary Your document should: List the features you successfully implemented and those you were unable to successfully implement; you should describe the problem in a few sentences and also briefly describe anything you attempted to do to get it to work. Your approach to identifying and attempting to fix these bugs may gain you some partial credit for those features you were unable to implement. A description of any additional functionality you believe would be useful to add to this app should be included. Explain what the features are, and how they would help to improve the app. Submission You are required to submit your assignment electronically via the Moodle course website. The deliverable is a rar or zipped directory containing all the code and resources needed for testing. You must rar or zip (or tar) together: Locate your Android Studio project and zip or rar this folder. Your Word document The resulting rar or zip file should be submitted on the course website. Please note that you should use your student number as the name for your rar or zip file when uploading to Moodle. Page 5 of 6

6 Assessment criteria Assignment Component MainActivity file Fragment files res/layout/xml and other files Menu options SQLite database Hardware/Software & commentary Criteria Marks Total - The onbackpressed() method display the Save dialog - Pressing "OK" in the onbackpressed() method saves the SQLite database and exits - The ArrayList values are initialised from the SQLite database entries on startup (2 marks) - The time/date is added as required - The spinner works as required - The inventory log entries are saved by Add ITEM button - Errors are caught and appropriate messages displayed - The profile page checks that the passwords match, no items are null and returns to the inventory fragment - Show items button works and shows all entries for that inventory and returns to the correct page (3 marks) - Items on fragments are in the correct positions w.r.t. each other - EditText items have the correct hints - Labels are all as given in the specifications - The inventory class exists and is correct - The spinner has the values stored in the strings.xml file - The Profile menu is present and works as specified - The Save entries menu saves the correct values to the database (2 marks) - The Send entries menu option clears the SQLite database and the inventory ArrayList - The DBAdapter class is present and works correctly Hardware / Software requirements Application commentary 2 General Penalties - Feedback given as required - Use appropriate naming conventions - Adequate commenting - Correct grammar - Citation of references, copyright use 1 Lecturer Comments Total 30 Lecturer s Signature Date: Page 6 of 6

Assignment 1 Mobile client application

Assignment 1 Mobile client application Assignment 1 Mobile client application Due date: 11:50 pm AEST, Friday Week 6 ASSIGNMENT Weighting: 20% Length: Less than 50 MB 1 Objectives This assessment item relates to the learning outcome 1, 2, 3

More information

Homework 3 - Dumb Notes

Homework 3 - Dumb Notes Homework 3 - Dumb Notes Due Date: 2/14/19 by 11:59pm For this homework you will use Fragments, Intent filters, and a custom ArrayAdapter to build a simple note-taking app. The app provides functionality

More information

Assignment 1: Port & Starboard

Assignment 1: Port & Starboard Assignment 1: Port & Starboard Revisions: Jan 7: Added note on how to clean project for submission. Submit a ZIP file of all the deliverables to the CourSys: https://courses.cs.sfu.ca/ All submissions

More information

CS 3270 Mobile Development for Android Syllabus

CS 3270 Mobile Development for Android Syllabus General Information Semester: Fall 2016 Textbook: Required: Android 6 for Programmers An App-Driven Approach, 3e, Deitel, Deitel and Wald, Prentice Hall, 978-0-13-428936-6. This book is also available

More information

ASSIGNMENT COVER SHEET

ASSIGNMENT COVER SHEET ASSIGNMENT COVER SHEET Module: Mobile Computing (CSY3029) Tutor: Espen Svennevik Title: Mobile Application Development Comparison Student ID: Student signature*: Grade Extension date Course leader agreement:

More information

1. Implementation of Inheritance with objects, methods. 2. Implementing Interface in a simple java class. 3. To create java class with polymorphism

1. Implementation of Inheritance with objects, methods. 2. Implementing Interface in a simple java class. 3. To create java class with polymorphism ANDROID TRAINING COURSE CONTENT SECTION 1 : INTRODUCTION Android What it is? History of Android Importance of Java language for Android Apps Other mobile OS-es Android Versions & different development

More information

CS 235AM, Mobile Application Development: Android Spring 2016

CS 235AM, Mobile Application Development: Android Spring 2016 CS 235AM, Mobile Application Development: Android Spring 2016 Sections CRN 44555 & 44036 Credits 4 Classroom 19/132 Day & Time M, W 8:00 9:50 Instructor Brian Bird Office Building 19, Room 152 Office Phone

More information

Access the website https://sfei.fluidreview.com/ 1. After accessing the Standards for Excellence Institute website, create an account by clicking on the Sign Up button (See Figure 1). Figure 1 - Dashboard

More information

CMSC436: Fall 2013 Week 4 Lab

CMSC436: Fall 2013 Week 4 Lab CMSC436: Fall 2013 Week 4 Lab Objectives: Familiarize yourself with Android Permission and with the Fragment class. Create simple applications using different Permissions and Fragments. Once you ve completed

More information

Android Programming Lecture 2 9/7/2011

Android Programming Lecture 2 9/7/2011 Android Programming Lecture 2 9/7/2011 Creating a first app 1. Create a new Android project (a collection of source code and resources for the app) from the Eclipse file menu 2. Choose a project name (can

More information

Assessment details for All students Assessment item 1

Assessment details for All students Assessment item 1 Assessment details for All students Assessment item 1 Due Date: Weighing: 20% Thursday of Week 6 (19 th April) 11.45 pm AEST 1. Objectives The purpose of this assessment item is to assess your skills attributable

More information

Desire2Learn eportfolio

Desire2Learn eportfolio This training guide extends your skills from knowing how to use your eportfolio, to how you can assist your students with using their eportfolios. This training guide focuses on how Desire2Learn will group

More information

Homework , Fall 2013 Software process Due Wednesday, September Automated location data on public transit vehicles (35%)

Homework , Fall 2013 Software process Due Wednesday, September Automated location data on public transit vehicles (35%) Homework 1 1.264, Fall 2013 Software process Due Wednesday, September 11 1. Automated location data on public transit vehicles (35%) Your company just received a contract to develop an automated vehicle

More information

Uploading a Submission

Uploading a Submission CESP provides 4 ways to upload via 3 Web Transfer Clients or via a local sftp client. WEB Transfer Clients 1. Integraged Upload (HTML5): Select Integrated Upload for Auto Login to HTML5 Client. (Modern

More information

ANDROID SYLLABUS. Advanced Android

ANDROID SYLLABUS. Advanced Android Advanced Android 1) Introduction To Mobile Apps I. Why we Need Mobile Apps II. Different Kinds of Mobile Apps III. Briefly about Android 2) Introduction Android I. History Behind Android Development II.

More information

File Uploader Application

File Uploader Application File Uploader Application Contents Introduction... 1 Opening File Uploader... 2 Logging In... 2 The Menu Screen... 2 Uploading Files... 3 Sending Files... 4 Opening a Download... 5 Temporary Logins...

More information

Mobile Programming Lecture 4. Debugging

Mobile Programming Lecture 4. Debugging Mobile Programming Lecture 4 Debugging Lecture 2 Review How do you make the android:inputtype attribute of an EditText both textcapwords and textmultiline? Why should you use a @string resource for TextViews

More information

COMP 346 Winter 2019 Programming Assignment 2

COMP 346 Winter 2019 Programming Assignment 2 COMP 346 Winter 2019 Programming Assignment 2 Due: 11:59 PM March 1 st, 2019 Mutual Exclusion and Barrier Synchronization 1. Objectives The objective of this assignment is to allow you to learn how to

More information

Lab 1 - Setting up the User s Profile UI

Lab 1 - Setting up the User s Profile UI Lab 1 - Setting up the User s Profile UI Getting started This is the first in a series of labs that allow you to develop the MyRuns App. The goal of the app is to capture and display (using maps) walks

More information

Nasuni Mobile Access User Guide

Nasuni Mobile Access User Guide Using Nasuni Mobile Access, you can access data stored in the Nasuni Filer using mobile devices, including ios-based devices (such as iphone and ipad) and Android phones. You can perform tasks such as

More information

CSE 5236 Project Description

CSE 5236 Project Description Instructor: Adam C. Champion, Ph.D. Spring 2018 Semester Total: 60 points The team project (2 3 students per team) for this class involves conceptualizing, designing, and developing a mobile application

More information

FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 MENU BAR... 6 FILE UPLOAD... 7

FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 MENU BAR... 6 FILE UPLOAD... 7 3 FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 MENU BAR... 6 FILE UPLOAD... 7 SUBMISSION STATUS... 7 HELP... 7 LOGOUT...10 WELCOME PAGE...10 SUBMITTING OASIS DATA...10

More information

FUNCTIONALITY. 02/2018 v1.01 Outcome and Assessment Information Set (OASIS) FUNCTIONALITY 3-1 Submission User s Guide

FUNCTIONALITY. 02/2018 v1.01 Outcome and Assessment Information Set (OASIS) FUNCTIONALITY 3-1 Submission User s Guide 3 FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 MENU BAR... 7 FILE UPLOAD... 7 SUBMISSION STATUS... 7 HELP... 8 LOGOUT...11 WELCOME PAGE...11 SUBMITTING OASIS DATA...11

More information

Getting Started with Moodle 2.0

Getting Started with Moodle 2.0 Getting Started with Moodle 2.0 Note: Please use Mozilla Firefox if you are working on a Mac 1. Login to Moodle 2. How to Access a Course 3 Edit your Profile Information 4. Add a Personal photo 5. Disable

More information

Assignment Tutorial.

Assignment Tutorial. Assignment Tutorial rudolf.lam@mail.mcgill.ca What we are looking at today Overview Demo Why Motivation for this lecture on assignment How The way the assignment is run What The components of the assignment

More information

Division of Computing

Division of Computing Division of Computing BSc Computing CSY2026 Modern Networks Date of Issue: 10/02/2017 Date for Submission: Agreed Date for late submission: Student Name: Student ID: Student s Signature: Module Tutor:

More information

Apply to an Open Student Position

Apply to an Open Student Position Purpose Apply to an open student position. From the LCCC Home page: Home>Student Resources>Career Services>Student Employment If you are not currently employed by LCCC click this button: How to Access

More information

be able to read, understand, and modify a program written by someone else utilize the Java Swing classes to implement a GUI

be able to read, understand, and modify a program written by someone else utilize the Java Swing classes to implement a GUI Homework 5, CS 2119 B-term 2015 Completing the GUI for a Student Database Due: Thursday, December 10 at 5pm Outcomes After successfully completing this assignment, you will be able to read, understand,

More information

EMS Walk. Browse Events: Events in University Housing Space

EMS Walk. Browse Events: Events in University Housing Space EMS Walk This guide explains the various components of University Housing s Event Management System (EMS) and provides step-by-step instructions for new users. EMS Web App Home Page (formerly Virtual EMS)

More information

Fuse ipad App set up and use

Fuse ipad App set up and use Staff Guide Fuse ipad App set up and use Fuse by TechSmith works with the Camtasia Relay server to enable the submission of a video file from a mobile device to the streaming server for future playback

More information

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Computer Engineering

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Computer Engineering GUJARAT TECHNOLOGICAL UNIERSITY, AHMEDABAD, GUJARAT COURSE CURRICULUM COURSE TITLE: MOBILE COMPUTING AND APPLICATION DEELOPMENT (COURSE CODE : 3360704) Diploma Program in which this course is offered Computer

More information

Homework 4 - MediaPlayer and Service

Homework 4 - MediaPlayer and Service Homework 4 - MediaPlayer and Service Due: 10/12/18 by 11:59pm I hope that you have fun completing this homework assignment. You are to develop an app that will play a streaming MP3 from FreeMusicArchive.

More information

GUJARAT TECHNOLOGICAL UNIVERSITY

GUJARAT TECHNOLOGICAL UNIVERSITY 1. Learning Objectives: To be able to understand the process of developing software for the mobile To be able to create mobile applications on the Android Platform To be able to create mobile applications

More information

Quick Reference Guide for Students: Applying for Course or Campus Transfer

Quick Reference Guide for Students: Applying for Course or Campus Transfer Quick Reference Guide for Students: Applying for Course or Campus Transfer This guide contains information for current Monash students applying for a Course or Campus Transfer using a new online course

More information

User Guide for Students

User Guide for Students User Guide for Students 2018-2019 About this Guide This guide was prepared by the Department of Distance Education & Instructional Technology at Black River Technical College in order to provide students

More information

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students Welcome to MyKangan A How to guide for students May 2015 Contents Welcome to MyKangan... 1 Logging in... 2 Accessing MyKangan via the Student Portal ONSITE... 2 Accessing MyKangan via the Student Portal

More information

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x.

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. Include Options Tab Basic Info: This option enables you to configure EMCO Network Inventory

More information

2016 Registration Guide for University Representatives Submitting Payments on Behalf of Student Presenters

2016 Registration Guide for University Representatives Submitting Payments on Behalf of Student Presenters 2016 Registration Guide for University Representatives Submitting Payments on Behalf of Student Presenters URC REGISTRATION PHASE I: CREATING YOUR ACCOUNT STEP 1. Log onto the URC Web site: https://urcbutler.edu

More information

Registering for classes Help

Registering for classes Help Registering for classes Help Before You Begin 1. Create your class schedule from the material provided by your campus. 2. Prepare additional schedules in the event courses on your first choice schedule

More information

Mobile Computing and Application Development Course code :

Mobile Computing and Application Development Course code : Mobile and Application Development Course code : 336070 GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT COURSE CURRICULUM COURSE TITLE: MOBILE COMPUTING AND APPLICATION DEVELOPMENT (COURSE CODE: 336070)

More information

CSIT115/CSIT815 Data Management and Security Assignment 1 5 March 2018

CSIT115/CSIT815 Data Management and Security Assignment 1 5 March 2018 School of Computing and Information Technology Session: Autumn 2018 University of Wollongong Lecturers: Janusz R. Getta Tianbing Xia CSIT115/CSIT815 Data Management and Security Assignment 1 5 March 2018

More information

Instructions PLEASE READ (notice bold and underlined phrases)

Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercises wk02 Lab Basics First Lab of the course Required Reading Java Foundations - Section 1.1 - The Java Programming Language Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercise

More information

ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012

ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012 ANDROID APPS (NOW WITH JELLY BEANS!) Jordan Jozwiak November 11, 2012 AGENDA Android v. ios Design Paradigms Setup Application Framework Demo Libraries Distribution ANDROID V. IOS Android $25 one-time

More information

Moodle 2.2 Student User Guide My Private Files

Moodle 2.2 Student User Guide My Private Files Moodle 2.2 Student User Guide My Private Files Using My Private Files My Private Files saves files in the cloud. Only the user may access it, but you can access it from any computer where you can access

More information

Linking documents to workflows from worklow connect

Linking documents to workflows from worklow connect clouconnec Connecting People, Process Information & Data Linking documents to workflows from worklow connect Prior Learning It is helpful but not essential that the learner has the following knowledge

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You have to take up the assessment only using the Virtual Desktop Interface (VDI environment) Please use the URL, https://vdiassessment.cognizant.com

More information

Learners App Guide. Version 1.0

Learners App Guide. Version 1.0 Learners App Guide Version 1.0 08 March 2018 1. Introduction... 1 2. Downloading the App... 1 3. Logging In... 1 4. Home Screen... 2 5. Syncing... 2 6. Plans... 3 7. Assessments... 3 7.1. Adding Criteria

More information

ANDROID. Curriculum LOCATION CONTACT US SCHEDULE. TurnToTech 40 Rector St. 10th Floor New York, NY

ANDROID. Curriculum LOCATION CONTACT US SCHEDULE. TurnToTech 40 Rector St. 10th Floor New York, NY Curriculum ANDROID SCHEDULE Full-time Immersive 10AM to 6:30PM LOCATION TurnToTech 40 Rector St. 10th Floor New York, NY 10006 CONTACT US nyc@turntotech.io +1-212-924-8324 Page 1 of 1 CURRICULUM OVERVIEW:

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

Presentation Outline 10/16/2016

Presentation Outline 10/16/2016 CPET 491 (Phase II) Fall Semester-2012 Adam O Haver Project Advisor/Instructor: Professor Paul Lin CEIT Department 1 Presentation Outline Executive Summary Introduction Solution Development Software Analysis

More information

Moodle User Guide Participants

Moodle User Guide Participants Moodle User Guide Participants Moodle User Guide Participants... 1 Logging in to Moodle... 2 Page layout... 2 Home page... 2 Course page... 3 Submitting an assessment... 5 Editing a draft assessment...

More information

5COS005W Coursework 2 (Semester 2)

5COS005W Coursework 2 (Semester 2) University of Westminster Department of Computer Science 5COS005W Coursework 2 (Semester 2) Module leader Dr D. Dracopoulos Unit Coursework 2 Weighting: 50% Qualifying mark 30% Description Learning Outcomes

More information

Android Application Development using Kotlin

Android Application Development using Kotlin Android Application Development using Kotlin 1. Introduction to Kotlin a. Kotlin History b. Kotlin Advantages c. How Kotlin Program Work? d. Kotlin software Prerequisites i. Installing Java JDK and JRE

More information

CS 1520 / CoE 1520: Programming Languages for Web Applications (Spring 2013) Department of Computer Science, University of Pittsburgh

CS 1520 / CoE 1520: Programming Languages for Web Applications (Spring 2013) Department of Computer Science, University of Pittsburgh CS 1520 / CoE 1520: Programming Languages for Web Applications (Spring 2013) Department of Computer Science, University of Pittsburgh Term Project: Pittsburgh Interactive Research Accounting System (piras)

More information

TK20 GUIDE FOR edtpa CANDIDATES

TK20 GUIDE FOR edtpa CANDIDATES TK20 GUIDE FOR edtpa CANDIDATES (512) 401-2000 info@tk20.com www.tk20.com IMPORTANT NOTICES About edtpa edtpa is a pre-service assessment process designed by educators to answer the essential question:

More information

FHS Online Application Instructions

FHS Online Application Instructions Page 1 FHS Online Application Instructions Before you begin: a. Do not attempt to complete this application using a smartphone. b. Make sure you have paper/pen or other means of recording your login name

More information

PIC 10B Lecture 1 Winter 2014 Homework Assignment #2

PIC 10B Lecture 1 Winter 2014 Homework Assignment #2 PIC 10B Lecture 1 Winter 2014 Homework Assignment #2 Due Friday, January 24, 2014 by 6:00pm. Objectives: 1. To overload C++ operators. Introduction: A set is a collection of values of the same type. For

More information

RTO / TRAINER USER MANUAL

RTO / TRAINER USER MANUAL Dear RTO / Trainer System User, Welcome to profile21 system, This user guide describes the basic functions of the profile21 software application. Login Helpdesk Email Go to the profiling website: www.profile21.com.au

More information

ANDROID APPLICATION DEVELOPMENT COURSE Training Program

ANDROID APPLICATION DEVELOPMENT COURSE Training Program ANDROID APPLICATION DEVELOPMENT COURSE Training Program This Android Application Development Course is a 24 Hours Training Program with Certification. The program is to be developed for Matriculated, Intermediate

More information

Royal Life Saving e-learning user guide

Royal Life Saving e-learning user guide Royal Life Saving e-learning user guide March 2016 v3 1. What is e-learning? Royal Life Saving Society (RLSS) provides training in both face to face contact and online e-learning format for a variety of

More information

Remote Proctor Now User Quick Guide

Remote Proctor Now User Quick Guide Remote Proctor Now User Quick Guide Contents Step 1: System Check... 2 Step 2: Access the Online Software... 5 Step 3: Select your Exam... 7 Step 4: Verify Identity... 7 Common errors:... 14 Page 1 of

More information

MoveIT DMZ User Guide

MoveIT DMZ User Guide MoveIT DMZ User Guide December 10, 2014 1 Index MoveIT DMZ Introduction... 1 Initial Login and Password Change... 2 Navigation... 8 Installation Instructions for the Upload / Download Wizard... 12 Uploading

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information

Gearbox App User Guide Need Help?

Gearbox App User Guide Need Help? Gearbox App User Guide Need Help? If you need help whilst using this app, please contact the LORA IT Service Desk: - Tel: +61 7 3308 7788 Email: ITServiceDesk@laingorourke.com.au Table of Contents 1. Installation...3

More information

Exporting CART Data and Uploading it to QualityNet

Exporting CART Data and Uploading it to QualityNet Once you have completed abstracting your cases into CART you will need to export the data and upload it into QualityNet. To do this, follow these instructions: 1) Enter User ID and password to log into

More information

NOTE: If you encounter difficulties connecting to CMSNet, contact the CMSNet Help Desk at (888)

NOTE: If you encounter difficulties connecting to CMSNet, contact the CMSNet Help Desk at (888) 3 FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE QIES ASAP SYSTEM FOR IRF-PAI SUBMISSIONS... 4 MENU BAR... 7 HELP... 8 ACCESSIBILITY POLICY... 9 CONTACT US...10

More information

nettalk DUO WiFi Configuration (using an Android smartphone)

nettalk DUO WiFi Configuration (using an Android smartphone) nettalk DUO WiFi Configuration (using an Android smartphone) Step 1. Activate your Device a. Locate your username and password inside of the box. b. Go to www.nettalk.com/activate and follow the activation

More information

NOTE: If you encounter difficulties connecting to CMSNet, contact the CMSNet Help Desk at (888)

NOTE: If you encounter difficulties connecting to CMSNet, contact the CMSNet Help Desk at (888) 3 FUNCTIONALITY INTRODUCTION... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE QIES ASAP SYSTEM FOR LTCH CARE DATA SET SUBMISSIONS.. 4 MENU BAR... 7 HELP... 8 ACCESSIBILITY POLICY... 9

More information

Course Syllabus. Course Title. Who should attend? Course Description. Android ( Level 1 )

Course Syllabus. Course Title. Who should attend? Course Description. Android ( Level 1 ) Course Title Android ( Level 1 ) Course Description Android is a Free and open source operating system designed primarily for smart phones and tablets and can be used for TVs, cars and others. It is based

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You will take the assessment from your desk. Venue mailer will have all the details that you need it for assessment Login Link, Credentials, FAQ

More information

Dropbox. Table of Contents

Dropbox. Table of Contents Table of Contents About the... 2 Setting Up the... 2 Creating a Category... 3 Creating a Folder... 5 Setting Restrictions on a Folder... 8 Editing a Folder or Category... 11 Re-ordering dropbox folders

More information

OPIA-ECCU INSTRUCTION STEPS FOR SUBMITTING AND RETRIEVING CARI REPORTS. Once the screen below has loaded, enter your Username, Password and the

OPIA-ECCU INSTRUCTION STEPS FOR SUBMITTING AND RETRIEVING CARI REPORTS. Once the screen below has loaded, enter your Username, Password and the OPIA-ECCU INSTRUCTION STEPS FOR SUBMITTING AND RETRIEVING CARI REPORTS Step 1 In your browser s web address bar, enter: https://ftpw.dhs.state.nj.us/ Once the screen below has loaded, enter your Username,

More information

How to Build Your Course in Moodle

How to Build Your Course in Moodle How to Build Your Course in Moodle This tutorial will show you the basic functions of how to add and edit content to build your course in Moodle. To add or alter activities or resources, you will need

More information

Moodle Student User Guide

Moodle Student User Guide Lincoln Online Moodle Student User Guide 2017-18 Contents 1. Getting Started................................ 3 General Information Setting up Your Moodle Password 2. Finding Help..................................

More information

ECE2049 Embedded Computing in Engineering Design. Lab #0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

ECE2049 Embedded Computing in Engineering Design. Lab #0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio ECE2049 Embedded Computing in Engineering Design Lab #0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio In this lab you will be introduced to the Code Composer Studio

More information

Web-CAT Guidelines. 1. Logging into Web-CAT

Web-CAT Guidelines. 1. Logging into Web-CAT Contents: 1. Logging into Web-CAT 2. Submitting Projects via jgrasp a. Configuring Web-CAT b. Submitting Individual Files (Example: Activity 1) c. Submitting a Project to Web-CAT d. Submitting in Web-CAT

More information

Request For Proposal ONWAA Website & E-Learn Portal

Request For Proposal ONWAA Website & E-Learn Portal Request For Proposal ONWAA Website & E-Learn Portal ONWAA 880 17 E, Garden River, Ontario P6A 6Z5 Table Of Contents General information Project Overview Statement of Needs Proposal Format Proposal Preparation

More information

User Guide. Accept EFTPOS, Visa and Mastercard payments on the go with Kiwibank QuickPay.

User Guide. Accept EFTPOS, Visa and Mastercard payments on the go with Kiwibank QuickPay. User Guide Accept EFTPOS, Visa and Mastercard payments on the go with Kiwibank QuickPay. Kiwibank QuickPay terms and conditions apply. Kiwibank QuickPay is only available for business banking purposes.

More information

Project Covered During Training: Real Time Project Training

Project Covered During Training: Real Time Project Training Website: http://www.php2ranjan.com/ Contact person: Ranjan Mobile: 91-9347045052, 09032803895 Email: purusingh2004@gmail.com Skype: purnendu_ranjan Course name: Advance Android App Development Training

More information

Mobile Application Development

Mobile Application Development Android Native Application Development Mobile Application Development 1. Android Framework and Android Studio b. Android Software Layers c. Android Libraries d. Components of an Android Application e.

More information

Recommended Canvas Quiz Settings

Recommended Canvas Quiz Settings Recommended Canvas Quiz Settings 1. Quiz Name: Exams are to include semester, course number, and exam number. Make the exam name and posting name are the same in Canvas and 2. Quiz Type: Graded Quiz 3.

More information

Best Practices for Using Assignments and Submitting Assignments

Best Practices for Using Assignments and Submitting Assignments and Submitting WHY WOLD YOU USE THIS FEATURE? Instructors can place assignments in any of the content areas within a course, such as Course Documents or. In this tutorial you will learn how to access an

More information

ATC Android Application Development

ATC Android Application Development ATC Android Application Development 1. Android Framework and Android Studio b. Android Platform Architecture i. Linux Kernel ii. Hardware Abstraction Layer(HAL) iii. Android runtime iv. Native C/C++ Libraries

More information

Kim Neville IT Knowledge administrator IT Division. Kathleen Connolly Careers Operations Coordinator UTS Careers

Kim Neville IT Knowledge administrator IT Division. Kathleen Connolly Careers Operations Coordinator UTS Careers Jane Fisher Coordinator, Enquiry Management Team Student Administration Unit Kim Neville IT Knowledge administrator IT Division Kathleen Connolly Careers Operations Coordinator UTS Careers Email & IT account

More information

Tips from the experts: How to waste a lot of time on this assignment

Tips from the experts: How to waste a lot of time on this assignment Com S 227 Spring 2018 Assignment 1 80 points Due Date: Friday, February 2, 11:59 pm (midnight) Late deadline (25% penalty): Monday, February 5, 11:59 pm General information This assignment is to be done

More information

Respondus LockDown Browser Guide

Respondus LockDown Browser Guide Respondus LockDown Browser Guide This guide provides instructions on using Respondus LockDown Browser with a quiz on canvas. When a student uses this Browser, they are unable to print, copy, go to another

More information

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device Mobile Microsoft OneDrive for Business is a part of Office 365 (O365) and is your private professional document library, it uses O365 to store your work files in the cloud and is designed to make working

More information

Wattle Guide for Students Version 2: July 2013

Wattle Guide for Students Version 2: July 2013 Wattle Guide for Students Version 2: July 2013 Wattle Guide for Students 2013 Page 1 Table of Contents Wattle Guide for Students... 3 Introduction... 3 Student Services... 3 Access Wattle... 3 Access to

More information

Briefcase for Mac 1.0. Administrator s Guide

Briefcase for Mac 1.0. Administrator s Guide Briefcase for Mac 1.0 Administrator s Guide Contents Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 2 Installing Colligo

More information

CSCI 3300 Assignment 6

CSCI 3300 Assignment 6 Austin Peay State University, Tennessee Spring 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 6 Total estimated time for this assignment: 9 hours When you see Richard

More information

Developing Android applications in Windows

Developing Android applications in Windows Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

Assignment Manager. Change Edit Mode to On if it is not already by clicking on the option at the top right of the window.

Assignment Manager. Change Edit Mode to On if it is not already by clicking on the option at the top right of the window. Assignment Manager Blackboard has a tool called the Assignment Manager that facilitates file submissions from students. The Assignment Manager feature can be used in any content area (e.g. Course Information,

More information

FIT3056 Secure and trusted software systems. Unit Guide. Semester 2, 2010

FIT3056 Secure and trusted software systems. Unit Guide. Semester 2, 2010 FIT3056 Secure and trusted software systems Unit Guide Semester 2, 2010 The information contained in this unit guide is correct at time of publication. The University has the right to change any of the

More information

How to.. submit assignments via Blackboard. EAS How to guide 1

How to.. submit assignments via Blackboard. EAS How to guide 1 Accessing Blackboard You have to access Blackboard (BB) through your MAP (My Aston Portal) account (www.aston.ac.uk/map) Use your Aston University network username and password to log in (Note: It is the

More information

Café Soylent Green Chapter 12

Café Soylent Green Chapter 12 Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CS6. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping quite

More information

Access Expense App Tutorial

Access Expense App Tutorial Contents Access Expense App Tutorial Where to download... 2 The Basics - Logging In... 3 The Directory Button... 3 Creating an Expense... 4 Add a receipt... 4 Change the Type... 4 Changing the values...

More information

Revision December 2018

Revision December 2018 Revision 2.0.6 December 2018 Contents Introduction... 3 What s New... 4 Managing Recordings... 6 The Recorder View... 8 Transcription Service... 12 Sharing... 15 Notifications... 17 Home Screen Widget...

More information

QUICK REFERENCE TO OASIS SUBMISSIONS, SUBMISSION STATUS, AND FINAL VALIDATION REPORTS

QUICK REFERENCE TO OASIS SUBMISSIONS, SUBMISSION STATUS, AND FINAL VALIDATION REPORTS A QUICK REFERENCE TO OASIS SUBMISSIONS, SUBMISSION STATUS, AND FINAL VALIDATION REPORTS FILE SUBMISSION... 2 FILE SUBMISSION STATUS... 4 SYSTEM-GENERATED OASIS AGENCY FINAL VALIDATION REPORT... 6 OASIS

More information

Beginner s Guide to ACD5

Beginner s Guide to ACD5 Beginner s Guide to ACD5 AIA Contract Documents Online Service for Single-Users A step-by-step guide to creating, editing, sharing and managing contract documents Beginner s Guide to ACD5 AIA Contract

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information