Metonymic Errors in a Web Development Course

Size: px
Start display at page:

Download "Metonymic Errors in a Web Development Course"

Transcription

1 Metonymic Errors in a Web Development Course Craig S. Miller DePaul University 243 S. Wabash Ave. Chicago, IL USA [email protected] ABSTRACT This paper investigates a class of database access errors that occur in the context of a web development course. While the use of an Object-Relational Mapping (ORM) simplifies database access, students still demonstrate reference errors such as mistakenly referring to the whole object rather than an attribute value that is a part of the object. Metonymy, a rhetorical device used in human communication, offers an interpretation to these errors. A study is presented where student answers are reported and analyzed in this context. Findings indicate the prevalence of reference errors and offer instructional strategies for addressing them. Categories and Subject Descriptors K.3.2 [Computers and Education]: Computer and Information Science Education General Terms Design, Human Factors, Languages Keywords programming errors, web development, metonymy 1. INTRODUCTION The IT program at our university offers a sequence of web development courses whose goals include teaching students the architecture of a web application and the programming fundamentals for connecting the components of the architecture. This emphasis on architecture in IT coursework is supported by findings in previous work. For example, in interviews of IT employers, knowledge of software architecture and the need to integrate existing components to solve a problem were commonly cited as critical competencies for Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. SIGITE 12, October 11 13, 2012, Calgary, Alberta, Canada. Copyright 2012 ACM /12/10...$ IT careers [8]. The importance of these competencies is consistent with recent articles promoting architecture [1, 9] and the need to compose systems from working components [5]. The model-view-controller (MVC) architecture provides an exemplary use of architecture in web development. By presenting web development as separate components, students learn how data models, controller logic and display templates (views) relate to each other. The emphasis on architecture motivated the choice of Ruby on Rails [2] as the development framework used in the web courses discussed in this paper. The Rails framework provides a clean separation of the MVC components, each residing in its own folder in the file structure. An additional benefit is that the framework provides automatic scaffold generation for quickly building a working web application. Most relevant for this paper, the Rails framework makes use of an Object- Relation Mapping (ORM) for its data model component. Use of an ORM in introductory web development courses has several advantages. First, it abstracts away the details of SQL queries and replaces it with the syntax and object-based notation consistent with the framework s programming language. Second, it provides a practical context for teaching or reviewing object-based programming. Finally, it permits database-independent development. Students can develop an application with one database knowing that deployment can use a different database with little or no changes to the application. The first advantage is particularly important for emphasizing architecture since the use of an ORM allows the course to focus on the role of the database with respect to the rest of the application, rather than dwelling on the details of the database. Despite the benefits of using an ORM, application development still presents challenges for students learning to develop software applications. Successfully accessing content requires precise references to data objects and their properties. As we will see, students encounter difficulties specifying the correct referent, whether for display in a view or for integration with other components in an application. These reference errors are the focus of this paper. The thesis is that a major insight to many of these errors involves understanding that humans can automatically resolve ambiguous references whereas computer systems whether through an ORM, SQL or other notations require exact specification of the referent. More specifically, the paper

2 draws upon the rhetorical device of metonymy to explain a class of reference errors observed among students. As we will see, student work is often more consistent with their experience in everyday communication than what is required for producing correct code. Previous analysis has already identified metonymy as a unifying account for a broad range of programming errors [7]. In this sense, the analysis and study presented in this paper complement previous work identifying common misconceptions that produce student errors. Like the analysis in this paper, some of these misconceptions originate from human language [3]. However, these previously studied misconceptions are generally based on words that have different meanings in everyday communication than they do in programming languages (e.g. if or while). This paper examines the potential role of metonymy in the context of application development and data access. The goal is to explain errors, predict when they are likely to occur and suggest teaching strategies for addressing the errors. The next section explains metonymy and its relevance to programming. The following section then presents metonymy in the context of database access using an ORM with the goal of identifying when it occurs. This analysis leads to an empirical study that reveals student responses consistent with the analysis. Finally, we use the analysis to recommend possible approaches for teaching. 2. METONYMY AND PROGRAMMING Metonymy is a rhetorical device used to reference an item by stating another item associated with it. For example, consider this sentence: the host opened the wine to be served with the meal. People have little difficulty understanding that it was not the wine that was actually opened. Rather, the host opened the bottle containing the wine. Here the stated referent (wine) actually refers to its container (bottle). Humans readily use metonymy in everyday communication and quickly resolve the referent with little to no conscious awareness of the needed inference (for an extensive review of metonymy in everyday communication, see Lakoff and Johnson [6]). As will be discussed, computer programming languages generally do not resolve intended referents in this way. As a consequence, the practice of using metonymy in everyday communication may be an impediment for successfully learning how to specify precise referents in computing. Use of metonymy is particularly common when the goal is to contrast against another possible referent. For example, our host may have two bottles of wine to choose from: a Bordeaux and a Burgundy 1. If the goal is to emphasize the choice between the two wines, we may state, The host opened the Burgundy to be served with the meal. Explicitly mentioning the bottle does not improve communication since both wines come in a bottle and listeners effortlessly infer that it is the bottle (of Burgundy wine) being opened. Figure 1 illustrates the use of metonymy for this example. It indicates that specifying the type of wine indicates which bottle should be opened. The bottle itself is not explicitly referenced since it does not have the distinguishing qualities relevant for the choice. 1 Referring to a wine by its region is yet another example of metonymy. Here the reference to Burgundy (or Bordeaux) is not a reference to a region in France, but to the wine that comes from that region. Stated Referent Intended Referent for Selection Type Of Burgundy Contains Bottle-1 Wine Type Of Bordeaux Contains Bottle-2 Figure 1: Metonymy selects the referent. Country id: integer name: string population: integer languages: string continent: string Has Many Belongs To City id: integer name: string population: integer country_id: integer Figure 2: Example models with Rails relations. While everyday language permits flexible expression using metonymy, it cannot usually be applied in the context of programming and application development. Previous work [7] surveys common programming errors where metonymy provides some insight. These errors may involve arrays, objects, and linked lists. For example, when referencing a value in an array, a student may mistakenly reference the index to that value, perhaps in the context of swapping array values. In this paper, the focus is on metonymic errors in the context of ORM access. Even though ORM offers a simplified method for accessing a database, it nevertheless requires precise references to objects (database rows or records) and properties (database columns or fields). As we will see, metonymy suggests a natural tendency for humans (particularly novice developers) to reference an object instead of a property in specific cases (or vice versa). In the next section, ORM terminology is reviewed and a working example is developed. 3. ORM EXAMPLE Before we present any errors, let us first review database access in the context of the Rails ORM, Active Record. For the rest of the paper, examples are based on two schema models presented in Figure 2. The Country model and the City model are adequate to explain student errors and develop exercises for studying them. In addition to a few attributes (e.g. name, population, languages), both models have a primary key (id), which Active Record provides by default. Also note that city has a foreign key (country id). This foreign key provides the basis of a relationship between the two models. Using Active

