FONDAMENTI DI INFORMATICA

Size: px
Start display at page:

Download "FONDAMENTI DI INFORMATICA"

Transcription

1 FONDAMENTI DI INFORMATICA INTRODUZIONE AL CORSO E ALL INFORMATICA Prof. Emiliano Casalicchio

2 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 2 Info INGEGNERIA ENERGETICA, EDILIZIA E MECCANICA Canale A L Room: Aula 4

3 3 The teacher Emiliano Casalicchio Consulting hours When: monday 16:00-18:00 Where: room D1-17 (1 st floor), Ingegneria dell Informazione building

4 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 4 Teachers office: Room 17, Building D Ing. Informazione

5 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 5 Authoritative sources Official web site Information and teaching material Fondamenti-Di-Informatica The friends The forums The Others

6 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 6 Textbook and teaching material Textbook Matlab: A Practical Introduction to Programming and Problem Solving, 3 rd ed. The tools Stormy Attaway (author), Elsevier Science Ed. Matlab - Octave - More material Slides presented and suggested readings Slides don t replace the textbook. Slides are complementary material. Both (slides and textbook) are essential to succeed!!!!

7 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 7 Why Matlab/Octave It is a framework (a set of tools and a programming language) that allows to manipulate data (e.g. numbers and strings) statistical analysis formulation and solving of mathematical problems data plots simulation Matlab offers a high level programming language, that makes programming easier than other PL (e.g. Java, C, Fortran) It will allow you to turn theory in practice and to develop your computer skill

8 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 8 OCTAVE Octave con GUI (versione e seguenti): 1. Sotto Linux, la versione 3.8 si trova sia su Fedora 21 che su Ubuntu Per windows si puo' installar

9 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 9 Grading policy for the course The Computer Skills exam is composed by Written exam Practical exam in the lab to evaluate the acquired programming skills

10 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 10 About you and your background Do you own a computer (PC/laptop/ipad or similar)? How do you use your PC/laptop? For which purpose? what applications you mainly use? Do you know about or have you ever used Microsoft Excel (or other spreadsheet) Microsoft Access (or database management systems) programming languages Do you know what an algorithm is? Do you know how a computer works? Computer architecture Operating system

11 09/26/14 Computer Skills - Lesson 1 - E. Casalicchio 11 Why?! Why should you develop a computer skill? to learn the art of solving problems with a computer (it will turn always useful in your life) to learn and practice with a set of tools useful to solve problems related with your specialization This is not MY vision, but the vision of The Obama (US Gov.) vision: Don t Just Play on Your Phone, Program It An US government initiative: Computer Science Education Week, an annual campaign highlighting the importance of learning computer science (Obama) (Famous Leaders) (Astronauts) Princeton University COS 126

12 Teaching material will be mainly in English 12 There are anywhere from 350 to 500 million native English speakers, and up to 1 billion more who use it as a second or additional language to some extent. That s 20% of the world s 6.9 billion people. There are close to 7,000 languages spoken around the world today, but according to Ethnologue, 39% of the Earth s people speak one of eight brandname languages: Chinese, Spanish, English, Arabic, Hindi, Bengali, Portuguese, and Russian (Japanese is number 9). Of these, only English can claim global dominance n Spanish is the secondmost-spoken language by number of native speakers after Mandarin. It also has 60 million speakers as a second language,and 20 million students as a foreign language. BUT COMPUTER SCIENTISTS LIKE ENGLISH!!!!

13 Definitions Several definitions 1. the science of computers aka: Computer Science (CS) CS is the discipline dealing with representation, storing, retrieval and processing of information by automated means Computer science is no more about computers than astronomy is about telescopes. E. Dijkstra (Dutch computer Scientist. Turing Award in ) 2. the science of information or 3. the science of information representation and (automatic) processing aka: Informatics 13

14 Definitions the science of information representation and (automatic) processing what is information? why are we interested in its representation and (automatic) processing? n actually, we are interested in solving problems more precisely, in systematic ways for solving problems Computer Science is concerned with this 14

15 A problem to be solved what do we need to solve this problem abstractly? a representation of the involved entities a procedure to be followed (based on the adopted representation)? n representation a way of expressing the relevant information for the problem at hand n procedure a step-by-step process to be followed to get the solution a recipe 15

16 Representation + Process n the science of information representation and (automatic) processing now it should be a bit clearer what we are talking about it remains to discuss more explicitly the meaning of automatic later 16

17 the box-and-door problem again box representation face A: heigth(a), width(a) e.g.: height(a) = 220 cm, width(a) = 70 cm face B: heigth(b), width(b) e.g.: height(b) = 220 cm, width(b) = 110 cm face C: heigth(c), width(c) e.g.: height(c) = 70 cm, width(c) = 110 cm A B? n door representation heigth(door), width(door) e.g.: height(door) = 210 cm, width(door) = 80 cm 17

