Chapter 4. Result and Discussion

Size: px
Start display at page:

Download "Chapter 4. Result and Discussion"

Transcription

1 Chapter 4 Result and Discussion 4.1 Implementation of Extended Weighted Tree Similarity Extended weighted tree similarity has been implemented to this recommender system and the user interface has been designed to support it. The design of the user interface has been explained in chapter 3 and the implementation of it will be explained in the next sub chapters but before it is explained, how the system run will be discussed first Crawling the Web After the user input the criteria in to system and press search button, what the system do is crawling the web. The site that is crawled by the system is Tabloid Pulsa s site because the site provides information about mobile phone. Code 4.1 shows the code of the crawling that it started with startup url setting, download the page and save the XML tree in the vector. Code 4.2 is show the conversion of web page to XML tree. Code 4.1 Crawler Controller 27 public class crawlercontroller{ Sring starturl = Private String downloadstring(url url){ 195 try { 196 BufferedReader reader = 197 new BufferedReader(new InputStreamReader( 198 pageurl.openstream())); } public Vector crawl() throws Exception { 383 } 384 } 26

2 Code 4.2 XML tree generation from website 26 public class xmltreewebsitecontroller { 27 public static Document buildxmltree(string pagecontent) throws ParserConfigurationException { 28 DocumentBuilderFactory docfactory = DocumentBuilderFactory.newInstance(); 29 DocumentBuilder docbuilder = docfactory.newdocumentbuilder(); 30 Document doc = docbuilder.newdocument(); return doc; }} As has been discussed in chapter 2, the crawler system that is used in this system is combination of Depth and Breadth First Systems. The Breadth First system is used to list all links in the web page but if the system find the link that contains mobile phone information, the system will look deeper in that link first to find the link of mobile phone s image before continue to the next link User Interface Main Form Main form is form for users to decide the weight of Harga (Price), Vendor and Fitur (Feature). If the users decide the weight of one or more criteria, the system will show the sub form depend of the choices. Figure 4.1 show the main form of the recommender system. 27

3 Figure 4.1 Main Form Price Form Price Form is form for user to decide the weight of Harga Baru (New Price) and Harga Lama (Old Price). Both of them are child of price in XML tree. The prices are ranged to 4 ranges. First is fewer than 1 million rupiah. Second is between 1 to 2 million rupiah. Third is between 2 to 5 million rupiah and the last is larger than 5 million rupiah. Figure 4.2 show the price form of the recommender system. Figure 4.2 Price Form Vendor Form 28

4 Vendor form is form for user to decide the weight of vendor. In this form, the users can choose at most 3 vendors of the mobile phone that they prefer to. The choices in this form will impact the search process because the system search the first choice vendor first although it will recommend depend of the weight. Figure 4.3 show the vendor form of the recommender system Feature Form Figure 4.3 Vendor Form Feature form is form for user to decide the weight of sub feature. It is different with Price and Vendor form that allow the users to choose an item and give weight to it, in this form, the user just decide the weight and they type the detail in the sub form of feature form. Feature form have 9 sub form, they are Dimension Form, Sound Form, Camera Form, Data Form Battery Form, General Form, Display Form, Memory Form, Feature 2 Form. Figure 4.4 show the feature form of the recommender system. 29

5 4.1.5 Dimension Form Figure 4.4 Feature Form Dimension form is one of sub form of feature form. In this form, the users can determine the Ukuran/Berat (Size/Weight) of mobile phone that they want. Figure 4.5 show the dimension form of the recommender system. 30

6 Figure 4.5 Dimension Form Sound Form Sound form is another sub form of feature form. In this form, the users can determine some detail s specifications of sound of mobile phone and also their weight. They are audio jack, feature of the sound, and speaker phone. Figure 4.6 show the sound form of the recommender system Camera Form Figure 4.6 Sound Form Camera form is also another sub form of feature form. Like sound form, the users also can determine some detail s specifications of kinds of camera of mobile phone and also their weight. They are premier camera (on the behind of mobile phone), seconder camera (in front of mobile phone), and camera 31

7 for video recorder. Figure 4.7 show the camera form of the recommender system Data Form Figure 4.7 Camera Form Another sub form of feature form is data form. Data form is one of most complex form beside feature 2 form because in this form, the users can determine 7 detail s specifications about data transfer ways and also their weight. They are 3G, EDGE, GPRS, WLAN, Bluetooth, Infrared and cable/port. Figure 4.8 show the data form of the recommender system Battery Form The next sub form of feature form is battery form. Like sound form and camera form, in this form, the system allows the users to determine 3 detail s specifications about battery and also 32

8 Figure 4.8 Data Form their weight. They are stand by time, talk time and type of battery. Figure 4.9 show the battery form of the recommender system General Form Figure 4.9 Battery Form In the general form, another sub form of feature form, the users can determine the Network of mobile phone that they want. Figure 4.10 show the general form of the recommender system. 33

9 Figure 4.10 General Form Display Form Display form is one of sub form of feature form that allows the users to determine some detail s specifications about display of mobile phone that they want and also their weight. They are type and size of the display. Figure 4.11 show the display form of the recommender system Memory Form Figute 4.11 Display Form Another sub form of feature form is memory form. This form allows the user to determine the kinds of memory of the mobile phone and also their weight. They are internal memory and external memory. Figure 4.12 show the memory form of the recommender system. 34

10 Feature 2 Form Figure 4.12 Memory Form The last sub form of feature form is feature 2 form. In this form, the users are allowed to determine the detail s specification of mobile phone s feature that is not classified in the previous form and also their weight. They are operation system, CPU, Browser, GPS, Messaging, Java and Radio. Figure 4.13 show the feature 2 form of the recommender system. Figure 4.13 Feature 2 Form Table Form and Result Form Table form and result form are 2 last forms in the recommender system. Table form is used to show the 35

11 recommended mobile phones on the table. Every row of the table contains of 3 columns. The first column contains of recommendation number, the second column contains of name of mobile phone, and the last column contains of similarity value. If the users choose one of the rows, the system will display result form that contains picture of name, profile, figure, recommendation number and similarity value of the selected mobile phone. Figure 4.14 show the table form of the recommender system and Figure 4.15 show the result form of the recommender system. Figure 4.14 Table Form Figure Profile Form 36

12 4.1.3 Similarity s counting As has been explained in previous chapters, Extended Weighted Tree Similarity is applied in this system to count the similarity between 2 XML trees that represent the mobile phone specification from website and user s input. Code 4.3 shows how the system counts similarity using Extended Weighted Similarity Algorithm. Code 4.3 Matching Controller 20 public class matchingxmltreecontroller { public float countsimilarity(element docinput, Element docwebsite) { for (int j = 0; j < n.getchildnodes().getlength(); j++) { 51 for (int k = 0; k < nd.getchildnodes().getlength(); k++) { 52 Node n1 = n.getchildnodes().item(j); 53 Node n2 = nd.getchildnodes().item(k); 54 NamedNodeMap nn1 = n1.getattributes(); 55 NamedNodeMap nn2 = n2.getattributes(); }}}} 4.2 Testing and Analysis In this sub chapter, it will be discussed about analysis of this recommender system as software using clinical software analysis (Abookire et al, 1999). The information-gathering technique that will be used to collect the data for the analysis is questionnaires. The questionnaires will be designed to accommodate the software quality factors of clinical software analysis. 37

13 The questionnaires will have several closed questions for the factors, and 1 open question for asking general suggestions and criticisms about the recommender system from the user. The answer of closed questions will be scaled using Linkert scale. The kind of Linkert Scale that used in this research is 1-5 scale that has been explained in chapter 2. Table 4.1 shows the score for every answer and Formula 4.1 show the interval formula for classify the answer. Table 4.1 Score s table of Questioner s answer Answer Score Very Disagree 1 Disagree 2 Undecided 3 Agree 4 Very Agree 5 I = (max min ) / C Formula 4.1 Interval formula to classify the answer Explanation: I = Interval Max = maximum score Min = minimum score C = the count of answer s categories 38

14 Using the formula 4.1, it can be calculated that the interval of the answer will be: = (5-1) / 5 = 4 / 5 = 0.8 The interval will be used to arrange the classification table. Table 4.2 shows the classification table. Table 4.2 classification table Range Criteria 1-1, 79 Very Disagree 1,8-2,59 Disagree 2,6-3,39 Quite Agree 3,4-4,19 Agree 4,2-5 Very Agree Table 4.3 shows the result of the first question of the questionnaires. The first question is: Do you agree that inputting the criteria to system and deciding the weight are not difficult? From the average value, it can be concluded that the user quite agree that with statement. Table 4.3 The result of the first question No Answer Frequency Score 1 Very Disagree Disagree Quite Agree Agree Very Agree 5 25 Total 98 Average

15 Table 4.4 shows the result of the second question of the questionnaires. The second question is: Do you agree that the output of the system is easy to understand? From the average value, it can be concluded that the user agree that with statement. Table 4.4 The result of the second question No Answer Frequncy Score 1 Very Disagree Disagree Quite Agree Agree Very Agree 5 25 Total 106 Average Table 4.5 shows the result of the third question of the questionnaires. The third question is: In experiment with 50 mobile phones, do you agree that the system can generate the right recommendation? From the average value, it can be concluded that the user agree that with statement. Table 4.5 The result of the third question No Answer Frequency Score 1 Very Disagree Disagree Quite Agree Agree Very Agree Total 104 Average Table 4.6 shows the result of the fourth question of the questionnaires. The fourth question is: In experiment with

16 mobile phones, do you agree that the system can generate the right recommendation? From the average value, it can be concluded that the user agree that with statement. Table 4.6 The result of the fourth question No Answer Frequency Score 1 Very Disagree Disagree Quite Agree Agree Very Agree 9 45 Total 105 Average 3.5 Table 4.7 shows the result of the fifth question of the questionnaires. The fifth question is: In experiment with 150 mobile phones, do you agree that the system can generate the right recommendation? From the average value, it can be concluded that the user agree that with statement. Table 4.7 The result of the fifth question No Answer Frequncy Score 1 Very Disagree Disagree Quite Agree Agree Very Agree Total 107 Average Table 4.8 shows the result of the sixth question of the questionnaires. The sixth question is: In experiment with

17 mobile phones, do you agree that the system can generate the right recommendation? From the average value, it can be concluded that the user agree that with statement. Table 4.8 The result of the sixth question No Answer Frequency Score 1 Very Disagree Disagree Quite Agree Agree Very Agree 3 15 Total 110 Average Several conclusions about software quality factors can be concluded from the six closed questions. They are: Usability As mentioned in chapter 2, usability is effort to learn, prepare input, and interpret output of the program. So, the usability of this system can be concluded from user s answers in question number 1 and 2. In question number 1, the average value is that mean the users quite agree that inputting data to the system and deciding weight are not difficult. In question number 2, the average value is that mean the users agree mean the output of the system is easy to understand. The average value from both questions is 3.4 that mean the usability of this system is good. There are some critics and suggestions from open-ended question but most of the users said that they had a problem in 42

18 inputting detail of specification about the feature of mobile phone. Correctness and Reliability As mentioned in chapter 2, correctness is extend to which program satisfies its specification and fulfill the user s mission objective and reliability is extend to which program can be expected to perform its intended function with required precision. So, the correctness and reliability of this system can be concluded from user s answers in question number 3 until 6. In that questions, the users agree that the system can generate right recommendation in experiment with 50, 100, 150 and 200 mobile phones. So, it can be concluded that the system have good correctness and reliability. 43

Generating XML. Crash course on generating XML

Generating XML. Crash course on generating XML Generating XML Crash course on generating XML What is XML? XML is a markup language using tags (entities surrounded in < and > ). XML stands for extensible Markup Language. Goals: simplicity, generality

More information

Choosing output format. Dynamically choosing format

Choosing output format. Dynamically choosing format Choosing output format Dynamically choosing format Problem Our code should choose an output format based on input from the user. So, we need a way to dynamically choose a formatter class based on some

More information

Field Types and Import/Export Formats

Field Types and Import/Export Formats Chapter 3 Field Types and Import/Export Formats Knowing Your Data Besides just knowing the raw statistics and capacities of your software tools ( speeds and feeds, as the machinists like to say), it s

More information

Lesson 2 Essential Computer Concepts

Lesson 2 Essential Computer Concepts Essential Computer Concepts Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition 1 Objectives Identify and describe standard and specialized input devices. Identify and describe standard

More information

Running Effective Meetings

Running Effective Meetings Running Effective Meetings www.clickmeeting.com In this guide... You ll learn how organize your online meeting space, set up camera and voice, share your presentation and manage attendees. Contents Launch

More information

710 Bluetooth Files Via

710 Bluetooth Files Via Instructions On How To Use Nokia Lumia 710 Bluetooth Files Via The following instructions are tested to work for Windows Phone 8 (previously: Windows Live ID or Hotmail account) in use on your Lumia phone.

More information

Logging in. Your teacher will give you a login address during lectures or via .

Logging in. Your teacher will give you a login address during lectures or via  . Logging in Your teacher will give you a login address during lectures or via email. Students usually login as guest. Type your name and click Enter Room. You can also login with your VAMK ID. Write your

More information

SET UP YOUR MONITOR FIRST

SET UP YOUR MONITOR FIRST STEP 1 SET UP YOUR MONITOR FIRST PACKAGE CONTENTS 1 CONNECT CAMERAS TO MONITOR 1-14 Color Quad Monitor 4 - Color Cameras 4-57 ft. Extension Cables 4 - Camera Brackets 1 - Remote Control with Batteries

More information

Midterm Examination CS 540-2: Introduction to Artificial Intelligence

Midterm Examination CS 540-2: Introduction to Artificial Intelligence Midterm Examination CS 54-2: Introduction to Artificial Intelligence March 9, 217 LAST NAME: FIRST NAME: Problem Score Max Score 1 15 2 17 3 12 4 6 5 12 6 14 7 15 8 9 Total 1 1 of 1 Question 1. [15] State

More information

DERIVE. Assigning Properties to Objects within Natural Language Text. Goal: To assign property/value pairs extracted from

DERIVE. Assigning Properties to Objects within Natural Language Text. Goal: To assign property/value pairs extracted from DERIVE Assigning Properties to Objects within Natural Language Text Goal: To assign property/value pairs extracted from natural language text to objects also extracted from the same text. DERIVE Assigning

More information

Android - open source mobile platform

Android - open source mobile platform Android - open source mobile platform Alexander Schreiber http://www.thangorodrim.de/ Chemnitzer Linux-Tage 2009 Alexander Schreiber Android - open source mobile

More information

SOFTWARE AND MULTIMEDIA. Chapter 6 Created by S. Cox

SOFTWARE AND MULTIMEDIA. Chapter 6 Created by S. Cox SOFTWARE AND MULTIMEDIA Chapter 6 Created by S. Cox OBJECTIVES Classify multimedia application software Describe software needed to create elements of a multimedia production Identify the software used

More information

First-Time Usability Testing for Bluetooth-Enabled Devices

First-Time Usability Testing for Bluetooth-Enabled Devices The University of Kansas Technical Report First-Time Usability Testing for Bluetooth-Enabled Devices Jim Juola and Drew Voegele ITTC-FY2005-TR-35580-02 July 2004 Project Sponsor: Bluetooth Special Interest

More information

1 CONNECT CAMERAS TO MONITOR 3 CONNECT ONE END OF THE POWER CORD TO THE MONITOR; THE OTHER END TO AN ELECTICAL OUTLET

1 CONNECT CAMERAS TO MONITOR 3 CONNECT ONE END OF THE POWER CORD TO THE MONITOR; THE OTHER END TO AN ELECTICAL OUTLET STEP 1 SET UP YOUR MONITOR PACKAGE CONTENTS 1-14 Color Quad Monitor 4 - Color Cameras 4-57 ft. Extension Cables 4 - Camera Brackets 1 - Remote Control with Batteries 1 - Ethernet Network Cable 1 - Set-up

More information

Instructions On How To Use Nokia Lumia 710 Bluetooth Files >>>CLICK HERE<<<

Instructions On How To Use Nokia Lumia 710 Bluetooth Files >>>CLICK HERE<<< Instructions On How To Use Nokia Lumia 710 Bluetooth Files Select Copy content to Nokia Lumia, and follow the instructions shown on your computer. Your the files straight to the OneDrive folder for automatic

More information

Semantic-Based Web Mining Under the Framework of Agent

Semantic-Based Web Mining Under the Framework of Agent Semantic-Based Web Mining Under the Framework of Agent Usha Venna K Syama Sundara Rao Abstract To make automatic service discovery possible, we need to add semantics to the Web service. A semantic-based

More information

Connect the other end of the ethernet cable to your broadband router (not included)

Connect the other end of the ethernet cable to your broadband router (not included) 10:00 Step 1 should take approximately 5-10 minutes SETTING UP YOUR SYSTEM Step 1 - Set Up Your Camera First System Contents 1 - Color Camera 1 - Power Supply 1 - Camera Stand (with screws) 1 - Ethernet

More information

CyberSource Business Center

CyberSource Business Center CyberSource Business Center CS3-609-06-16-09 Copyright 2009 Harris Connect, LLC. all rights reserved. Reproduction in any form without the express written consent of Harris Connect, LLC. is strictly prohibited

More information

Client Scoring Application

Client Scoring Application Client Scoring Application The new scoring application is a web-based system developed by Triple P to assist in the scoring of the many measures used in the delivery of Triple P. There are many advantages

More information

Voluntary Product Accessibility Template (VPAT ) Revised Section 508 Edition. About This Document. Version 2.2 July 2018

Voluntary Product Accessibility Template (VPAT ) Revised Section 508 Edition. About This Document. Version 2.2 July 2018 Voluntary Product Accessibility Template (VPAT ) Edition Version 2.2 July 2018 About This Document...1 Essential Requirements and Best Practices for Information & Communications Technology (ICT) Vendors...3

More information

Software Starter Guide

Software Starter Guide Software Starter Guide DIGITAL CAMERA Solution Disk Install the bundled software programs, and download images to the computer. This guide explains how to install the software programs and briefly introduces

More information

Session Questions and Responses

Session Questions and Responses Product: Topic: Audience: Updated: OpenText Image Crawler Webinar Questions ILTA February 10, 2015 Discover How to Make your Scanned Images Searchable with OpenText Image Crawler Session Questions and

More information

Locate Orders from Order Summary Page

Locate Orders from Order Summary Page Orders are created in Boeing s backend system and then sent to BSCP. The supplier receives an email notification there are new orders in BSCP. The supplier creates a response in BSCP, and the response

More information

Title: Artificial Intelligence: an illustration of one approach.

Title: Artificial Intelligence: an illustration of one approach. Name : Salleh Ahshim Student ID: Title: Artificial Intelligence: an illustration of one approach. Introduction This essay will examine how different Web Crawling algorithms and heuristics that are being

More information

12/19/2016. Types of Education Media. Print Media. Projected & non-projected media. Audio, Visual & Audiovisual. Media

12/19/2016. Types of Education Media. Print Media. Projected & non-projected media. Audio, Visual & Audiovisual. Media Types of Education Media Education Media There are different ways to classify media Print media, non-print media and electronic media Print Media They include: books, journals, magazines, newspapers, workbook,

More information

ECE 250 Data Structures and Algorithms MID-TERM EXAMINATION /5:30-7:00

ECE 250 Data Structures and Algorithms MID-TERM EXAMINATION /5:30-7:00 The examination is out of 64 marks. ECE 250 Data Structures and Algorithms MID-TERM EXAMINATION 2008-2-13/5:30-7:00 Instructions: No aides. Turn off all electronic media and store them under your desk.

More information

Voluntary Product Accessibility Template QuickBooks 2016 Pro, Premiere and Enterprise

Voluntary Product Accessibility Template QuickBooks 2016 Pro, Premiere and Enterprise Voluntary Product Accessibility Template QuickBooks 2016 Pro, Premiere and Enterprise The purpose of this Voluntary Product Accessibility Template ( VPAT ) is to assist Federal contracting officials and

More information

Summary Table Voluntary Product Accessibility Template

Summary Table Voluntary Product Accessibility Template The following Voluntary Product Accessibility information refers to the Apple ipod touch (2 nd generation) with 2.0 software or greater ( ipod touch ). For more information on the accessibility features

More information

A Comparison of Software-Based Distance Learning Solutions In focus Interactive Learning Systems

A Comparison of Software-Based Distance Learning Solutions In focus Interactive Learning Systems A Comparison of Software-Based Distance Learning Solutions In focus Interactive Learning Systems Cheryl Choy Introduction Within a short span of time, distance education has set a footprint in the world

More information

SIGN IN. Presenter 1. Select the Presenter tab. 2. Enter your Meeting ID. 3. Enter your Presenter name and password. 4. Click Sign In.

SIGN IN. Presenter 1. Select the Presenter tab. 2. Enter your Meeting ID. 3. Enter your Presenter name and password. 4. Click Sign In. Webinar USER GUIDE SIGN IN Go to video.togethertalk.com or click the Online Meeting Link from your invitation email and sign in via your web browser. To Download and install Together Talk onto your desktop

More information

USABILITY TEST REPORT

USABILITY TEST REPORT USABILITY TEST REPORT CS 5760 HUMAN COMPUTER INTERACTIONS AND USABILITY Ankitha Pille GRAD5 HCI TEAM 6 INTRODUCTION UI DESCRIPTION The Application can be identified as mobile based online web application

More information

CSCI 136 Written Exam #1 Fundamentals of Computer Science II Spring 2014

CSCI 136 Written Exam #1 Fundamentals of Computer Science II Spring 2014 CSCI 136 Written Exam #1 Fundamentals of Computer Science II Spring 2014 Name: This exam consists of 5 problems on the following 6 pages. You may use your double- sided hand- written 8 ½ x 11 note sheet

More information

Puma Energy elearning Hub. How To Guide for Staff Includes FAQs and Troubleshooting Guide

Puma Energy elearning Hub. How To Guide for Staff Includes FAQs and Troubleshooting Guide Puma Energy elearning Hub How To Guide for Staff Includes FAQs and Troubleshooting Guide How To Guide for Staff Welcome to the elearning Hub. This How To Guide will highlight the steps you need to take

More information

Elementary Statistics. Organizing Raw Data

Elementary Statistics. Organizing Raw Data Organizing Raw Data What is a Raw Data? Raw Data (sometimes called source data) is data that has not been processed for meaningful use. What is a Frequency Distribution Table? A Frequency Distribution

More information

Objective: Use multiplication to calculate volume.

Objective: Use multiplication to calculate volume. Lesson 4 Objective: Use multiplication to calculate volume. Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief Total Time (12 minutes) (5 minutes) (33 minutes)

More information

KinderConnect Provider Registration

KinderConnect Provider Registration KinderConnect Provider Registration Providers and parents/sponsors must self-register before they can login to KinderConnect. This process can only be done once. The first person from the Provider to create

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE When Recognition Matters EXAM PREPARATION GUIDE PECB Certified ISO/IEC 20000 Lead Auditor www.pecb.com The objective of the Certified ISO/IEC 20000 Lead Auditor examination is to ensure that the candidate

More information

Module 4: CUSTOMIZING FIELDS

Module 4: CUSTOMIZING FIELDS Module 4: CUSTOMIZING FIELDS Adding a field adds one or more fields to the underlying SQL database. The type of the field will specify how many bytes the underlying data takes up in SQL Server. In CRM

More information

SELECT ENTRY SYSTEMS

SELECT ENTRY SYSTEMS SELECT ENTRY SYSTEMS SAT2R Hands Free USER / INSTALLER MANUAL Select Engineered Systems, Inc. SAT 2R R SELECT ENTRY SYSTEMS User / Installer Guide SAT2R S elf Identifying A utomatic T elephone 2R Select

More information

How to design a database

How to design a database Chapter 16 How to design a database A database system is modeled after a real-word system 2017, Mike Murach & Associates, Inc. C 16, Slide 1 2017, Mike Murach & Associates, Inc. C 16, Slide 4 Objectives

More information

Installation Guidelines Ujjwala KYC Offline Application. By:

Installation Guidelines Ujjwala KYC Offline Application. By: Installation Guidelines Ujjwala KYC Offline Application By: Table of Contents 1. Introduction... 3 About Ujjwala KYC Offline Application... 3 About this Document... 3 2. Ujjwala KYC Offline Application

More information

memory product Doesn t play videos like the ipod Comes in 2, 4, and 8 Cost ranges from $135 to $225

memory product Doesn t play videos like the ipod Comes in 2, 4, and 8 Cost ranges from $135 to $225 The Apple ipod Is basically a hard drive with special software and a display Comes in 30, 60 and 80 GB sizes Price is about $230 to $330 Apple has sold over 100 million units 1 The Apple Nano Nano line

More information

BIP-1300 Mobile POS. BIP-1300 Mobile POS Transaction Mobile Computer. - Full Radio (CDMA-1X or EVDO, GSM-EDGE) - GSM/GPRS/EDGE or CDMA 1x/EvDOGPS

BIP-1300 Mobile POS. BIP-1300 Mobile POS Transaction Mobile Computer. - Full Radio (CDMA-1X or EVDO, GSM-EDGE) - GSM/GPRS/EDGE or CDMA 1x/EvDOGPS BIP-1300 Mobile POS BIP-1300 Mobile POS Transaction Mobile Computer - Full Radio (CDMA-1X or EVDO, GSM-EDGE) - GSM/GPRS/EDGE or CDMA 1x/EvDOGPS - WiFi (802.11b/g) - Windows Mobile 5.0 or Windows CE 5.0-128MB

More information

CHAPTER 5 Introduction to Internet Technology

CHAPTER 5 Introduction to Internet Technology COMPUTER LITERACY (FSPK0012) CHAPTER 5 Introduction to Internet Technology by: Dr. Siti Hajar Othman & Dr. Nazmona Mat Ali Faculty of Computing, UTM Johor Bharu Email: hajar@utm.my / nazmona@utm.my Phone:

More information

Oracle isupplier. Supplier User Guide

Oracle isupplier. Supplier User Guide Supplier User Guide Table of Contents isupplier Application, Help and Support... 3 Registration... 3 For Help... 3 Overview... 4 User Registration... 5 Login to isupplier... 7 isupplier and Sourcing Responsibility

More information

DRAFT EAST POINSETT CO. SCHOOL DIST. - KINDERGARTEN MATH

DRAFT EAST POINSETT CO. SCHOOL DIST. - KINDERGARTEN MATH Module 1 - Math Count to tell the number of objects Test: 10/15/2015 (No TLI K.CC.3 Write numbers from 0 to 20. Represent a number of objects with a written numeral 0-20 (with 0 representing a count of

More information

REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59

REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59 REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59 1. BACKGROUND INFORMATION 1.1. The Sci-Bono Discovery Centre is an independent Non Profit Company set up

More information

Mobile Handset Population in Finland

Mobile Handset Population in Finland Mobile Handset Population in Finland 2005-2010 Antti Riikonen Aalto University March 3 rd, 2011 MoMIE: Comprehensive view on mobile service usage HANDSET POPULATION MoMIE RESEARCH: Surveys on handset panel

More information

Additional Product Information

Additional Product Information Additional Product Information User Guide Copyright 2006,2008 Hewlett-Packard Development Company, L.P. Microsoft, Windows, the Windows logo, Outlook, and ActiveSync are trademarks of Microsoft Corporation

More information

CLASSIFYING AND EVALUATING COMPUTERS

CLASSIFYING AND EVALUATING COMPUTERS CLASSIFYING AND EVALUATING COMPUTERS Objectives: Identify types of personal computers Describe desktop computers Compare laptops and tablets Evaluate smartphones Describe embedded computers Describe servers

More information

VIP X1/VIP X2 Network video server

VIP X1/VIP X2 Network video server VIP X1/VIP X2 Network video server EN 2 VIP X1/VIP X2 Quick Installation Guide Attention You should always make yourself familiar with the required safety measures in the corresponding chapter of the user's

More information

The New Xperia Tablet S from Sony: A Place for Your Imagination to Play

The New Xperia Tablet S from Sony: A Place for Your Imagination to Play 2 International Business Park #05-10 Tower One The Strategy Singapore 609930 Telephone: (65) 6544 8338 Facsimile: (65) 6544 8330 NEWS RELEASE: Immediate The New Xperia Tablet S from Sony: A Place for Your

More information

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design. FINAL REPORT Table of Contents I) Project Planning II) User Analysis III) Tasks Analysis IV) Storyboard V) Function Design VI) Scenario Design VII) Database VIII) Usability Questionnaire IX) System Version