3 Record terminology, we say that a City belongs to a Country and that a Country has many Cities. Once the models are specified and the relationships declared, Active Record provides object-oriented access to the database by automatically defining classes and methods for the models. Class methods selectively query records from the database: france_country = Country.find_by_name( France ) london_city = City.find_by_name( London ) Specified Referent Intended Referent for Selection France Name Obj-1 Continent Country Is a Is a Europe Germany Name Obj-2 Continent all_city_objects = City.all some_objects = City.where( population > 1000 ) The assigned variable names document what the methods return. In the examples above, the Ruby on Rails framework dynamically defines methods such as find_by_name, which are based on the model s properties. Given an object (record) from the database, instance methods 2 can be called with them: france_city_objects = france_country.cities uk_country_object = london_city.country Finally, attribute values can be assigned to an object, which can then be saved to the database: new_country = Country.new new_country.name = Fredonia new_country.population = new_country.save Even though Active Record simplifies database access using object-based notation, student developers are still required to correctly state the intended referent. For example, if the goal is to list a country, more precisely, the name of the country, the reference must explicitly reference the name property with the country object: new_country.name However, given the prevalence of metonymy in human languages, students may be tempted to simply indicate the object: new_country Other circumstances may call for simply referencing the object (representing the entire database record), perhaps to gain access to other fields associated with it. Considering the use of metonymy, students may be inclined to simply indicate the name (a string) since it is the name that clearly distinguishes it from other country objects. Figure 3 provides a working example that is structurally similar to the wine example. As the figure indicates, Obj-1 and Obj-2 are usefully identified by their name property. However, simply providing the name attribute will not be sufficient if the application requires a reference to the object. In the next section, we review actual student work in the context of the analysis presented here. 2 Technically all object-based references are method calls in Ruby even if they seem like properties. Parentheses are optional for method calls in Ruby. Figure 3: Reference error. 4. STUDY OF STUDENT WORK An exercise with ORM questions was developed to assess student ability to access database content using the Rails ORM, Active Record. The exercise presented the schema shown in Figure 2. The exercise also presented a few working examples similar to those presented in the previous section. The first two questions (presented with answers below) ask students to provide expressions that require an explicit reference to the name property: The country name with id 5. Answer: Country.find(5).name The population of the city of Toronto. Answer: City.find by name( Toronto ).population While there are many correct answers for each question, all correct answers require an explicit reference to the name property. However, as previously discussed, students may (mistakenly) just reference the object. For example, for the first question, they may omit the name reference and thus just provide the object: Country.find(5). For the second question, they may mistakenly omit the name reference when matching the city name: City.Toronto.population. Consistent with the use of metonymy, an identifying property (e.g. name) can be interchanged with the referent itself. The last two questions in the exercise were expressly developed to explore how students specify referents. Both questions ask students to delete an object from an array: Assume that country_list is an array of Country objects. Provide ruby code that uses the remove method to delete the country named France from the array. Answer: country obj = Country.find by name( France ) country list.remove(country obj) Provide the Ruby code that uses the remove method to delete the country whose continent is Europe. For this example, you may assume that there is only one country from Europe in the table. Answer: country obj = Country.find by continent( Europe ) country list.remove(country obj) The answers to both questions are structurally identical. However, the first requires use of the name property and the second requires the use of the continent property. Since the name property is commonly used to identify the object, we