18 the box-and-door problem again procedure ( recipe ) check: height(a)<heigth(door)) AND width(a)<width(door) if true, OK ; else, check face B n OK? check: height(b)<heigth(door)) AND width(b)<width(door) if true, OK ; else, check face C check: height(c)<heigth(door)) AND width(c)<width(door) if true, OK ; else FAILURE hint: try with the numbers given in the previous slide A B? n a new procedure ( new recipe ) check: height(a)<heigth(door)) AND width(a)<width(door) if true, OK ; else, rotate face A check: width(a)<heigth(door)) AND heigth(a)<width(door) if true, OK ; else, check face B 18

19 general procedure check: height(a)<heigth(door)) AND width(a)<width(door) if true, OK ; else, rotate face A check: width(a)<heigth(door)) AND heigth(a)<width(door) if true, OK ; else, check face B A B? n does this procedure work only for this box and this door? n we are interested in general procedures parametric procedure 19

20 automatic processing n n box representation face A: heigth(a), width(a) face B: heigth(b), width(b) face C: heigth(c), width(c) door representation heigth(door), width(door) + check: height(a)<heigth(door)) AND width(a)<width(door) if true, OK ; else, rotate face A check: width(a)<heigth(door)) AND heigth(a)<width(door) if true, OK ; else, check face B representation procedure n the science of information representation and (automatic) processing n what do we mean by automatic? 20

21 A formalism to write recipes X : a named container START END X expr put a value in a container recipe processing begins recipe processing ends input / output true condition false a recipe step selection of alternative paths a collateral recipe 21

22 an example of recipe Start read m and n x m y n n try this recipe with different pairs of nonnegative integer numbers are you able to get the final answer? n what does it mean? is it necessary to know that, to process this recipe? true x 0 AND y 0 false write: trivial answer or impossible to calculate r remainder of x/y End false r = 0 true write: the answer is y x y End y r 22

23 23 Summary Course info Definition of computer science Problem solving the receipt way

ROSETTA STONE PRODUCT OVERVIEW

ROSETTA STONE PRODUCT OVERVIEW ROSETTA STONE PRODUCT OVERVIEW Method Rosetta Stone teaches languages using a fully-interactive immersion process that requires the student to indicate comprehension of the new language and provides immediate

More information

Course Content Concepts

Course Content Concepts CS 1371 SYLLABUS, Fall, 2017 Revised 8/6/17 Computing for Engineers Course Content Concepts The students will be expected to be familiar with the following concepts, either by writing code to solve problems,

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Extending Place Value with Whole Numbers to 1,000,000

Extending Place Value with Whole Numbers to 1,000,000 Grade 4 Mathematics, Quarter 1, Unit 1.1 Extending Place Value with Whole Numbers to 1,000,000 Overview Number of Instructional Days: 10 (1 day = 45 minutes) Content to Be Learned Recognize that a digit

More information

Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor

Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor CSE215, Foundations of Computer Science Course Information Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor http://www.cs.stonybrook.edu/~cse215 Course Description Introduction to the logical

More information

Tour. English Discoveries Online

Tour. English Discoveries Online Techno-Ware Tour Of English Discoveries Online Online www.englishdiscoveries.com http://ed242us.engdis.com/technotms Guided Tour of English Discoveries Online Background: English Discoveries Online is

More information

Cross Language Information Retrieval

Cross Language Information Retrieval Cross Language Information Retrieval RAFFAELLA BERNARDI UNIVERSITÀ DEGLI STUDI DI TRENTO P.ZZA VENEZIA, ROOM: 2.05, E-MAIL: BERNARDI@DISI.UNITN.IT Contents 1 Acknowledgment.............................................

More information

Conversions among Fractions, Decimals, and Percents

Conversions among Fractions, Decimals, and Percents Conversions among Fractions, Decimals, and Percents Objectives To reinforce the use of a data table; and to reinforce renaming fractions as percents using a calculator and renaming decimals as percents.

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

USER ADAPTATION IN E-LEARNING ENVIRONMENTS

USER ADAPTATION IN E-LEARNING ENVIRONMENTS USER ADAPTATION IN E-LEARNING ENVIRONMENTS Paraskevi Tzouveli Image, Video and Multimedia Systems Laboratory School of Electrical and Computer Engineering National Technical University of Athens tpar@image.

More information

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY Chen, Hsin-Hsi Department of Computer Science and Information Engineering National Taiwan University Taipei, Taiwan E-mail: hh_chen@csie.ntu.edu.tw Abstract

More information

Language Center. Course Catalog

