Improving learning outcomes for first year introductory programming students
|
|
|
- Darrell Bridges
- 10 years ago
- Views:
Transcription
1 Improving learning outcomes for first year introductory programming students Sven Venema School of Information and Communication Technology, Griffith University, Brisbane, Australia Abstract Andrew Rock School of Information and Communication Technology, Griffith University, Brisbane, Australia The first year transition to university can be particularly difficult for students in technical degree programmes such as Information Technology (IT). These programmes are generally acknowledged to have high attrition rates. It has been suggested that poor understanding of threshold concepts in introductory computer programming courses may be partly responsible for this attrition. The current project attempts to improve student learning outcomes for the computer assignment threshold concept. To achieve this outcome, an innovative visualisation application was developed and incorporated into the curriculum of a first semester first year introductory programming course. Substantially improved student learning outcomes were observed after its successful deployment. Subsequent tracking indicates the innovation continues to successfully scaffold student learning of the computer assignment threshold concept. Introduction The first year transition to university can be particularly difficult for students in technical degree programmes such as Information Technology (IT) which are generally acknowledged to have high attrition rates, around 30-50% (Denning & McGettrick, 2005). It has been suggested by Ma, Ferguson, Roper, and Wood (2007) that these attrition rates are most likely due to poor performance in first year introductory programming courses. The technical nature of these introductory programming courses can lead to distinct difficulties in understanding. One established way of considering these sorts of difficulties is Perkins' (1999) notion of troublesome knowledge. Meyer and Land (2005) argue that the defining characteristics of this knowledge are that it is counter-intuitive, conceptually difficult, and alien. They also suggest that this type of troublesome knowledge forms a gateway through which a more advanced way of thinking about a topic area can be developed. These gateway concepts are now widely referred to as threshold concepts (Meyer & Land, 2005). Since the early 2000's educators have become increasingly concerned regarding the level of competence of students undertaking introductory computer programming courses that are typically undertaken in the first year of an IT degree programme. In 2001, the McCracken group (McCracken et al., 2001) reported on a multi-national, multi-institutional study of assessment of computer programming skills of first year computer science students. The 1
2 study was carried out at 8 higher education institutions in the United States of America, Australia, Israel, Wales, England, and Poland. The project aimed to assess the computer programming skills of undergraduate students after completing one or two courses in computer programming. The outcomes of this investigation indicated that most students performed well below expectations on problems that "students in any type of Computer Science programme should be able to solve" (McCracken et al., 2001, p. 128). One striking result from this investigation was an average score of for a test that was scored out of 110. Lister et al. (2004) led another group of educators who examined first year introductory programming courses from 12 educational institutions including Australia, England, the United States of America, Finland, New Zealand, Sweden, Denmark, and Wales. They found that many of the students in their study were weak at analysing and predicting the outcome of short Java computer code fragments. They suggested that rather than being weak at problem solving, these students "have a fragile grasp of both basic programming principles and the ability to systematically carry out routine programming tasks, such as tracing (or desk checking ) through code." (Lister et al., 2004) In 2006, Dehnadi suggested that another possible explanation for poor performance in first year programming courses could be related to lack of facility with the computer assignment threshold concept (Dehnadi, 2006). An example of a computer assignment statement written in the Java programming language as used by Dehnadi is given in (1). (1) int a = 10; int b = 20; a = b; Given (1), a = b (read as a is assigned b), so a now has the value 20, and b would retain its value of 20. Dehnadi subsequently developed and made available a set of multiple choice test questions based on computer assignment and more complex questions involving assignment and sequencing of operations, see (2). (2) int a = 5; int b = 3; int c = 7; a = c; b = a; c = b; Given (2), the sequence of assignments is important; a = c (a is now 7, c remains 7); b = a (a remains 7, b is now 7); c = b (c is now 7, b remains 7). In 2008, Bornat et al. (Bornat, Dehnadi, & Simon, 2008) investigated whether this threshold concept could be used as a predictor for success in first year introductory programming courses. After six experiments involving more than 500 students at six institutions across three countries they determined that the Dehnadi test questions were not predictive of successful performance in first year introductory programming courses. However, the types of questions on the test do provide a simple way of determining whether students understand assignment and sequencing concepts. 2
3 Ford and Venema (2010) used the Dehnadi test questions at an Australia metropolitan university to determine whether students who have passed a first year introductory programming course (P1) had achieved an understanding of the computer assignment threshold concept. The Dehnadi test proved a useful tool in identifying that many students who had passed P1 could not consistently answer correctly questions related to computer assignment. In fact, despite passing P1, only 49.55% of the students in that study correctly answered 10 or more out of 12 questions on the test. This poor performance prompted an intervention in the P1 course in subsequent offerings leading to improved learning outcomes for students. The remainder of this paper is organised as follows. First the details of a programming course (P1) are discussed and a threshold concept is identified. Next an intervention is described that can be used to successfully target the threshold concept and improve associated learning outcomes. This is followed by an outline of the research methodology and a discussion of the findings. Final remarks conclude the paper and indicate how this approach could be used in a wider context. The Programming Course (P1) The first year, first semester introductory programming course (P1) has undergone many changes over the years. Currently, the course uses LEGO MINDSTORMS NXT robots to allow students to solve physical real-world problems. In addition, only a small subset of the Java programming language is introduced to the students in this first introductory programming course. The subset language uses only valid Java syntax and is called MaSH (Making Stuff Happen). MaSH includes everything except for user defined classes and allows students to remove unnecessary complexity until it is required. This has the effect of reducing cognitive load through the reduction of irrelevant information. MaSH allows the beginning student to gradually introduce complexity as needed and to focus only on the requirements of the problem without becoming bogged down by the complexity of the language. The course materials include a special compiler mashc that has been developed in-house. The compiler converts the MaSH source code into its equivalent legal Java source code so that it can be executed by the user, on any system that can run Java. MaSH also presents limited versions of other Java Application Programming Interfaces (APIs), making it easier to find methods to use in various programming environments, such as a PC or a robot. This has the effect of further reducing the amount of detail that a student faces at any given time, consequently reducing the cognitive load. Environments are defined by substitution rules that may be developed by any instructor which allows for further technologies targeted at improving learning to be added into the student workflow as required. Students taking the course are required to attend a 2 hour lecture, a 1 hour workshop, and a 2 hour laboratory session per week. The assessment of the course has moved away from the traditional assignment and final examination model and focuses instead on ten weekly 5% laboratory exercises totalling 40%, five in-lecture 5% multiple choice quizzes totalling 25%, and a final 35% capstone project incorporating the key learning objectives in the course. P1 covers programming concepts, problem solving and design, implementation using a subset of the Java programming language, and using programming tools and environments (including MaSH). Programming examples are discussed and worked through in lectures and students apply the concepts in the weekly laboratory sessions as well as in a weekly one hour group workshop. 3
4 An example of the type of program worked through in the lectures and workshops (this example from week 4 of the 13 week course) is given in (3). (3) import console; print("how much is the loan for ($)? "); double amount = readdouble(); print("what is the annual interest rate (%)? "); double annualrate = readdouble(); print("how many months? "); int months = readint(); double rate = annualrate/(12*100); double repayment = amount*rate/(1.0-pow((1.0+rate),-months)); double totalinterest = months*repayment-amount; println("monthly repayment = $"+repayment); println("total interest = $"+totalinterest); In (3) note the MaSH subset of standard Java statements. For example: print("how much is the loan for (?$)?"); simplifies the standard print statement System.out.print("How much is the loan for (?$)?");. Reading an integer from the keyboard, as in int months = readint() reduces the standard way of reading integers in Java from multiple lines down to a single statement. By week 7 of the course, programs begin to require encapsulation with methods, but not classes. The intervention One of the difficulties that programmers face, particularly those just beginning, is that it is not possible to see inside the machine. When a sequence of statements needs to be traced through, as in the Dehnadi questions (Dehnadi, 2006), the student has to step through the sequence of assignments and keep track of the values associated with each variable in order to determine the outcome. This is usually done in the student s working memory and may incur significant cognitive load even for simple sequences of assignments. Recall that Lister (Lister et al., 2004) identified tracing through a program as a key weakness of beginning programming students. We posit that this weakness is in part due to the cognitive load requirements of this activity and that student learning outcomes may improve by providing assistance targeted at reducing this cognitive load. Enabling the beginning student to visualise the internal state of the machine, that is, keep track of the variables and their values as well as the current statement to be executed next, would reduce the demand on working memory and thereby reduce the overall cognitive load. By seeing the statements and their impact on the internal state of the machine, the learner can focus on the problem at hand rather than the newly learnt rules for solving the problem. Sweller (1999) refers to this source of cognitive load as problem solving load. A second source of cognitive load identified by Sweller (1999) is referred to as split attention. This type of cognitive load occurs when tracing through a program by having to remember the current values of all variables whilst focusing on the current statement which is changing those values. To reduce both the problem solving and split attention cognitive load whilst tracing through a computer program, the PC programming environment was extended in-house to provide a visual trace and debugging window. The application displays, in real time, both the contents 4
5 of the variables and how those contents change for each statement in a program as it is executed by the student. As part of the intervention, the visualisation application was incorporated into the P1 curriculum as a tool for students to get a better sense of the internal workings of their programs, particularly as it relates to sequences of assignments. Students can use the visualisation software as they execute their program via a single alternate command instead of the standard Java compile command. Figure 1 illustrates a simple program in this environment. Figure 1 Visualisation of a sequence of assignment statements. In Figure 1, the window on the left shows the program source code (the blue arrow indicates the line of code that is just about to be executed). The source code consists of an import statement to gather all the required resources required by the program to compile and execute, two variable assignments, and a single statement assigning the contents of variable b to variable a. The window on the right shows the variables currently residing in memory and their contents. Programs with methods and therefore different scopes show local variables and parameters being added and removed from the stack, another threshold concept. Note that the blue arrow is before the a = b assignment statement indicating that this statement has yet to execute. Hence, the values of 3 and 5 for variables a and b, respectively. Students can step through the program a single statement at a time at various speeds from slow to fast as well as run the program normally. The right window is updated each step and always reflects the current internal state of the machine. This allows the learner to access all relevant information at the same time, reducing cognitive load. In addition to developing the visualisation software, in Semester 2, 2010, all course material related to assignment was reviewed and examples the visualisation software was integrated into the content. Walkthroughs and additional exercises were also developed for use in workshops and students were trained in the use of the software. However, use of the software was not made mandatory in Semester 2, 2010 due to it being used for the first time that semester. After a successful trial in Semester 1, 2010, use of the visualisation software became mandatory in Semester 1,
6 In order to verify whether the intervention led to an improvement in student learning outcomes related to computer assignment, the two questions detailed above were embedded in the assessments from Semester 2, 2010 onwards. The next section details the methodology used to verify the effectiveness of the innovation. Methodology Participants Students enrolled at one of the metropolitan campuses of the university where P1 was taught were given two questions related to assignment (see the section detailing the questions below) during the in-lecture quizzes that formed part of the normal assessment regime for the course. The experiment was conducted over 5 semesters from second semester 2010 through second semester The number of participants per question per semester of the experiment is shown in Table 1. Q1 Q2 Semester 2, Semester 1, Semester 2, Semester 1, Semester 2, Table 1: The number of participants per question per semester of the experiment. Procedure Each quiz was given under examination conditions in a 30 minute time slot. Question 1 was given immediately after the concept had been introduced in Quiz 2 held in week 5 of semester. Question 2 was given towards the end of semester in week 12 as part of the final Quiz number 5. The second author taught the P1 course over all 5 semesters and administered the quizzes. Marking of the quizzes was carried out electronically. Each of the two questions is outlined in the next section. The Questions The following sections show the two questions given as part of the experiment. Question 1 Figure 2 shows Questions 2. This question was given immediately after the concept of assignment was introduced in week 5. 6
7 Figure 2 Question 1 Question 2 Figure 3 shows Question 2. This question was given in week 12 as part of the final Quiz. This question is essentially the same as question 1 but adds the concept of variable scope. Results Figure 3 Question 2 Students in each of the 5 offerings of P1 were marked either correct or incorrect for each of the 2 questions. The percentage of students who correctly answered each question per semester is shown in Table 2. 7
8 Q1 % correct Q2 % correct Semester 2, Semester 1, Semester 2, Semester 1, Semester 2, Table 2: percentage of students who correctly answered each question per semester. Discussion Recall that, prior to the intervention, 49.55% of P1 students could not consistently answer the above questions correctly. Table 2 shows that in Semester 2, 2010, when the visualisation software had been introduced in a non-mandatory trial capacity, initially only 21% of students could answer Question 1 correctly. Also recall that Question 1 was given immediately after the concept of assignment had been introduced. The number of correct responses improved to 35% for Question 2 by week 12. Whilst there was a small improvement, it was noted that uptake of the new visualisation software was low and that this could reduce the effectiveness of the intervention. To improve its uptake, use of the visualisation software was made mandatory and further integrated into the laboratory exercises, workshop activities, and lectures in Semester 1, After this change initially only 28% of students in Semester 1, 2011 could answer Question 1 correctly. This is a slight improvement over the previous offering and could be due to early adoption of the visualisation software. However, the number of students who could answer Question 2 correctly in week 12 jumped markedly to 71%. This is a strong indicator that the curriculum enhancements, in particular the mandatory use of the visualisation software have a positive effect on student learning outcomes. From Semester 2, 2011 onwards, almost half the students could answer Question 1 correctly in Week 5. It is likely that the improvement for Question 1 is due to the early use of the visualisation software in lectures, workshops, and laboratories when first presenting the concept. Since Semester 1, 2011, the percentage of correct responses for Question 2 in week 12 has stayed at around 70% and is further indication that the intervention has improved the learning outcomes related to computer assignment for the majority of P1 students. In this case, the problem faced by students is directly related to the underlying technology with which they interact. Therefore it is legitimate to consider adjusting the technology as part of the educational design. Conclusion Today's Information Technology educators are under increasing pressure to improve learning outcomes for first year students in introductory programming courses. We present an innovative visualisation tool that assists students in reducing the cognitive load associated with tracing through a computer program. Use of this tool has been demonstrated to improve learning outcomes of a threshold concept related to computer assignment for students undertaking an introductory programming course. We believe that this tool, and its associated reduction of student cognitive load, could also be used successfully to improve student learning outcomes in other programming related activities. 8
9 The general principle espoused in this paper is the reduction of cognitive load using an appropriate technological intervention. Despite the success of the intervention discussed in this paper, cognitive load is still an issue in many areas of technology education and further work in adjusting the technology as part of the educational design is recommended. References Bornat, R., Dehnadi, S., & Simon. (2008). Mental models, consistency and programming aptitude Proceedings10th Australasian Computing Education Conference (ACE2008) (pp ). Wollongong, Australia,. Dehnadi, S. (2006). Testing programming aptitude Proceedings of the 18th Annual Workshop of the Psychology of Programming Interest Group (pp ). Brighton, England. Denning, P. J., & McGettrick, A. (2005). Recentering computer science. Communications of the ACM, 48, Ford, M., & Venema, S. (2010). Assessing the Success of an Introductory Programming Course. Journal of Information Technology Education, 9, Lister, R., Adams, E. S., Fitzgerald, S., Fone, W., Hamer, J., Lindholm, M.,... Thomas, L. (2004). A multi-national study of reading and tracing skills in novice programmers. ACM SIGCSE Bulletin, 36(4), Ma, L., Ferguson, J., Roper, M., & Wood, M. (2007). Investigating the viability of mental models held by novice programmers. Paper presented at the Proceedings of the 38th SIGCSE Technical Symposium on Computer Science Education, Covington. McCracken, M., Kolikant, Y., Almstrum, V., Laxer, C., Diaz, D., Thomas, L.,... Wilusz, T. (2001). A multinational, multi-institutional study of assessment of programming skills of first-year CS students.. ACM SIGCSE Bulletin, 33(4), Meyer, J. H. F., & Land, R. (2005). Threshold concepts and troublesome knowledge (2): Epistemological considerations and a conceptual framework for teaching and learning. Higher Education, 49, Perkins, D. (1999). The many faces of constructivism. Educational Leadership, 57(3), Sweller, J. (1999). Instructional Design in Technical Areas. Camberwell, Australia: ACER Press. 9
1001ICT Introduction To Programming Lecture Notes
1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 3 A First MaSH Program In this section we will describe a very
Simulated learners in peers assessment for introductory programming courses
Simulated learners in peers assessment for introductory programming courses Alexandre de Andrade Barbosa 1,3 and Evandro de Barros Costa 2,3 1 Federal University of Alagoas - Arapiraca Campus, Arapiraca
IMPROVING STUDENTS FOCUS IN INTRODUCTORY PROGRAMMING COURSES
DAAAM INTERNATIONAL SCIENTIFIC BOOK 2015 pp. 165-172 Chapter 15 IMPROVING STUDENTS FOCUS IN INTRODUCTORY PROGRAMMING COURSES KONECKI, M. Abstract: Introductory programming courses struggle with low passing
Rethinking the First Year Programming Course
Rethinking the First Year Programming Course William David Lubitz Assistant Professor, School of Engineering, University of Guelph [email protected] Abstract The use of microcontrollers in beginning
GAME: A Generic Automated Marking Environment for Programming Assessment
GAME: A Generic Automated Marking Environment for Programming Assessment Michael Blumenstein, Steve Green, Ann Nguyen and Vallipuram Muthukkumarasamy School of Information Technology, Griffith University
Use of Simulator in Teaching Introductory Computer Engineering*
Int. J. Engng Ed. Vol. 15, No. 5, pp. 353±357, 1999 0949-149X/91 $3.00+0.00 Printed in Great Britain. # 1999 TEMPUS Publications. Use of Simulator in Teaching Introductory Computer Engineering* DAVID EDWARDS
PROBLEMS IN PROGRAMMING EDUCATION AND MEANS OF THEIR IMPROVEMENT
DAAAM INTERNATIONAL SCIENTIFIC BOOK 2014 pp. 459-470 Chapter 37 PROBLEMS IN PROGRAMMING EDUCATION AND MEANS OF THEIR IMPROVEMENT KONECKI, M. Abstract: Programming courses are very important and challenging
Incorporation of an online tutoring tool into programming courses. Abstract
Incorporation of an online tutoring tool into programming courses Ozgur Aktunc Engineering Department St. Mary s University [email protected] Abstract One of the challenges growing institutions face
Using Visual Logic with Pseudocode to Teach an Introductory Programming Course
Using Visual Logic with Pseudocode to Teach an Introductory Programming Course G. Cooper, PhD Engineering and Information Sciences, Devry University, Downers Grove, IL, USA Abstract - Introductory programming
A Categorization of Novice Programmers: A Cluster Analysis Study
A Categorization of Novice Programmers: A Cluster Analysis Study Essi Lahtinen Tampere University of Technology Institute of Software Systems Tampere, Finland [email protected] Abstract. Beginning software
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
Difficulties Facing Students in Learning Computer Programming Skills at Tabuk University
Difficulties Facing Students in Learning Computer Programming Skills at Tabuk University MAHMOUD M. MHASHI AND ALI M. ALAKEEL Department of Computer Science Faculty of Computers and Information Technology
LEARNING OBJECTS FOR JAVA PROGRAMMING LANGUAGE
LEARNING OBJECTS FOR JAVA PROGRAMMING LANGUAGE Ion MIERLUS MAZILU Department of Mathematics and Computer Science Technical University of Civil Engineering, Bucharest B-ul. Lacul Tei, Nr. 122-124, Sector
Program Visualization for Programming Education Case of Jeliot 3
Program Visualization for Programming Education Case of Jeliot 3 Roman Bednarik, Andrés Moreno, Niko Myller Department of Computer Science University of Joensuu [email protected] Abstract:
PRECALCULUS WITH INTERNET-BASED PARALLEL REVIEW
PRECALCULUS WITH INTERNET-BASED PARALLEL REVIEW Rafael MARTÍNEZ-PLANELL Daniel MCGEE Deborah MOORE Keith WAYLAND Yuri ROJAS University of Puerto Rico at Mayagüez PO Box 9018, Mayagüez, PR 00681 e-mail:
DESIGNING WEB LABS FOR TEACHING SECURITY CONCEPTS ABSTRACT
DESIGNING WEB LABS FOR TEACHING SECURITY CONCEPTS ABSTRACT Security education is critical in today s cyber threat environment. Many schools have investigated different approaches to teaching fundamental
How to Support Students Computational Thinking Skills in Educational Robotics Activities
How to Support Students Computational Thinking Skills in Educational Robotics Activities.. Soumela Atmatzidou, Stavros Demetriadis Department of Informatics, Aristotle University of Thessaloniki, Greece
Introducing Software Engineering to the Freshman Student
Introducing Software Engineering to the Freshman Student Yi Liu, Wei Wang and Onyeka Ezenwoye Department of Electrical Engineering and Computer Science South Dakota State University Brookings, SD 57007
Training and Development (T & D): Introduction and Overview
Training and Development (T & D): Introduction and Overview Recommended textbook. Goldstein I. L. & Ford K. (2002) Training in Organizations: Needs assessment, Development and Evaluation (4 th Edn.). Belmont:
Student Preferences for Learning College Algebra in a Web Enhanced Environment
Abstract Student Preferences for Learning College Algebra in a Web Enhanced Environment Laura Pyzdrowski West Virginia University Anthony Pyzdrowski California University of Pennsylvania It is important
A simple time-management tool for students online learning activities
A simple time-management tool for students online learning activities Michael de Raadt Department of Mathematics and Computing and Centre for Research in Transformative Pedagogies University of Southern
Robotics for distance learning: a case study from a UK masters programme
Robotics for distance learning: a case study from a UK masters programme Jenny Carter De Montfort University The Gateway Leicester LE1 9BH [email protected] http://www.cse.dmu.ac.uk/msccir/ Simon Coupland
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]
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
What is independent learning and what are the benefits for students?
What is independent learning and what are the benefits for students? Author(s): Bill Meyer, Naomi Haywood, Darshan Sachdev and Sally Faraday Publisher: London: Department for Children, Schools and Families
Student Quick Start Guide
Student Quick Start Guide Copyright 2012, Blackboard Inc. Student Quick Start Guide 1 Part 1: Requesting Enrollment and Accessing the Course 1.1 1.2 1.3 Accepting a Course Invitation and Accessing the
Felix B. Tan <[email protected]> and Hazel Chan The University of Auckland, New Zealand. Introduction ABSTRACT
0(14/+0) %+'0%' 1.7/' E 1 E #..X EMMK Managing Self-instructed Learning within the IS Curriculum: Teaching Learners to Learn Felix B. Tan and Hazel Chan The University of Auckland,
Structure of Presentation. The Role of Programming in Informatics Curricula. Concepts of Informatics 2. Concepts of Informatics 1
The Role of Programming in Informatics Curricula A. J. Cowling Department of Computer Science University of Sheffield Structure of Presentation Introduction The problem, and the key concepts. Dimensions
Guided Debugging Practices of Game Based Programming for Novice Programmers
Guided Debugging Practices of Game Based Programming for Novice Programmers Chiung-Fang Chiu and Hsing-Yi Huang Abstract The objective of this study is to use game based programming to facilitate the teaching
The Effectiveness of Games as Assignments in an Introductory Programming Course
The Effectiveness of Games as Assignments in an Introductory Programming Course Abstract - Computer games are an often cited motivational tool used as assignments in introductory programming courses. This
How To Accredit A Psychology Program At The University Of Melbourne
1 APAC Accreditation Assessment Summary Report Higher Education Provider Name of the Psychology Academic Organisational Unit (AOU) University of Melbourne Melbourne School of Psychological Sciences Date
Masters in Project Management. Evening and weekend degree programmes for career professionals
Masters in Project Management Evening and weekend degree programmes for career professionals www.qa.com/executiveeducation 0845 074 7967 executiveeducation @qa.com welcome In today s sophisticated business
Academic Program Review SUMMARY* Department under review: Computer Science. Date self-study received in Dean s office: November 21, 2013
Academic Program Review SUMMARY* Department under review: Computer Science Date self-study received in Dean s office: November 21, 2013 Date of external consultant s review: November 2013 Date APR received
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course Yong Cheon Kim, Dai Young Kwon, and Won Gyu Lee Abstract Computational thinking is a fundamental skill for
Masifunde. Developing an online study skills course as a free resource for first generation university entrants in southern Africa
Masifunde. Developing an online study skills course as a free resource for first generation university entrants in southern Africa T.D. Wyatt, Oxford University, Oxford, UK [email protected]
ASSEMBLY PROGRAMMING ON A VIRTUAL COMPUTER
ASSEMBLY PROGRAMMING ON A VIRTUAL COMPUTER Pierre A. von Kaenel Mathematics and Computer Science Department Skidmore College Saratoga Springs, NY 12866 (518) 580-5292 [email protected] ABSTRACT This paper
1. Responsive Website Basics: Code with HTML, CSS and JavaScript 2. Responsive Web Design
Massive Open Online Courses (MOOCs): Goldsmiths 1. Responsive Website Basics: Code with HTML, CSS and JavaScript 2. Responsive Web Design As part of a MOOCs specialisation: Responsive website development
Applying GQM Approach towards Development of Criterion-Referenced Assessment Model for OO Programming Courses
Applying G Approach towards Development of Criterion-Referenced Assessment odel for OO Programming Courses Norazlina Khamis, Sufian Idris, and Rodina Ahmad Abstract The most influential programming paradigm
Introduction to Embedded Systems. Software Update Problem
Introduction to Embedded Systems CS/ECE 6780/5780 Al Davis logistics minor Today s topics: more software development issues 1 CS 5780 Software Update Problem Lab machines work let us know if they don t
Development of a Tablet-PC-based System to Increase Instructor-Student Classroom Interactions and Student Learning
Development of a Tablet-PC-based System to Increase Instructor-Student Classroom Interactions and Student Learning Kimberle Koile David Singer MIT CS and AI Lab MIT Dept of Brain and Cognitive Science
Course Syllabus. COSC 1437 Programming Fundamentals II. Revision Date: August 21, 2013
Course Syllabus COSC 1437 Programming Fundamentals II Revision Date: August 21, 2013 Catalog Description: This course contains further applications of programming techniques in the C++ programming language.
Game Programming for Complex System Development and ABET Accreditation Assessment
Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 00 (2014) 000 000 www.elsevier.com/locate/procedia INTE 2014 Game Programming for Complex System Development
- a literature study for developing visualizations in the Codewitz-Minerva project
PROBLEMS IN LEARNING AND TEACHING PROGRAMMING - a literature study for developing visualizations in the Codewitz-Minerva project Kirsti Ala-Mutka, Institute of Software Systems, Tampere University of Technology,
PAPER 1 THE SCHOOL COUNSELLING WORKFORCE IN NSW GOVERNMENT SCHOOLS
PAPER 1 THE SCHOOL COUNSELLING WORKFORCE IN NSW GOVERNMENT SCHOOLS Introduction This paper describes the current school counselling service within the Department of Education and Communities (the Department)
Performance and progression of first year ICT students
Performance and progression of first year ICT students Judy Sheard, Angela Carbone, Selby Markham, A J Hurst, Des Casey, Chris Avram Caulfield School of Information Technology Faculty of Information Technology
Functional Modelling in secondary schools using spreadsheets
Functional Modelling in secondary schools using spreadsheets Peter Hubwieser Techn. Universität München Institut für Informatik Boltzmannstr. 3, 85748 Garching [email protected] http://ddi.in.tum.de
Examining Science and Engineering Students Attitudes Toward Computer Science
Examining Science and Engineering Students Attitudes Toward Computer Science Abstract Concerns have been raised with respect to the recent decline in enrollment in undergraduate computer science majors.
CITI Training: Accessing CITI for Initial or Additional Training
CITI Training: Accessing CITI for Initial or Additional Training MIT utilizes the CITI program for four types of training: Ethical Use of Human Subjects in Research (IRB) Responsible Conduct of Research
Recommended Action Members of the Learning, Teaching and Assessment Sub-committee are invited to
Massive Open Online Courses (MOOCs): London Business School Brand Management: Aligning Business, Brand and Behaviour Purpose Members of the Learning, Teaching and Assessment Sub-committee (LTAS) are invited
REFLECTIONS ON LEARNING THEORIES IN INSTRUCTIONAL DESIGN 1
REFLECTIONS ON LEARNING THEORIES IN INSTRUCTIONAL DESIGN 1 Reflections on the Learning Theories in the Instructional Design Process for the Utah Valley University Digital Media Portfolio Review Acceptance
The Learn-Verified Full Stack Web Development Program
The Learn-Verified Full Stack Web Development Program Overview This online program will prepare you for a career in web development by providing you with the baseline skills and experience necessary to
Chapter 4: Chemistry delivering to Agriculture students
Chapter 4: Chemistry delivering to Agriculture students Background There are four undergraduate Agriculture degree programs that require students to take chemistry in the first year of study, as illustrated
Causes of Failure of Students in Computer Programming Courses: The Teacher Learner Perspective
Causes of Failure of Students in Computer Programming Courses: The Teacher Learner Perspective Kofi Adu-Manu Sarpong Valley View University P.O. Box AF 595 Adentan-Accra, Ghana John Kingsley Arthur Valley
Animating Programs and Students in the Laboratory
Animating Programs and Students in the Laboratory James F. Korsh Paul S. LaFollette, Jr. Department of Computer and Information Sciences Temple University Philadelphia, PA 19122 Raghvinder Sangwan Department
Title: Transforming a traditional lecture-based course to online and hybrid models of learning
Title: Transforming a traditional lecture-based course to online and hybrid models of learning Author: Susan Marshall, Lecturer, Psychology Department, Dole Human Development Center, University of Kansas.
PGCert/PGDip/MA Education PGDip/Masters in Teaching and Learning (MTL) Programme Specifications
PGCert/PGDip/MA Education PGDip/Masters in Teaching and Learning (MTL) Programme Specifications Faculty of Education, Law and Social Sciences School of Education December 2011 Programme Specification PG
Learner and Information Characteristics in the Design of Powerful Learning Environments
APPLIED COGNITIVE PSYCHOLOGY Appl. Cognit. Psychol. 20: 281 285 (2006) Published online in Wiley InterScience (www.interscience.wiley.com) DOI: 10.1002/acp.1244 Learner and Information Characteristics
Concept-Mapping Software: How effective is the learning tool in an online learning environment?
Concept-Mapping Software: How effective is the learning tool in an online learning environment? Online learning environments address the educational objectives by putting the learner at the center of the
RECEPTIVENESS OF EDUCATIONAL MULTIMEDIA TOOLS IN COMPUTER PROGRAMMING EDUCATION
RECEPTIVENESS OF EDUCATIONAL MULTIMEDIA TOOLS IN COMPUTER PROGRAMMING EDUCATION Nouf Albarakati 1, Ibrahim Albidewi 2 1,2 College of Computer Science and Information Technology King Abdul Aziz University
Developing Base Ten Understanding: Working with Tens, The Difference Between Numbers, Doubling, Tripling, Splitting, Sharing & Scaling Up
Developing Base Ten Understanding: Working with Tens, The Difference Between Numbers, Doubling, Tripling, Splitting, Sharing & Scaling Up James Brickwedde Project for Elementary Mathematics [email protected]
CS 1361-D10: Computer Science I
CS 1361-D10: Computer Science I Instructor Name: Lopamudra Roychoudhuri Instructor Phone Number: (325) 486-5448 Instructor email: [email protected] Instructor Office: MCS 205E Class Times: Online,
Teaching large lecture classes online: Reflections on engaging 200 students on Blackboard and Facebook
Teaching large lecture classes online: Reflections on engaging 200 students on Blackboard and Facebook By Marcus Messner, Ph.D. Assistant Professor, VCU School of Mass Communications VCU Online Learning
Computer Science CATALOG 2014/2015 BINUS UNIVERSITY
Computer Science Vision To become a leading and world class Computer Science School that is reputable and excellent in teaching and research, in order to keep relevant with the needs of the global industry
Case Based Scenarios: Evidence Based Teaching Learning Strategy in Nursing Education Pharmacology Course
International Journal of Nursing December 2014, Vol. 1, No. 2, pp. 147-154 ISSN 2373-7662 (Print) 2373-7670 (Online) Copyright The Author(s). 2014. All Rights Reserved. Published by American Research Institute
Admissions Requirements Standard qualifications for admission to the course are one of the following:
PROGRAMME SPECIFICATION PROGRAMME SPECIFICATION Course record information Name and level of final award: Name and level of intermediate awards: Awarding body/institution: Status of awarding body/institution:
School of Education. Postgraduate Certificate of Education. Pre-Course Primary Experience Booklet
School of Education Postgraduate Certificate of Education Pre-Course Primary Experience Booklet Pre-Course Primary Experience Booklet Contents Page Introduction 3 PGCE Students Writing about Primary Experience