4 hypothesize that it is more likely to be used in place of the object itself. Given the scope of the paper, the analysis focuses on the four questions (first two questions and last two questions) just discussed. However, all the questions to the exercise are provided in the appendix. 4.1 Method TheORMquestionswereofferedasanexerciseinasecond web development course at a large university. While the exercise was offered to all students, students actively chose to participate in the study by submitting their answers in a sealed envelop to the instructor, which were then turned over to the study s investigator. Seventeen students (14 male, 3 female) submitted their answers for analysis. The average age was 25 and the average number of prior programming courses was Results Results focus on student answers to the previously discussed questions (the first two questions and the last two questions in the exercise). These questions directly address metonymic usage. While the other questions may also involve metonymy-based errors, they are more difficult to analyze since they require more complex answers. Furthermore, students responded to fewer of them (students provided answers for only 66% of these questions). Student responses are categorized by whether they successfully referenced the needed property in their answers. In this section, student answers are presented without interpretation. The next section discusses the answers in the context of metonymy. The country name with id 5 (question 1). A correct answer accesses the country object and then references the name attribute. Of the 17 responses, 9 students produced an answer that did not resolve to the name attribute, compared to 5 students who explicitly referenced the name attribute. The remaining 3 students did not produce an answer that could be interpreted as belonging to either group. The population of the city of Toronto. (question 2). A correct answer selects the City object by matching the city name to the name property. 7 students explicitly referenced the name property, including 3 with fully correct answers. 8 responses did not explicitly use thenamepropertyanywhereintheiranswers. 1student did not provide an answer and 1 student provided an unfinished answer (missing a closing parenthesis). For the last two questions (questions 8 and 9), 16 of the 17 students had answers that could be classified into one of the three categories. Just property. The answer just provides the property value to indicate what should be deleted. Examples: country_list.remove( France ) or country_list.remove( Europe ) For question 8 (remove object using the name property), 8 students provided an answer in this category. For question 9 (remove object using the continent property), 2 students provided an answer in this category. Table 1: Frequency counts for last two questions Remove by Continent (Q 9) Remove by Just Match No Name (Q 8) property property answer Just property Match property No answer Match property (correct approach). The answer matches the property value to its attribute to select the country object that should be deleted. Example: country_list.remove( Country.find_by_continent( Europe )) Forquestion8(removeobjectusingthenameproperty), 4 students provided an answer in this category. For question 9 (remove object using the continent property), 6 students provided an answer in this category. No answer. No answer is provided. Forquestion8(removeobjectusingthenameproperty), 4 students provided no answer. For question 9 (remove object using the continent property), 8 students provided no answer. Table 1 presents the frequencies of how each student responded to both questions. For example, 2 students (upperright cell) referenced just the property ( France for question 8 and Europe for question 9) for both questions 8 and 9. Four students (center cell) correctly matched the properties to access the object for removal. Note that no students correctly matched the property for question 8 but then just used the property for question 9. The difference in student responses for the two questions will be further discussed in the next section. Figure 4 summarizes the frequency of observed reference errors for each question as a percentage of student answers (N = 17 and includes blank answers). The error bars indicate 95% confidence intervals 3. The lower end of the confidence intervals for questions 1, 2 and 8 set minimal expectations for this population of students and indicate that at least a quarter of the student answers have problems specifying the correct referent. In the next section, the reference errors will be discussed in the context of metonymy. 4.3 Discussion The results indicate that a substantive number of student programming errors for ORM access involve problems specifying the correct referent. Here those errors are analyzed in the context of metonymic expression. For question 1, most students (9 of 17) provided the whole object (entity representing the full database record) when the question asked for the name. Consistent with metonymy, the name and the object itself can be used interchangeably in common language (e.g. France and the country of France). With this experience, students may be inclined to reference the whole object in place of just the name property. 3 The confidence intervals are calculated using the Clopper and Pearson exact method [4], which does not require an a priori estimation of the proportion.