More information

Digital Literacy. Identify types of computers, how they process information, and the purpose and function of different hardware components

Digital Literacy. Identify types of computers, how they process information, and the purpose and function of different hardware components Digital Literacy Identify types of computers, how they process information, and the purpose and function of different hardware components Computer Basics 1.01 Types of Computers Input and Output Devices

More information

data analysis - basic steps Arend Hintze

data analysis - basic steps Arend Hintze data analysis - basic steps Arend Hintze 1/13: Data collection, (web scraping, crawlers, and spiders) 1/15: API for Twitter, Reddit 1/20: no lecture due to MLK 1/22: relational databases, SQL 1/27: SQL,

More information

A1 ASSIGNMENT TERMINOLOGY.

A1 ASSIGNMENT TERMINOLOGY. A1 ASSIGNMENT TERMINOLOGY. Emma Ziolkowski Term Definition Image blog a web page or site that speaks to an audience of readers informally about opinionated topics. a blog is a website on which the author

More information

SWORSCHE TECHNOLOGY CO.LIMITED

SWORSCHE TECHNOLOGY CO.LIMITED Pet camera manual V1.2 Invite you to experience a new product development and design company, pet camera. Eyes from your pet to see the world. The camera has a built-in power supply (lithium-ion battery),

More information

FINAL EXAMINATION. COMP-250: Introduction to Computer Science - Fall 2010