Language Center. Course Catalog Language Center Course Catalog 2016-2017 Mastery of languages facilitates access to new and diverse opportunities, and IE University (IEU) considers knowledge of multiple languages a key element of its

More information

My First Spanish Phrases (Speak Another Language!) By Jill Kalz

My First Spanish Phrases (Speak Another Language!) By Jill Kalz My First Spanish Phrases (Speak Another Language!) By Jill Kalz If you are searching for the ebook by Jill Kalz My First Spanish Phrases (Speak Another Language!) in pdf form, then you have come on to

More information

Using Virtual Manipulatives to Support Teaching and Learning Mathematics

Using Virtual Manipulatives to Support Teaching and Learning Mathematics Using Virtual Manipulatives to Support Teaching and Learning Mathematics Joel Duffin Abstract The National Library of Virtual Manipulatives (NLVM) is a free website containing over 110 interactive online

More information

Timeline. Recommendations

Timeline. Recommendations Introduction Advanced Placement Course Credit Alignment Recommendations In 2007, the State of Ohio Legislature passed legislation mandating the Board of Regents to recommend and the Chancellor to adopt

More information

The Strong Minimalist Thesis and Bounded Optimality

The Strong Minimalist Thesis and Bounded Optimality The Strong Minimalist Thesis and Bounded Optimality DRAFT-IN-PROGRESS; SEND COMMENTS TO RICKL@UMICH.EDU Richard L. Lewis Department of Psychology University of Michigan 27 March 2010 1 Purpose of this

More information

Full text of O L O W Science As Inquiry conference. Science as Inquiry

Full text of O L O W Science As Inquiry conference. Science as Inquiry Page 1 of 5 Full text of O L O W Science As Inquiry conference Reception Meeting Room Resources Oceanside Unifying Concepts and Processes Science As Inquiry Physical Science Life Science Earth & Space

More information

On the Combined Behavior of Autonomous Resource Management Agents

On the Combined Behavior of Autonomous Resource Management Agents On the Combined Behavior of Autonomous Resource Management Agents Siri Fagernes 1 and Alva L. Couch 2 1 Faculty of Engineering Oslo University College Oslo, Norway siri.fagernes@iu.hio.no 2 Computer Science

More information

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design. Name: Partner(s): Lab #1 The Scientific Method Due 6/25 Objective The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

More information

CS177 Python Programming

CS177 Python Programming CS177 Python Programming Recitation 1 Introduction Adapted from John Zelle s Book Slides 1 Course Instructors Dr. Elisha Sacks E-mail: eps@purdue.edu Ruby Tahboub (Course Coordinator) E-mail: rtahboub@purdue.edu

More information

Learning Microsoft Office Excel

Learning Microsoft Office Excel A Correlation and Narrative Brief of Learning Microsoft Office Excel 2010 2012 To the Tennessee for Tennessee for TEXTBOOK NARRATIVE FOR THE STATE OF TENNESEE Student Edition with CD-ROM (ISBN: 9780135112106)

More information

A method to teach or reinforce concepts of restriction enzymes, RFLPs, and gel electrophoresis. By: Heidi Hisrich of The Dork Side

A method to teach or reinforce concepts of restriction enzymes, RFLPs, and gel electrophoresis. By: Heidi Hisrich of The Dork Side A method to teach or reinforce concepts of restriction enzymes, RFLPs, and gel electrophoresis. By: Heidi Hisrich of The Dork Side My students STRUGGLE with the concepts of restriction enzymes, PCR and

More information

Data Structures and Algorithms

Data Structures and Algorithms CS 3114 Data Structures and Algorithms 1 Trinity College Library Univ. of Dublin Instructor and Course Information 2 William D McQuain Email: Office: Office Hours: wmcquain@cs.vt.edu 634 McBryde Hall see

More information

AN INTRODUCTION (2 ND ED.) (LONDON, BLOOMSBURY ACADEMIC PP. VI, 282)

AN INTRODUCTION (2 ND ED.) (LONDON, BLOOMSBURY ACADEMIC PP. VI, 282) B. PALTRIDGE, DISCOURSE ANALYSIS: AN INTRODUCTION (2 ND ED.) (LONDON, BLOOMSBURY ACADEMIC. 2012. PP. VI, 282) Review by Glenda Shopen _ This book is a revised edition of the author s 2006 introductory

More information

Busuu The Mobile App. Review by Musa Nushi & Homa Jenabzadeh, Introduction. 30 TESL Reporter 49 (2), pp

Busuu The Mobile App. Review by Musa Nushi & Homa Jenabzadeh, Introduction. 30 TESL Reporter 49 (2), pp 30 TESL Reporter 49 (2), pp. 30 38 Busuu The Mobile App Review by Musa Nushi & Homa Jenabzadeh, Shahid Beheshti University, Tehran, Iran Introduction Technological innovations are changing the second language