5 Percent Observed Q1 Q2 Q8 Q9 Figure 4: Observed reference errors by questions. For question 2, many students (8 of 17) did not compare the string Toronto to the name property for identifying the needed city object. Instead, and consistent with metonymic expression, they used the name Toronto as a proxy for the city itself. Similarly, for question 8, most students used the country name France in place of the country object with the name of France. In contrast to question 8, relatively fewer students committed reference errors for question 9. Even though the correct answers for question 8 and question 9 are structurally identical, fewer students just used a string when the object is required. Use of metonymy in common language explains the discrepancy. For question 9, the identifying property is the continent Europe. Since the continent name is not normally adequate to identify a particular country, common language usually does not permit reference to a continent as a means for identifying a country. In this way, students are more likely to think of the continent as a property of the country and not the country itself. While use of metonymy offers an explanation for student answers, results do not conclusively indicate that metonymy accounts for the difference in responses between question 8 and 9. First, it is possible that the relative order of questions 8 and 9 account for differences in responses. Student experience with a prior question could influence how they answer a subsequent question. Second, despite the structural similarity of question 8 and 9, they are not phrased identically. Different phrasing could lead to different answers. Finally, given the small sample size, the difference between question 8 and question 9 is not statistically reliable. These shortcomings could be addressed with further study using a larger sample and controlling for order and question presentation. Study findings are also subject to the student population. Diverse populations may yield varying frequencies of reference errors. In particular, students who are just beginning to learn programming may commit more reference errors than observed here. Given this study s population with an average of three courses (1 year on a quarter system) of prior programming experience, we can expect reference errors in at least a quarter of the student answers (lower limit of the confidence interval) for similar questions for students with less programming experience. Of course, additional studies could further clarify prevalence of reference errors among various populations. 5. IMPLICATIONS Despite noted limitations in the study, the findings demonstrate student difficulties in correctly specifying a referent in the context of data access. An immediate practical consequence is that it calls attention to the commonality of these mistakes. Instructors can accordingly alert students to these pitfalls and providing supporting examples. Our understanding of metonymy in human communication provides a framework for identifying the errors and categorizing them. By knowing where these errors occur, we can develop questions that evaluate student progress towards addressing them. It also opens an avenue of inquiry for exploring possible teaching strategies. For example, it might be helpful to teach students about metonymy in everyday language and contrast it with what is required for application development, where correct referents cannot be automatically inferred. Theoretical analysis based on metonymy also indicates that non-identifying properties may produce fewer reference errors. The study s results provide preliminary empirical evidence that supports this analysis. If so, instructors may want to use examples and problems with non-identifying properties before they present those with identifying properties. In any case, additional studies could explore such instructional strategies and evaluate their effectiveness. Such work may draw upon established strategies for identifying misconceptions and addressing them [3]. Finally the work identifies a critical competence that has broad applicability in computing. Not limited to programming, correct referent specification is needed wherever application development or configuration calls for explicit representations consisting of entities and properties. Computing systems will not be able to automate referent resolution in the near future. To do so would require an explicit domain model and full understanding of natural language. Until then, the ability to precisely and literally specify a referent remains critical for many areas of computing. 6. ACKNOWLEDGMENTS Thanks to John Rogers, who allowed the study to be conducted in his web development class. 7. REFERENCES [1] S. J. Andriole and E. Roberts. Point/counterpoint: Technology curriculum for the early 21st century. Commun. ACM, 51(7):27 32, July [2] M. Bachle and P. Kirchberg. Ruby on rails. Software, IEEE, 24(6): , nov.-dec [3] M. Clancy. Misconceptions and attitudes that interfere with learning to program. In S. Fincher and M. Petre, editors, Computer science education research, pages Taylor and Francis Group, London, [4] C. Clopper and E. Pearson. The use of confidence or fiducial limits illustrated in the case of the binomial. Biometrika, 26(4): , [5] J. J. Ekstrom and B. Lunt. Education at the seams: preparing students to stitch systems together; curriculum and issues for 4-year it programs. In Proceedings of the 4th conference on Information technology curriculum, CITC4 03, pages , New York, NY, USA, ACM.

6 [6] G. Lakoff and M. Johnson. Metaphors We Live By. The University of Chicago Press, Chicago, IL, [7] C. S. Miller. Metonymy and student programming errors. Technical Report 20, DePaul University, [8] C. S. Miller and L. Dettori. Employers perspectives on IT learning outcomes. In Proceedings of the 9th ACM SIGITE conference on Information technology education, SIGITE 08, pages , New York, NY, USA, ACM. [9] K. A. Morneau and S. Talley. Architecture: an emerging core competence for it professionals. In Proceedings of the 8th ACM SIGITE conference on Information technology education, SIGITE 07, pages 9 12, New York, NY, USA, ACM. APPENDIX A. EXERCISE QUESTIONS The following questions were those used for the student exercise and whose answers were analyzed for the study. In addition to the questions below, the students were presented with the Country and City models presented in Figure 2. The exercise also provided several examples that access data based on the models. For the following items, provide the ruby code that produces the following: 1. The country name with id The population of the city of Toronto. 3. The country name where Timbuktu is located. 4. The number of cities listed for France. 5. A listing of all of the cities in Canada. 6. Create a new city record for Saskatoon (population: ) and have it indicate that it belongs to the Canada record. 7. Assume is a Country object. Using template view code, produce a table that lists all of the cities and their populations that belong Ruby has a remove method that allows an object to be deleted from an array of objects. For example if word_list has the contents [ cat, dog, cow, horse ], then word_list.remove( dog ) would delete the string dog from the array. That is, the contents of word_list would then be [ cat, cow, horse ]. 8. Assume that country_list is an array of Country objects. Provide ruby code that uses the remove method to delete the country named France from the array. 9. Provide the ruby code that uses the remove method to delete the country whose continent is Europe. For this example, you may assume that there is only one country from Europe in the table.

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

2. Basic Relational Data Model

2. Basic Relational Data Model 2. Basic Relational Data Model 2.1 Introduction Basic concepts of information models, their realisation in databases comprising data objects and object relationships, and their management by DBMS s that

More information

Postgres Plus xdb Replication Server with Multi-Master User s Guide

Postgres Plus xdb Replication Server with Multi-Master User s Guide Postgres Plus xdb Replication Server with Multi-Master User s Guide Postgres Plus xdb Replication Server with Multi-Master build 57 August 22, 2012 , Version 5.0 by EnterpriseDB Corporation Copyright 2012

More information

Data Modeling Basics