FINAL EXAMINATION. COMP-250: Introduction to Computer Science - Fall 2010 STUDENT NAME: STUDENT ID: McGill University Faculty of Science School of Computer Science FINAL EXAMINATION COMP-250: Introduction to Computer Science - Fall 2010 December 20, 2010 2:00-5:00 Examiner:

More information

cc: Discover QA Coaching Manual, v5.2 R1

cc: Discover QA Coaching Manual, v5.2 R1 cc: Discover QA Coaching Manual, v5.2 R1 August 2013 Reference Guide callcopy.com Security Classification: CallCopy Confidential. Distribution: Approved internal CallCopy staff only and licensed CallCopy

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers in making preliminary assessments

More information

User Guide. BlackBerry Curve 8330 Smartphone

User Guide. BlackBerry Curve 8330 Smartphone User Guide BlackBerry Curve 8330 Smartphone SWD-319876-1213120259-001 Contents BlackBerry basics...11 Switch typing input methods...11 Switch applications...11 Assign an application to a Convenience key...11

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 Class Hours: 1.0 Credit Hours: 1.0 Laboratory Hours: 0.0 Revised: Fall 06 Note: This course

More information

Common Core State Standards - Standards for Mathematical Practice

Common Core State Standards - Standards for Mathematical Practice Common Core State Standards - Standards for Mathematical Practice The Standards for Mathematical Practice describe varieties of expertise that mathematics educators at all levels should seek to develop