More information

Number Line Moves Dash -- 1st Grade. Michelle Eckstein

Number Line Moves Dash -- 1st Grade. Michelle Eckstein Number Line Moves Dash -- 1st Grade Michelle Eckstein Common Core Standards CCSS.MATH.CONTENT.1.NBT.C.4 Add within 100, including adding a two-digit number and a one-digit number, and adding a two-digit

More information

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers.

Focus of the Unit: Much of this unit focuses on extending previous skills of multiplication and division to multi-digit whole numbers. Approximate Time Frame: 3-4 weeks Connections to Previous Learning: In fourth grade, students fluently multiply (4-digit by 1-digit, 2-digit by 2-digit) and divide (4-digit by 1-digit) using strategies

More information

Learning Microsoft Publisher , (Weixel et al)

Learning Microsoft Publisher , (Weixel et al) Prentice Hall Learning Microsoft Publisher 2007 2008, (Weixel et al) C O R R E L A T E D T O Mississippi Curriculum Framework for Business and Computer Technology I and II BUSINESS AND COMPUTER TECHNOLOGY

More information

Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate

Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate Using Blackboard.com Software to Reach Beyond the Classroom: Intermediate NESA Conference 2007 Presenter: Barbara Dent Educational Technology Training Specialist Thomas Jefferson High School for Science

More information

Approved Foreign Language Courses

Approved Foreign Language Courses University of California, Berkeley 1 Approved Foreign Language Courses Approved Foreign Language Courses To find a language, look in the Title column first; many subject codes do not match the language

More information

Dublin City Schools Career and College Ready Academies FAQ. General

Dublin City Schools Career and College Ready Academies FAQ. General Dublin City Schools Career and College Ready Academies FAQ General Question: Will transportation be provided to/from the academy? Available transportation will be determined after the academy enrollment

More information

Research computing Results

Research computing Results About Online Surveys Support Contact Us Online Surveys Develop, launch and analyse Web-based surveys My Surveys Create Survey My Details Account Details Account Users You are here: Research computing Results

More information

CS4491/CS 7265 BIG DATA ANALYTICS INTRODUCTION TO THE COURSE. Mingon Kang, PhD Computer Science, Kennesaw State University

CS4491/CS 7265 BIG DATA ANALYTICS INTRODUCTION TO THE COURSE. Mingon Kang, PhD Computer Science, Kennesaw State University CS4491/CS 7265 BIG DATA ANALYTICS INTRODUCTION TO THE COURSE Mingon Kang, PhD Computer Science, Kennesaw State University Self Introduction Mingon Kang, PhD Homepage: http://ksuweb.kennesaw.edu/~mkang9

More information

Parsing of part-of-speech tagged Assamese Texts

Parsing of part-of-speech tagged Assamese Texts IJCSI International Journal of Computer Science Issues, Vol. 6, No. 1, 2009 ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 28 Parsing of part-of-speech tagged Assamese Texts Mirzanur Rahman 1, Sufal

More information

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING Undergraduate Program Guide Bachelor of Science in Computer Science 2011-2012 DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING The University of Texas at Arlington 500 UTA Blvd. Engineering Research Building,

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014

EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014 EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014 Course Description The goals of this course are to: (1) formulate a mathematical model describing a physical phenomenon; (2) to discretize

More information

Ministry of Education, Republic of Palau Executive Summary

Ministry of Education, Republic of Palau Executive Summary Ministry of Education, Republic of Palau Executive Summary Student Consultant, Jasmine Han Community Partner, Edwel Ongrung I. Background Information The Ministry of Education is one of the eight ministries

More information

A systems engineering laboratory in the context of the Bologna Process

A systems engineering laboratory in the context of the Bologna Process A systems engineering laboratory in the context of the Bologna Process Matthias Kühnle, Martin Hillenbrand EWME, Budapest, 28.05.2008 Institut für Technik der Informationsverarbeitung (ITIV) Institutsleitung:

More information

Dublin City Schools Mathematics Graded Course of Study GRADE 4

Dublin City Schools Mathematics Graded Course of Study GRADE 4 I. Content Standard: Number, Number Sense and Operations Standard Students demonstrate number sense, including an understanding of number systems and reasonable estimates using paper and pencil, technology-supported

More information

LEARNER VARIABILITY AND UNIVERSAL DESIGN FOR LEARNING

LEARNER VARIABILITY AND UNIVERSAL DESIGN FOR LEARNING LEARNER VARIABILITY AND UNIVERSAL DESIGN FOR LEARNING NARRATOR: Welcome to the Universal Design for Learning series, a rich media professional development resource supporting expert teaching and learning

More information

Section V Reclassification of English Learners to Fluent English Proficient