Data Modeling Basics Information Technology Standard Commonwealth of Pennsylvania Governor's Office of Administration/Office for Information Technology STD Number: STD-INF003B STD Title: Data Modeling Basics Issued by: Deputy

More information

Keywords: Regression testing, database applications, and impact analysis. Abstract. 1 Introduction

Keywords: Regression testing, database applications, and impact analysis. Abstract. 1 Introduction Regression Testing of Database Applications Bassel Daou, Ramzi A. Haraty, Nash at Mansour Lebanese American University P.O. Box 13-5053 Beirut, Lebanon Email: rharaty, [email protected] Keywords: Regression

More information

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP Microsoft Dynamics Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP May 2010 Find updates to this documentation at the following location. http://go.microsoft.com/fwlink/?linkid=162558&clcid=0x409

More information

Introduction to <emma>

Introduction to <emma> 1 Educause Southeast Regional Conference June 20, 2006 Christy Desmet, Director of First-year Composition Ron Balthazor, Developer University of Georgia Introduction

More information

Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL

Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Revised August, 2012 Find updates to this documentation at the following location: http://www.microsoft.com/download/en/details.aspx?id=10381

More information

Comparing Methods to Identify Defect Reports in a Change Management Database

Comparing Methods to Identify Defect Reports in a Change Management Database Comparing Methods to Identify Defect Reports in a Change Management Database Elaine J. Weyuker, Thomas J. Ostrand AT&T Labs - Research 180 Park Avenue Florham Park, NJ 07932 (weyuker,ostrand)@research.att.com

More information

Evaluation of the Impacts of Data Model and Query Language on Query Performance

Evaluation of the Impacts of Data Model and Query Language on Query Performance Evaluation of the Impacts of Data Model and Query Language on Query Performance ABSTRACT Hock Chuan Chan National University of Singapore [email protected] It is important to understand how users

More information

How To Map Behavior Goals From Facebook On The Behavior Grid

How To Map Behavior Goals From Facebook On The Behavior Grid The Behavior Grid: 35 Ways Behavior Can Change BJ Fogg Persuasive Technology Lab Stanford University captology.stanford.edu www.bjfogg.com [email protected] ABSTRACT This paper presents a new way of

More information

Simulating Chi-Square Test Using Excel

Simulating Chi-Square Test Using Excel Simulating Chi-Square Test Using Excel Leslie Chandrakantha John Jay College of Criminal Justice of CUNY Mathematics and Computer Science Department 524 West 59 th Street, New York, NY 10019 [email protected]

More information

Performance Comparison of Persistence Frameworks

Performance Comparison of Persistence Frameworks Performance Comparison of Persistence Frameworks Sabu M. Thampi * Asst. Prof., Department of CSE L.B.S College of Engineering Kasaragod-671542 Kerala, India [email protected] Ashwin A.K S8, Department

More information

Students who successfully complete the Health Science Informatics major will be able to:

Students who successfully complete the Health Science Informatics major will be able to: Health Science Informatics Program Requirements Hours: 72 hours Informatics Core Requirements - 31 hours INF 101 Seminar Introductory Informatics (1) INF 110 Foundations in Technology (3) INF 120 Principles

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

[MS-SPACSOM]: Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SPACSOM]: Intellectual Property Rights Notice for Open Specifications Documentation [MS-SPACSOM]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective

Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective Orit Hazzan's Column Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective This column is coauthored with Jeff Kramer, Department of Computing, Imperial College, London ABSTRACT

More information

B.1 Database Design and Definition

B.1 Database Design and Definition Appendix B Database Design B.1 Database Design and Definition Throughout the SQL chapter we connected to and queried the IMDB database. This database was set up by IMDB and available for us to use. But

More information

A + dvancer College Readiness Online Alignment to Florida PERT

A + dvancer College Readiness Online Alignment to Florida PERT A + dvancer College Readiness Online Alignment to Florida PERT Area Objective ID Topic Subject Activity Mathematics Math MPRC1 Equations: Solve linear in one variable College Readiness-Arithmetic Solving

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

Tab 3: STEM Alignment * Identifies connections between recognized STEM Career Cluster standards and NDG Linux Essentials curriculum.

Tab 3: STEM Alignment * Identifies connections between recognized STEM Career Cluster standards and NDG Linux Essentials curriculum. NDG Linux Course: Alignment to Education Standards STEM Career Cluster Knowledge and Skills Topics Common Core Anchor College and Career Readiness Standards 21st Century Science & Engineering Practices

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

The Role of Metadata for Effective Data Warehouse

The Role of Metadata for Effective Data Warehouse ISSN: 1991-8941 The Role of Metadata for Effective Data Warehouse Murtadha M. Hamad Alaa Abdulqahar Jihad University of Anbar - College of computer Abstract: Metadata efficient method for managing Data

More information

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led

More information

Chapter 1: Introduction. Database Management System (DBMS) University Database Example

Chapter 1: Introduction. Database Management System (DBMS) University Database Example This image cannot currently be displayed. Chapter 1: Introduction Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Database Management System (DBMS) DBMS contains information

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note

Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Text book of CPET 545 Service-Oriented Architecture and Enterprise Application: SOA Principles of Service Design, by Thomas Erl, ISBN

More information