More information

1 Devices and equipment in lecture rooms Document Camera About the camera: Procedures: Button Joey...

1 Devices and equipment in lecture rooms Document Camera About the camera: Procedures: Button Joey... Service Desk BASIC INSTRUCTIONS ON LECTURE ROOM PODIUMS In order to easily conduct your class sessions, please make sure that you follow the right procedure of using the podiums and all the available components

More information

Contents. Get Started Install SIM Card

Contents. Get Started Install SIM Card Contents Get Started... 2 Install SIM Card... 2 Insert Micro SD card... 2 Charge Mobile Phone... 3 PC-Phone File Transfer... 4 Keys and Parts... 5 Fingerprint... 7 Lock and Unlock the Screen... 9 Notification

More information

1. (a) How does Object Oriented Programming facilitate the creation of reliable, reusable, extensible and adaptable code? [4]

1. (a) How does Object Oriented Programming facilitate the creation of reliable, reusable, extensible and adaptable code? [4] 1. (a) How does Object Oriented Programming facilitate the creation of reliable, reusable, extensible and adaptable code? [4] (b) What is Encapsulation and what does it mean to say that C ++ friend functions

More information

Guide to a Perfect Event Communication Plan - Professional event management

Guide to a Perfect Event Communication Plan  - Professional event management Guide to a Perfect Event Communication Plan www.lyyti.com - Professional event management re is usually a lot of talk about communication and how to make it more effective. Most companies think they are