Section V Reclassification of English Learners to Fluent English Proficient Section V Reclassification of English Learners to Fluent English Proficient Understanding Reclassification of English Learners to Fluent English Proficient Decision Guide: Reclassifying a Student from

More information

Introduction to CS 100 Overview of UK. CS September 2015

Introduction to CS 100 Overview of UK. CS September 2015 Introduction to CS 100 Overview of CS @ UK CS 100 1 September 2015 Outline CS100: Structure and Expectations Context: Organization, mission, etc. BS in CS Degree Program Department Locations Our Faculty

More information

Android App Development for Beginners

Android App Development for Beginners Description Android App Development for Beginners DEVELOP ANDROID APPLICATIONS Learning basics skills and all you need to know to make successful Android Apps. This course is designed for students who

More information

Fashion Design Program Articulation

Fashion Design Program Articulation Memorandum of Understanding (206-207) Los Angeles City College This document is intended both as a memorandum of understanding for college counselors and as a guide for students transferring into Woodbury

More information

content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks

content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks content First Introductory book to cover CAPM First to differentiate expected and required returns First to discuss the intrinsic value of stocks presentation First timelines to explain TVM First financial

More information

Spring 2015 IET4451 Systems Simulation Course Syllabus for Traditional, Hybrid, and Online Classes

Spring 2015 IET4451 Systems Simulation Course Syllabus for Traditional, Hybrid, and Online Classes Spring 2015 IET4451 Systems Simulation Course Syllabus for Traditional, Hybrid, and Online Classes Instructor: Dr. Gregory L. Wiles Email Address: Use D2L e-mail, or secondly gwiles@spsu.edu Office: M

More information

A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems

A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems John TIONG Yeun Siew Centre for Research in Pedagogy and Practice, National Institute of Education, Nanyang Technological

More information

Berlitz Swedish-English Dictionary (Berlitz Bilingual Dictionaries) By Berlitz Guides

Berlitz Swedish-English Dictionary (Berlitz Bilingual Dictionaries) By Berlitz Guides Berlitz Swedish-English Dictionary (Berlitz Bilingual Dictionaries) By Berlitz Guides If searching for a ebook by Berlitz Guides Berlitz Swedish-English Dictionary (Berlitz Bilingual Dictionaries) in pdf

More information

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography THE UNIVERSITY OF SYDNEY Semester 2, 2017 Information Sheet for MATH2068/2988 Number Theory and Cryptography Websites: It is important that you check the following webpages regularly. Intermediate Mathematics

More information

CENTRAL MAINE COMMUNITY COLLEGE Introduction to Computer Applications BCA ; FALL 2011

CENTRAL MAINE COMMUNITY COLLEGE Introduction to Computer Applications BCA ; FALL 2011 CENTRAL MAINE COMMUNITY COLLEGE Introduction to Computer Applications BCA 120-03; FALL 2011 Instructor: Mrs. Linda Cameron Cell Phone: 207-446-5232 E-Mail: LCAMERON@CMCC.EDU Course Description This is

More information

School of Innovative Technologies and Engineering

School of Innovative Technologies and Engineering School of Innovative Technologies and Engineering Department of Applied Mathematical Sciences Proficiency Course in MATLAB COURSE DOCUMENT VERSION 1.0 PCMv1.0 July 2012 University of Technology, Mauritius

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

Algebra Nation and Computer Science for MS Initiatives. Marla Davis, Ph.D. NBCT Office of Secondary Education

Algebra Nation and Computer Science for MS Initiatives. Marla Davis, Ph.D. NBCT Office of Secondary Education Algebra Nation and Computer Science for MS Initiatives Marla Davis, Ph.D. NBCT Office of Secondary Education METIS Conference July 21-23, 2017 Jackson Convention Center Algebra Nation 1 Algebra Nation:

More information

Mandarin Lexical Tone Recognition: The Gating Paradigm

Mandarin Lexical Tone Recognition: The Gating Paradigm Kansas Working Papers in Linguistics, Vol. 0 (008), p. 8 Abstract Mandarin Lexical Tone Recognition: The Gating Paradigm Yuwen Lai and Jie Zhang University of Kansas Research on spoken word recognition

More information

Administrative Services Manager Information Guide

Administrative Services Manager Information Guide Administrative Services Manager Information Guide What to Expect on the Structured Interview July 2017 Jefferson County Commission Human Resources Department Recruitment and Selection Division Table of

More information

CS 1103 Computer Science I Honors. Fall Instructor Muller. Syllabus

CS 1103 Computer Science I Honors. Fall Instructor Muller. Syllabus CS 1103 Computer Science I Honors Fall 2016 Instructor Muller Syllabus Welcome to CS1103. This course is an introduction to the art and science of computer programming and to some of the fundamental concepts

More information