Data Discovery & Documentation PROCEDURE

Data Discovery & Documentation PROCEDURE Data Discovery & Documentation PROCEDURE Document Version: 1.0 Date of Issue: June 28, 2013 Table of Contents 1. Introduction... 3 1.1 Purpose... 3 1.2 Scope... 3 2. Option 1: Current Process No metadata

More information

SAS BI Dashboard 3.1. User s Guide

SAS BI Dashboard 3.1. User s Guide SAS BI Dashboard 3.1 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS BI Dashboard 3.1: User s Guide. Cary, NC: SAS Institute Inc. SAS BI Dashboard

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Intended Use of the document: Teachers who are using standards based reporting in their classrooms.

Intended Use of the document: Teachers who are using standards based reporting in their classrooms. Standards Based Grading reports a student s ability to demonstrate mastery of a given standard. This Excel spread sheet is designed to support this method of assessing and reporting student learning. Purpose

More information

What's New In DITA CMS 4.0

What's New In DITA CMS 4.0 What's New In DITA CMS 4.0 WWW.IXIASOFT.COM / DITACMS v. 4.0 / Copyright 2014 IXIASOFT Technologies. All rights reserved. Last revised: December 11, 2014 Table of contents 3 Table of contents Chapter

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Advanced Query for Query Developers

Advanced Query for Query Developers for Developers This is a training guide to step you through the advanced functions of in NUFinancials. is an ad-hoc reporting tool that allows you to retrieve data that is stored in the NUFinancials application.

More information

A Survey of Online Tools Used in English-Thai and Thai-English Translation by Thai Students

A Survey of Online Tools Used in English-Thai and Thai-English Translation by Thai Students 69 A Survey of Online Tools Used in English-Thai and Thai-English Translation by Thai Students Sarathorn Munpru, Srinakharinwirot University, Thailand Pornpol Wuttikrikunlaya, Srinakharinwirot University,

More information

HarePoint Workflow Scheduler Manual

HarePoint Workflow Scheduler Manual HarePoint Workflow Scheduler Manual For SharePoint Server 2010/2013, SharePoint Foundation 2010/2013, Microsoft Office SharePoint Server 2007 and Microsoft Windows SharePoint Services 3.0. Product version

More information

KPI, OEE AND DOWNTIME ANALYTICS. An ICONICS Whitepaper

KPI, OEE AND DOWNTIME ANALYTICS. An ICONICS Whitepaper 2010 KPI, OEE AND DOWNTIME ANALYTICS An ICONICS Whitepaper CONTENTS 1 ABOUT THIS DOCUMENT 1 1.1 SCOPE OF THE DOCUMENT... 1 2 INTRODUCTION 2 2.1 ICONICS TOOLS PROVIDE DOWNTIME ANALYTICS... 2 3 DETERMINING

More information

Subject knowledge requirements for entry into computer science teacher training. Expert group s recommendations

Subject knowledge requirements for entry into computer science teacher training. Expert group s recommendations Subject knowledge requirements for entry into computer science teacher training Expert group s recommendations Introduction To start a postgraduate primary specialist or secondary ITE course specialising

More information

The Entity-Relationship Model

The Entity-Relationship Model The Entity-Relationship Model 221 After completing this chapter, you should be able to explain the three phases of database design, Why are multiple phases useful? evaluate the significance of the Entity-Relationship

More information

Microsoft' Excel & Access Integration

Microsoft' Excel & Access Integration Microsoft' Excel & Access Integration with Office 2007 Michael Alexander and Geoffrey Clark J1807 ; pwiueyb Wiley Publishing, Inc. Contents About the Authors Acknowledgments Introduction Part I: Basic

More information

AMERICAN SOCIETY OF CIVIL ENGINEERS. Standards Writing Manual for ASCE Standards Committees. Prepared by ASCE Codes and Standards Committee

AMERICAN SOCIETY OF CIVIL ENGINEERS. Standards Writing Manual for ASCE Standards Committees. Prepared by ASCE Codes and Standards Committee AMERICAN SOCIETY OF CIVIL ENGINEERS Standards Writing Manual for ASCE Standards Committees Prepared by ASCE Codes and Standards Committee Revised August 20, 2010 Contents Section Page 1.0 Scope, purpose,

More information

System Development and Life-Cycle Management (SDLCM) Methodology. Approval CISSCO Program Director

System Development and Life-Cycle Management (SDLCM) Methodology. Approval CISSCO Program Director System Development and Life-Cycle Management (SDLCM) Methodology Subject Type Standard Approval CISSCO Program Director A. PURPOSE This standard specifies content and format requirements for a Physical

More information

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder Microsoft Dynamics GP SmartList Builder User s Guide With Excel Report Builder Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility

More information

Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS

Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS Can Türker Swiss Federal Institute of Technology (ETH) Zurich Institute of Information Systems, ETH Zentrum CH 8092 Zurich, Switzerland

More information

Windchill ProjectLink 10.1. Curriculum Guide

Windchill ProjectLink 10.1. Curriculum Guide Windchill ProjectLink 10.1 Curriculum Guide Live Classroom Curriculum Guide Introduction to Windchill ProjectLink 10.1 Business Administration of Windchill ProjectLink 10.1 Workflow Administration of Windchill

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the