More information

EP A1 (19) (11) EP A1 (12) EUROPEAN PATENT APPLICATION. (43) Date of publication: Bulletin 2012/34

EP A1 (19) (11) EP A1 (12) EUROPEAN PATENT APPLICATION. (43) Date of publication: Bulletin 2012/34 (19) (12) EUROPEAN PATENT APPLICATION (11) EP 2 490 138 A1 (43) Date of publication: 22.08.2012 Bulletin 2012/34 (1) Int Cl.: G06F 17/30 (2006.01) (21) Application number: 1214420.9 (22) Date of filing:

More information

User Guide. BlackBerry 8110 Smartphone

User Guide. BlackBerry 8110 Smartphone User Guide BlackBerry 8110 Smartphone SWDT211111-211111-1109020257-001 Contents BlackBerry basics...11 About typing input methods...11 Type text using SureType technology...11 Switch typing input methods...11

More information

AUTOCOM PURCHASING GUIDE

AUTOCOM PURCHASING GUIDE AUTOCOM PURCHASING GUIDE Purchasing a wired audio system can be a bit confusing and frustrating. Trying to figure out which unit to purchase, the Logic or Super Pro Automatic (SPA) and then trying to determine

More information

Table of Contents. 2 Know your device. 4 Device setup. 8 Customize. 10 Connections. 11 Apps. 12 Contacts. 13 Messages. 14 Camera.