Open Source Mobile Learning: Mobile Linux Applications By Lee Chao

Open Source Mobile Learning: Mobile Linux Applications By Lee Chao Open Source Mobile Learning: Mobile Linux Applications By Lee Chao If searching for the ebook by Lee Chao Open Source Mobile Learning: Mobile Linux Applications in pdf format, in that case you come on

More information

Specification of the Verity Learning Companion and Self-Assessment Tool

Specification of the Verity Learning Companion and Self-Assessment Tool Specification of the Verity Learning Companion and Self-Assessment Tool Sergiu Dascalu* Daniela Saru** Ryan Simpson* Justin Bradley* Eva Sarwar* Joohoon Oh* * Department of Computer Science ** Dept. of

More information

IAT 888: Metacreation Machines endowed with creative behavior. Philippe Pasquier Office 565 (floor 14)

IAT 888: Metacreation Machines endowed with creative behavior. Philippe Pasquier Office 565 (floor 14) IAT 888: Metacreation Machines endowed with creative behavior Philippe Pasquier Office 565 (floor 14) pasquier@sfu.ca Outline of today's lecture A little bit about me A little bit about you What will that

More information

XXII BrainStorming Day

XXII BrainStorming Day UNIVERSITA DEGLI STUDI DI CATANIA FACOLTA DI INGEGNERIA PhD course in Electronics, Automation and Control of Complex Systems - XXV Cycle DIPARTIMENTO DI INGEGNERIA ELETTRICA ELETTRONICA E INFORMATICA XXII

More information

Tablet PCs, Interactive Teaching, and Integrative Advising Promote STEM Success

Tablet PCs, Interactive Teaching, and Integrative Advising Promote STEM Success Tablet PCs, Interactive Teaching, and Integrative Advising Promote STEM Success Ms. Cathy Lysy Dr. Carla Romney Dr. Juan Pedro Paniagua Dr. Fabian Torres-Ardila Science and Engineering Program Motivation

More information

Computer Organization I (Tietokoneen toiminta)

Computer Organization I (Tietokoneen toiminta) 581305-6 Computer Organization I (Tietokoneen toiminta) Teemu Kerola University of Helsinki Department of Computer Science Spring 2010 1 Computer Organization I Course area and goals Course learning methods

More information

Robot manipulations and development of spatial imagery

Robot manipulations and development of spatial imagery Robot manipulations and development of spatial imagery Author: Igor M. Verner, Technion Israel Institute of Technology, Haifa, 32000, ISRAEL ttrigor@tx.technion.ac.il Abstract This paper considers spatial

More information

Xinyu Tang. Education. Research Interests. Honors and Awards. Professional Experience

Xinyu Tang. Education. Research Interests. Honors and Awards. Professional Experience Xinyu Tang Parasol Laboratory Department of Computer Science Texas A&M University, TAMU 3112 College Station, TX 77843-3112 phone:(979)847-8835 fax: (979)458-0425 email: xinyut@tamu.edu url: http://parasol.tamu.edu/people/xinyut

More information

Advanced Multiprocessor Programming

Advanced Multiprocessor Programming Advanced Multiprocessor Programming Vorbesprechung Jesper Larsson Träff, Sascha Hunold traff@par. Research Group Parallel Computing Faculty of Informatics, Institute of Information Systems Vienna University

More information

Physics 270: Experimental Physics

Physics 270: Experimental Physics 2017 edition Lab Manual Physics 270 3 Physics 270: Experimental Physics Lecture: Lab: Instructor: Office: Email: Tuesdays, 2 3:50 PM Thursdays, 2 4:50 PM Dr. Uttam Manna 313C Moulton Hall umanna@ilstu.edu

More information

Postprint.

Postprint. http://www.diva-portal.org Postprint This is the accepted version of a paper presented at CLEF 2013 Conference and Labs of the Evaluation Forum Information Access Evaluation meets Multilinguality, Multimodality,

More information

University of Arizona

University of Arizona Annual Report Submission View Questionnaire (Edit) University of Arizona Annual Report Submission for the year 2009. Report has been submitted 1 times. Report was last submitted on 11/30/2009 7:12:09 PM.

More information

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 INSTRUCTOR: Julie Payne CLASS TIMES: Section 003 TR 11:10 12:30 EMAIL: julie.payne@wku.edu Section

More information

The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs. 20 April 2011

The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs. 20 April 2011 The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs 20 April 2011 Project Proposal updated based on comments received during the Public Comment period held from

More information

Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01

Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01 Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01 Introduction Although there is nothing new about the human use of persuasive strategies, web technologies usher forth a new level of

More information

Welcome to, new Master students! Dag Langmyhr head of studies