More information

Analyzing Research Articles: A Guide for Readers and Writers 1. Sam Mathews, Ph.D. Department of Psychology The University of West Florida

Analyzing Research Articles: A Guide for Readers and Writers 1. Sam Mathews, Ph.D. Department of Psychology The University of West Florida Analyzing Research Articles: A Guide for Readers and Writers 1 Sam Mathews, Ph.D. Department of Psychology The University of West Florida The critical reader of a research report expects the writer to

More information

CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01

CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01 CA Clarity PPM Connector for Microsoft SharePoint Product Guide Service Pack 02.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

Cognitive Load Theory and Instructional Design: Recent Developments

Cognitive Load Theory and Instructional Design: Recent Developments PAAS, RENKL, INTRODUCTION SWELLER EDUCATIONAL PSYCHOLOGIST, 38(1), 1 4 Copyright 2003, Lawrence Erlbaum Associates, Inc. Cognitive Load Theory and Instructional Design: Recent Developments Fred Paas Educational

More information

Configuration Manager

Configuration Manager After you have installed Unified Intelligent Contact Management (Unified ICM) and have it running, use the to view and update the configuration information in the Unified ICM database. The configuration

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Unit 3. Retrieving Data from Multiple Tables

Unit 3. Retrieving Data from Multiple Tables Unit 3. Retrieving Data from Multiple Tables What This Unit Is About How to retrieve columns from more than one table or view. What You Should Be Able to Do Retrieve data from more than one table or view.

More information

Soft Skills Requirements in Software Architecture s Job: An Exploratory Study

Soft Skills Requirements in Software Architecture s Job: An Exploratory Study Soft Skills Requirements in Software Architecture s Job: An Exploratory Study 1 Faheem Ahmed, 1 Piers Campbell, 1 Azam Beg, 2 Luiz Fernando Capretz 1 Faculty of Information Technology, United Arab Emirates

More information

Best Practices Report

Best Practices Report Overview As an IT leader within your organization, you face new challenges every day from managing user requirements and operational needs to the burden of IT Compliance. Developing a strong IT general

More information

JRefleX: Towards Supporting Small Student Software Teams

JRefleX: Towards Supporting Small Student Software Teams JRefleX: Towards Supporting Small Student Software Teams Kenny Wong, Warren Blanchet, Ying Liu, Curtis Schofield, Eleni Stroulia, Zhenchang Xing Department of Computing Science University of Alberta {kenw,blanchet,yingl,schofiel,stroulia,xing}@cs.ualberta.ca

More information

IBM SPSS Direct Marketing 23

IBM SPSS Direct Marketing 23 IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release

More information

Usage Analysis Tools in SharePoint Products and Technologies

Usage Analysis Tools in SharePoint Products and Technologies Usage Analysis Tools in SharePoint Products and Technologies Date published: June 9, 2004 Summary: Usage analysis allows you to track how websites on your server are being used. The Internet Information

More information

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects

More information

The Relational Model. Why Study the Relational Model?

The Relational Model. Why Study the Relational Model? The Relational Model Chapter 3 Instructor: Vladimir Zadorozhny [email protected] Information Science Program School of Information Sciences, University of Pittsburgh 1 Why Study the Relational Model?

More information

Brenau University Psychology Department Thesis Components Checklist

Brenau University Psychology Department Thesis Components Checklist 1 Brenau University Psychology Department Thesis Components Checklist Overview of Thesis Component Description/Purpose Comments/Feedback Abstract Summary of study in 150-200 words Chapter 1- Introduction

More information

Rational Rational ClearQuest

Rational Rational ClearQuest Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Before using this information, be

More information