Table of Contents. 2 Know your device. 4 Device setup. 8 Customize. 10 Connections. 11 Apps. 12 Contacts. 13 Messages. 14 Camera. Table of Contents 2 Know your device 4 Device setup 8 Customize 10 Connections 11 Apps 12 Contacts 13 Messages 14 Camera 15 Internet Know your device Front view Front Camera SIM Card Slot microsd Card

More information

Multimodal Interfaces. Remotroid

Multimodal Interfaces. Remotroid Multimodal Interfaces Remotroid Siavash Bigdeli / Christian Lutz University of Neuchatel and University of Fribourg 1. June 2012 Table of contents 1 Introduction...3 2 Idea of the application...3 3 Device

More information

A B2B Search Engine. Abstract. Motivation. Challenges. Technical Report

A B2B Search Engine. Abstract. Motivation. Challenges. Technical Report Technical Report A B2B Search Engine Abstract In this report, we describe a business-to-business search engine that allows searching for potential customers with highly-specific queries. Currently over

More information

Tizen 2.3 TBT User Guide

Tizen 2.3 TBT User Guide Tizen 2.3 TBT User Guide Revision History Date Version History Writer Reviewer 19-Sep-2014 1.0 First version of document Md. Nazmus Saqib Rezwanul Huq Shuhan 1-Oct-2014 2.0 Second version of document Md.