Welcome to, new Master students! Dag Langmyhr head of studies Welcome to, new Master students! Dag Langmyhr head of studies 4th term Master s degree Long thesis Short thesis Thesis Courses 3rd term 2nd term Writing seminar 1st term Meeting research groups Introduction

More information

Coral Reef Fish Survey Simulation

Coral Reef Fish Survey Simulation Your web browser (Safari 7) is out of date. For more security, comfort and Activitydevelop the best experience on this site: Update your browser Ignore Coral Reef Fish Survey Simulation How do scientists

More information

CONCEPT MAPS AS A DEVICE FOR LEARNING DATABASE CONCEPTS

CONCEPT MAPS AS A DEVICE FOR LEARNING DATABASE CONCEPTS CONCEPT MAPS AS A DEVICE FOR LEARNING DATABASE CONCEPTS Pirjo Moen Department of Computer Science P.O. Box 68 FI-00014 University of Helsinki pirjo.moen@cs.helsinki.fi http://www.cs.helsinki.fi/pirjo.moen

More information

KLI: Infer KCs from repeated assessment events. Do you know what you know? Ken Koedinger HCI & Psychology CMU Director of LearnLab

KLI: Infer KCs from repeated assessment events. Do you know what you know? Ken Koedinger HCI & Psychology CMU Director of LearnLab KLI: Infer KCs from repeated assessment events Ken Koedinger HCI & Psychology CMU Director of LearnLab Instructional events Explanation, practice, text, rule, example, teacher-student discussion Learning

More information

Advanced Multiprocessor Programming

Advanced Multiprocessor Programming Advanced Multiprocessor Programming Vorbesprechung Jesper Larsson Träff traff@par.tuwien.ac.at Research Group Parallel Computing Faculty of Informatics, Institute of Information Systems Vienna University

More information

My Identity, Your Identity: Historical Landmarks/Famous Places

My Identity, Your Identity: Historical Landmarks/Famous Places Project Name My Identity, Your Identity: Historical Landmarks/Famous Places Global Project Theme Grade/Age Level Length of Unit Heritage, Identity, & Tradition Grade 5-12 /Ages 10-19 5 weeks Unit Content

More information

have to be modeled) or isolated words. Output of the system is a grapheme-tophoneme conversion system which takes as its input the spelling of words,

have to be modeled) or isolated words. Output of the system is a grapheme-tophoneme conversion system which takes as its input the spelling of words, A Language-Independent, Data-Oriented Architecture for Grapheme-to-Phoneme Conversion Walter Daelemans and Antal van den Bosch Proceedings ESCA-IEEE speech synthesis conference, New York, September 1994

More information

Control Tutorials for MATLAB and Simulink

Control Tutorials for MATLAB and Simulink Control Tutorials for MATLAB and Simulink Last updated: 07/24/2014 Author Information Prof. Bill Messner Carnegie Mellon University Prof. Dawn Tilbury University of Michigan Asst. Prof. Rick Hill, PhD

More information

Unit: Human Impact Differentiated (Tiered) Task How Does Human Activity Impact Soil Erosion?

Unit: Human Impact Differentiated (Tiered) Task How Does Human Activity Impact Soil Erosion? The following instructional plan is part of a GaDOE collection of Unit Frameworks, Performance Tasks, examples of Student Work, and Teacher Commentary. Many more GaDOE approved instructional plans are

More information

faculty of science and engineering Appendices for the Bachelor s degree programme(s) in Astronomy

faculty of science and engineering Appendices for the Bachelor s degree programme(s) in Astronomy Appendices for the Bachelor s degree programme(s) in Astronomy 2017-2018 Appendix I Learning outcomes of the Bachelor s degree programme (Article 1.3.a) A. Generic learning outcomes Knowledge A1. Bachelor

More information

SIE: Speech Enabled Interface for E-Learning

SIE: Speech Enabled Interface for E-Learning SIE: Speech Enabled Interface for E-Learning Shikha M.Tech Student Lovely Professional University, Phagwara, Punjab INDIA ABSTRACT In today s world, e-learning is very important and popular. E- learning

More information

Knowledge based expert systems D H A N A N J A Y K A L B A N D E

Knowledge based expert systems D H A N A N J A Y K A L B A N D E Knowledge based expert systems D H A N A N J A Y K A L B A N D E What is a knowledge based system? A Knowledge Based System or a KBS is a computer program that uses artificial intelligence to solve problems

More information

University of Toronto Physics Practicals. University of Toronto Physics Practicals. University of Toronto Physics Practicals

University of Toronto Physics Practicals. University of Toronto Physics Practicals. University of Toronto Physics Practicals This is the PowerPoint of an invited talk given to the Physics Education section of the Canadian Association of Physicists annual Congress in Quebec City in July 2008 -- David Harrison, david.harrison@utoronto.ca

More information