[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol

[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol [MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications

More information

PENNSYLVANIA COMMON CORE STANDARDS English Language Arts Grades 9-12

PENNSYLVANIA COMMON CORE STANDARDS English Language Arts Grades 9-12 1.2 Reading Informational Text Students read, understand, and respond to informational text with emphasis on comprehension, making connections among ideas and between texts with focus on textual evidence.

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Using Database Metadata and its Semantics to Generate Automatic and Dynamic Web Entry Forms

Using Database Metadata and its Semantics to Generate Automatic and Dynamic Web Entry Forms Using Database Metadata and its Semantics to Generate Automatic and Dynamic Web Entry Forms Mohammed M. Elsheh and Mick J. Ridley Abstract Automatic and dynamic generation of Web applications is the future

More information

IBM SPSS Direct Marketing 22

IBM SPSS Direct Marketing 22 IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release

More information

There are numerous ways to access monitors:

There are numerous ways to access monitors: Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...

More information

Recovery Strategies for Service Failures: The Case of Restaurants

Recovery Strategies for Service Failures: The Case of Restaurants Journal of Hospitality Marketing & Management ISSN: 1936-8623 (Print) 1936-8631 (Online) Journal homepage: http://www.tandfonline.com/loi/whmm20 Recovery Strategies for Service Failures: The Case of Restaurants

More information

Traceability Patterns: An Approach to Requirement-Component Traceability in Agile Software Development

Traceability Patterns: An Approach to Requirement-Component Traceability in Agile Software Development Traceability Patterns: An Approach to Requirement-Component Traceability in Agile Software Development ARBI GHAZARIAN University of Toronto Department of Computer Science 10 King s College Road, Toronto,

More information

Introductory Problem Solving in Computer Science

Introductory Problem Solving in Computer Science Introductory Problem Solving in Computer Science David J. Barnes, Sally Fincher, Simon Thompson Computing Laboratory, University of Kent at Canterbury, Kent, CT2 7NF, England E-mail: [email protected]

More information

MAT 116. Algebra 1A. Version 5 12/15/07 MAT 116

MAT 116. Algebra 1A. Version 5 12/15/07 MAT 116 - MAT 116 Algebra 1A Version 5 12/15/07 MAT 116 Program Council The Academic Program Councils for each college oversee the design and development of all University of Phoenix curricula. Council members

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to

More information

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Outline. Lecture 18: Ruby on Rails MVC. Introduction to Rails

Outline. Lecture 18: Ruby on Rails MVC. Introduction to Rails Outline Lecture 18: Ruby on Rails Wendy Liu CSC309F Fall 2007 Introduction to Rails Rails Principles Inside Rails Hello World Rails with Ajax Other Framework 1 2 MVC Introduction to Rails Agile Web Development

More information

Record-Level Access: Under the Hood

Record-Level Access: Under the Hood Record-Level Access: Under the Hood Salesforce, Summer 15 @salesforcedocs Last updated: May 20, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

SharePoint 2013 for Business Process Automation

SharePoint 2013 for Business Process Automation SharePoint 2013 for Business Process Automation Course Number: 12966 Category: SharePoint Duration: 3 Days Course Description This three-day instructor-led course teaches business professionals how to

More information

SQLMutation: A tool to generate mutants of SQL database queries

SQLMutation: A tool to generate mutants of SQL database queries SQLMutation: A tool to generate mutants of SQL database queries Javier Tuya, Mª José Suárez-Cabal, Claudio de la Riva University of Oviedo (SPAIN) {tuya cabal claudio} @ uniovi.es Abstract We present a

More information

Using Workflow Technology to Manage Flexible e-learning Services

Using Workflow Technology to Manage Flexible e-learning Services Educational Technology & Society 5(4) 2002 ISSN 1436-4522 Using Workflow Technology to Manage Flexible e-learning Services Joe Lin, Charley Ho, Wasim Sadiq, Maria E. Orlowska Distributed Systems Technology

More information

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Many corporations and Independent Software Vendors considering cloud computing adoption face a similar challenge: how should

More information

Intelligent Human Machine Interface Design for Advanced Product Life Cycle Management Systems

Intelligent Human Machine Interface Design for Advanced Product Life Cycle Management Systems Intelligent Human Machine Interface Design for Advanced Product Life Cycle Management Systems Zeeshan Ahmed Vienna University of Technology Getreidemarkt 9/307, 1060 Vienna Austria Email: [email protected]

More information

Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology

Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology COS 597A: Principles of Database and Information Systems elational model elational model A formal (mathematical) model to represent objects (data/information), relationships between objects Constraints

More information

Set up My Sites (SharePoint Server

Set up My Sites (SharePoint Server 1 of 8 5/15/2011 9:14 PM Set up My Sites (SharePoint Server 2010) Published: May 12, 2010 This article describes how to set up My Sites in Microsoft SharePoint Server 2010. Like other tasks in SharePoint

More information

ICE for Eclipse. Release 9.0.1

ICE for Eclipse. Release 9.0.1 ICE for Eclipse Release 9.0.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional

More information

User Guide Package Exception Management

User Guide Package Exception Management User Guide Package Exception Management 70-3262-4.6 PRECISION Applications 2012 September 2012 2012 Precision Software, a division of QAD Inc. Precision Software products are copyrighted and all rights

More information

10CS73:Web Programming

10CS73:Web Programming 10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server

More information

NEW YORK STATE TEACHER CERTIFICATION EXAMINATIONS

NEW YORK STATE TEACHER CERTIFICATION EXAMINATIONS NEW YORK STATE TEACHER CERTIFICATION EXAMINATIONS TEST DESIGN AND FRAMEWORK DRAFT June 2012 This document is a working draft. The information in this document is subject to change, and any changes will

More information

UPS System Capacity Management Configuration Utility

UPS System Capacity Management Configuration Utility StruxureWare Power Monitoring 7.0 UPS System Capacity Management Configuration Utility User Guide UPS System Capacity Management Configuration Utility This document provides an overview of the StruxureWare

More information

Counseling the Alcohol and Drug Dependent Client

Counseling the Alcohol and Drug Dependent Client Instructor s Manual and Test Items for Counseling the Alcohol and Drug Dependent Client Robert J. Craig West Side VA Medical Center, Chicago And Illinois School of Professional Psychology Boston New York

More information

Master Data Services. SQL Server 2012 Books Online

Master Data Services. SQL Server 2012 Books Online Master Data Services SQL Server 2012 Books Online Summary: Master Data Services (MDS) is the SQL Server solution for master data management. Master data management (MDM) describes the efforts made by an

More information

Authoring Guide for Perception Version 3

Authoring Guide for Perception Version 3 Authoring Guide for Version 3.1, October 2001 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted.

More information