More information

Senstar Symphony. 7.1 User Guide

Senstar Symphony. 7.1 User Guide Senstar Symphony 7.1 User Guide Contents Contents Introduction...5 Network configuration... 5 Getting started...6 Symphony Server... 8 Log in to the server configuration interface...8 Devices...8 Cameras...

More information

How to Select the Right Marketing Cloud Edition

How to Select the Right Marketing Cloud Edition How to Select the Right Marketing Cloud Edition Email Studio, Mobile Studio, and Web Studio ith Salesforce Marketing Cloud, marketers have one platform to manage 1-to-1 customer journeys through the entire

More information

WHAT IS THE INTERNET?

WHAT IS THE INTERNET? The Internet WHAT IS THE INTERNET? A world-wide network of computers allows people to share information electronically It is a BIG book with many web-pages on different topics. It Can be accessed anywhere

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 "404 Page Not Found" Error Encountered, page 2 Cannot Start or Join Meeting, page 2

More information

Topic: 1-One to Five

Topic: 1-One to Five Mathematics Curriculum Kindergarten Suggested Blocks of Instruction: 12 days /September Topic: 1-One to Five Know number names and the count sequence. K.CC.3. Write numbers from 0 to 20. Represent a number

More information

CTIS 487: Lecture Notes 1

CTIS 487: Lecture Notes 1 CTIS 487: Lecture Notes 1 Mobile phones got their name due to the fact that they allow users to make phone calls while being mobile. The communication architecture was dominated by base stations communicating

More information

X9 REGISTRY FOR CHECK IMAGE TESTS. CONTROLLING SPECIFICATION: ANS X Parts 1 & 2. IBM MICR OnUs 2 Validation