Intermediate Computable General Equilibrium (CGE) Modelling: Online Single Country Course

Intermediate Computable General Equilibrium (CGE) Modelling: Online Single Country Course Intermediate Computable General Equilibrium (CGE) Modelling: Online Single Country Course Course Description This course is an intermediate course in practical computable general equilibrium (CGE) modelling

More information

CS Course Missive

CS Course Missive CS15 2017 Course Missive 1 Introduction 2 The Staff 3 Course Material 4 How to be Successful in CS15 5 Grading 6 Collaboration 7 Changes and Feedback 1 Introduction Welcome to CS15, Introduction to Object-Oriented

More information

2 di 7 29/06/

2 di 7 29/06/ 2 di 7 29/06/2011 9.09 Preamble The General Conference of the United Nations Educational, Scientific and Cultural Organization, meeting at Paris from 17 October 1989 to 16 November 1989 at its twenty-fifth

More information

Fundraising 101 Introduction to Autism Speaks. An Orientation for New Hires

Fundraising 101 Introduction to Autism Speaks. An Orientation for New Hires Fundraising 101 Introduction to Autism Speaks An Orientation for New Hires May 2013 Welcome to the Autism Speaks family! This guide is meant to be used as a tool to assist you in your career and not just

More information

Abdul Rahman Chik a*, Tg. Ainul Farha Tg. Abdul Rahman b

Abdul Rahman Chik a*, Tg. Ainul Farha Tg. Abdul Rahman b Available online at www.sciencedirect.com Procedia - Social and Behavioral Sciences 66 ( 2012 ) 223 231 The 8th International Language for Specific Purposes (LSP) Seminar - Aligning Theoretical Knowledge

More information

Using NVivo to Organize Literature Reviews J.J. Roth April 20, Goals of Literature Reviews

Using NVivo to Organize Literature Reviews J.J. Roth April 20, Goals of Literature Reviews Using NVivo to Organize Literature Reviews J.J. Roth April 20, 2012 Goals of Literature Reviews Literature reviews are a common feature of research in many different disciplines Literature reviews generally

More information

Case study Norway case 1

Case study Norway case 1 Case study Norway case 1 School : B (primary school) Theme: Science microorganisms Dates of lessons: March 26-27 th 2015 Age of students: 10-11 (grade 5) Data sources: Pre- and post-interview with 1 teacher

More information

Bluetooth mlearning Applications for the Classroom of the Future

Bluetooth mlearning Applications for the Classroom of the Future Bluetooth mlearning Applications for the Classroom of the Future Tracey J. Mehigan Daniel C. Doolan Sabin Tabirca University College Cork, Ireland 2007 Overview Overview Introduction Mobile Learning Bluetooth

More information

The Ohio State University. Colleges of the Arts and Sciences. Bachelor of Science Degree Requirements. The Aim of the Arts and Sciences

The Ohio State University. Colleges of the Arts and Sciences. Bachelor of Science Degree Requirements. The Aim of the Arts and Sciences The Ohio State University Colleges of the Arts and Sciences Bachelor of Science Degree Requirements Spring Quarter 2004 (May 4, 2004) The Aim of the Arts and Sciences Five colleges comprise the Colleges

More information

Shockwheat. Statistics 1, Activity 1

Shockwheat. Statistics 1, Activity 1 Statistics 1, Activity 1 Shockwheat Students require real experiences with situations involving data and with situations involving chance. They will best learn about these concepts on an intuitive or informal

More information

Business Computer Applications CGS 1100 Course Syllabus. Course Title: Course / Prefix Number CGS Business Computer Applications

Business Computer Applications CGS 1100 Course Syllabus. Course Title: Course / Prefix Number CGS Business Computer Applications Business Computer Applications CGS 10 Course Syllabus Course / Prefix Number CGS 10 CRN: 20616 Course Catalog Description: Course Title: Business Computer Applications Tuesday 6:30pm Building M Rm 118,

More information

SYRACUSE UNIVERSITY. and BELLEVUE COLLEGE

SYRACUSE UNIVERSITY. and BELLEVUE COLLEGE SYRACUSE UNIVERSITY and BELLEVUE COLLEGE Introduction This articulation agreement is developed as a tool for advisement to assist in the transferability of comparable coursework from Bellevue College to

More information

University of Hawaii at Hilo Art Department Fall Semester 2003 ART 494 Chinese and Japanese Painting

University of Hawaii at Hilo Art Department Fall Semester 2003 ART 494 Chinese and Japanese Painting University of Hawaii at Hilo Art Department Fall Semester 2003 ART 494 Chinese and Japanese Painting Instructor: Dr. Jean M. Ippolito Office Hours: Tuesdays and Thursdays 12:30-3:00 PM Office: Art Building,

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information