X9 REGISTRY FOR CHECK IMAGE TESTS. CONTROLLING SPECIFICATION: ANS X Parts 1 & 2. IBM MICR OnUs 2 Validation X9 REGISTRY FOR CHECK IMAGE TESTS CONTROLLING SPECIFICATION: ANS X9.100-40 Parts 1 & 2 Image Test Name: Image Test Number: 032.00 Image Test Version: 00 Image Test Status: Where: A = Active (approved for

More information

User s Manual of DVR ULTIMAX. Remote Client Software V wersja 2.40

User s Manual of DVR ULTIMAX. Remote Client Software V wersja 2.40 User s Manual of DVR ULTIMAX Remote Client Software V 4.0.1 ULTIMAX-304 ULTIMAX-308 ULTIMAX-316 ULTIMAX-504 ULTIMAX-508 ULTIMAX-516 ULTIMAX-704 ULTIMAX-708 ULTIMAX-716 wersja 2.40 Index 1 Software Install,

More information

Data Structures and Algorithms in Java. Second Year Software Engineering

Data Structures and Algorithms in Java. Second Year Software Engineering Data Structures and Algorithms in Java Second Year Software Engineering Introduction Computer: is a programmable machine that can store, retrieve and process data. Data: The representation of information

More information

What is Adobe Connect Pro? Setting up a Meeting. Using Adobe Connect Pro

What is Adobe Connect Pro? Setting up a Meeting. Using Adobe Connect Pro What is Adobe Connect Pro? Adobe Acrobat Connect Pro is a Flash based application that allows you to have real-time, multi-point meetings and class sessions that participants can access through a web browser.

More information

Manual Version: V1.01. ISS Manager Video Management Software User Manual

Manual Version: V1.01. ISS Manager Video Management Software User Manual Manual Version: V1.01 ISS Manager Video Management Software User Manual Notice The information in this manual is subject to change without notice. Every effort has been made in the preparation of this

More information

Qualtrics Accessibility Conformance Report

Qualtrics Accessibility Conformance Report Qualtrics Accessibility Conformance Report VPAT Version 2.1 March 2018 Name of Product/Version: Qualtrics Survey Engine Product Description: Web application that collects respondent s responses to survey

More information

Remarks and explanations. Features

Remarks and explanations. Features Section 1194.21 - Software Applications and Operating Systems Lexmark interprets this section to be intended for software products; we evaluate the Status Monitor Center, Scan Center, print driver, local

More information

INTERNET TECHNOLOGIES USED BY INC. 500 CORPORATE WEB SITES

INTERNET TECHNOLOGIES USED BY INC. 500 CORPORATE WEB SITES INTERNET TECHNOLOGIES USED BY INC. 500 CORPORATE WEB SITES Jensen J. Zhao, Ball State University, jzhao@bsu.edu Sherry Y. Zhao, Massachusetts Institute of Technology, szhao@mit.edu ABSTRACT This paper

More information

PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd :36

PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd :36 PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd 1 18.12.13 09:36 PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd 2 18.12.13 09:36 INTELLIGENCE MEETS SPEED THE P 9982 SMARTPHONE BY BLACKBERRY Porsche Design

More information

ipims (ITX IP Device Management SW) QUICK INSTALLATION GUIDE

ipims (ITX IP Device Management SW) QUICK INSTALLATION GUIDE 1. SW Installation on PC a. Double Click the installation file b. Input proper information during install the SW *select the path to install the SW * Select whether to create the short cut on Desktop Minimum

More information

Auburn University at Montgomery Policies and Procedures

Auburn University at Montgomery Policies and Procedures Title: PC Allocation and Refresh Policy Responsible Office: Office of Technology Auburn University at Montgomery Policies and Procedures I. PURPOSE Auburn University at Montgomery is committed to ensuring

More information

Web Presentation Patterns (controller) SWEN-343 From Fowler, Patterns of Enterprise Application Architecture

Web Presentation Patterns (controller) SWEN-343 From Fowler, Patterns of Enterprise Application Architecture Web Presentation Patterns (controller) SWEN-343 From Fowler, Patterns of Enterprise Application Architecture Objectives Look at common patterns for designing Web-based presentation layer behavior Model-View-Control

More information

Development of a mobile application for manual traffic counts

Development of a mobile application for manual traffic counts Development of a mobile application for manual traffic counts Mohammad Ghanim 1,* and Khalid Khawaja 2 1 Department of Civil and Architectural Engineering, Qatar University, Doha, Qatar 2 Office of Academic

More information

Voluntary Product Accessibility Template (VPAT ) International Edition. About This Document. Version 2.2 July 2018

Voluntary Product Accessibility Template (VPAT ) International Edition. About This Document. Version 2.2 July 2018 Voluntary Product Accessibility Template (VPAT ) International Edition Version 2.2 July 2018 About This Document...1 Essential Requirements and Best Practices for Information & Communications Technology

More information

GPS watch manual. One: Preparation before use: Two: Product function. Three: watch presentation. Four: Screen display instruction

GPS watch manual. One: Preparation before use: Two: Product function. Three: watch presentation. Four: Screen display instruction GPS watch manual Please read the user manual carefully before using, that is in order to properly install and quickly to use, the product color please reference the material object. One: Preparation before

More information

The Cisco Wireless IP Phone 8821-EX has not been tested or certified with any accessories for use in Potentially Explosive Atmosphere.

The Cisco Wireless IP Phone 8821-EX has not been tested or certified with any accessories for use in Potentially Explosive Atmosphere. Supported, page 1 Headsets, page 1 Cisco Wireless IP Phone 8821 Desktop Charger, page 2 Cisco Wireless IP Phone 8821 Multicharger, page 6 Secure the Charger with a Cable Lock, page 10 Supported You can

More information

Using remote controller

Using remote controller Using remote controller Overview The remote controller is a useful tool to help you operate the components of your home theater. To do so, first press the Mode button that corresponds to the device you

More information

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING CHAPTER 2 TEXT FORMATTING 1. Explain how to create a Bulleted and Numbered List in Star Office Writer? One way to create a list of points or topics in a document is to create a bulleted list. A bullet

More information

MASTER VISUALLY WINDOWS MOBILE 2003 Getting Started. Entertain On-the-Go. Create a Mobile Office

MASTER VISUALLY WINDOWS MOBILE 2003 Getting Started. Entertain On-the-Go. Create a Mobile Office CHAPTER 1 USING WINDOWS MOBILE 2003 AN INTRODUCTION TO WINDOWS MOBILE 2003 2003 devices have in common, such as an ARM-based processor (Intel StrongARM, XScale, or Texas Instruments OMAP processor). These

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers in making preliminary assessments

More information