CS1010: Programming Methodology Preparing for Practical Exam (PE)

Slides:



Advertisements
Similar presentations
Test Taking Strategies for Aviation Meteorology (AMT 220)
Advertisements

CS1010: Programming Methodology
Revision Timetables Finding time to revise. Time management Managing Time You need to gain maximum benefit from your time. Find more time and use it efficiently.
© Janice Regan Problem-Solving Process 1. State the Problem (Problem Specification) 2. Analyze the problem: outline solution requirements and design.
CSC 212 – Data Structures Prof. Matthew Hertz WTC 207D /
CS143: Programming in C++ Instructor: Dr. Yan Shi Office: 210 Ullrich Phone: Office Hour:
Study Tips for COP 4531 Ashok Srinivasan Computer Science, Florida State University Aim: To suggest learning techniques that will help you do well in this.
Grade 10 MCAS OPEN RESPONSE QUESTION SPRING 2001 Exam, #40
Homework and Test Taking BIOE 1000 – Orientation and Introduction to Bioengineering.
CS 150 PERSONAL PRODUCTIVITY USING TECHNOLOGY Instructor: Xenia Mountrouidou.
THE CORNELL NOTE TAKING SYSTEM. Step #1: Prepare Cue Column --2 Inches-- Reduce ideas: Key terms Questions Names Quotes Record Column --6 Inches-- Record.
CS1010E Programming Methodology Tutorial 1 Basic Data Type and Input/output, Characters and Problem Solving C14,A15,D11,C08,C11,A02.
CS 111 – Nov. 22 Chapter 7 Software engineering Systems analysis Commitment –Please read Section 7.4 (only pp ), Sections –Homework #2.
Open ‘The Magic PowerPoint’ (Click enable macros if asked) Click Insert Click Slides from Files Click Browse and then on your chosen ppt Tick Keep Source.
STEPS FOR MULTIPLYING A 2-DIGIT NUMBER BY ANOTHER 2-DIGIT NUMBER With Partial Products.
Developing Test Taking Skills Think ahead to get the grade.
Test Taking Strategies By: Jessica Wheatley and Katie Ward.
Expectations in a College Math Class How does taking math in college differ from taking math in high school? What is your instructor thinking?
Introduction to Methods Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 1, 2013.
Fall 2012 Professor C. Van Loan Introduction to CSE Using Matlab GUIs CS 1115.
CS1101: Programming Methodology Preparing for Practical Exam (PE)
Lab 7 – Wii remote stereoscopic vision Southern Methodist University Bryan Rodriguez.
Benefits of Study Groups & Characteristics of Successful Groups
WEEK 1 Class Activities.
Supervision Workshop for Multiple Subject Student Teachers and Interns.
CS1101: Programming Methodology Preparing for Practical Exam (PE)
Welcome and Administrative Matters Lecturer’s slides.
FACILITIES PLANNING ISE310L SESSION 1 INTRODUCTION, January 11, 2016 Geza P. Bottlik Page 1 OUTLINE Introduce instructor Homework Take roll Grades Go over.
CS1010: Programming Methodology Preparing for Practical Exam (PE)
CS1010: Programming Methodology
Course Information and Introductions Intro to Computer Science CS1510 Dr. Sarah Diesburg University of Northern Iowa 1.
Diagramming Assistance. If you are having difficulty… First, refer to your class notes. Every part of speech we have diagrammed thus far has been demonstrated.
BELL RINGER What would the polynomial equation be if the zeroes were -2, -2, and 4?
Final Exam Practicing session 1 (under time constraints) (TOPIC: Capital Budgeting) Fall FINC 5000 Week 6 Get Ready! For a Practicing Experience.
WEEK 1 Class Activities.
CS140 – Computer Programming 1 Course Overview First Semester – Fall /1438 – 2016/2017 CS140 - Computer Programming 11.
ETH 557 Complete Class To purchase this material link Complete-Class-Guide For more courses visit our website.
IST256 : Applications Programming for Information Systems
OUTLINE Introduce instructor Introduce the TA Introduce yourselves
Course Information and Introductions
COP-3530 Data Structures and Algorithms Midterm I
Test Taking.
Course Information and Introductions
English Language Component 1 – 20th Century Literature
CS1010 Programming Methodology
C #include <stdio.h> int main() { printf ("hello class\n");
Click on the assignment you wish to complete
Buy Skin Lightening Cream UK | Everything4you
Testing Tips for ACT.
We’ll be spending minutes talking about Quiz 1 that you’ll be taking at the next class session before you take the Gateway Quiz today.
We’ll be spending a few minutes talking about Quiz 2 on Sections that you’ll be taking the next class session, before you work on Practice Quiz.
Roadmap to Programming work, right, fast KISS
Video 2: Holistic Scoring
Comp1202: Building Better Programs
A Guide to Dr. Young’s CS331 Project Report Writing
WEEK 1 FOUNDATION.
WEEK 1 HIGHER.
Study successfully in Sweden
COP-3530 Data Structures and Algorithms Midterm I
It’s Time for a Break!!!.
Who Wants to be an Equationaire?. Who Wants to be an Equationaire?
Welcome to Physics 1D03 !.
OUTLINE Introduce instructor Introduce the TA Introduce yourselves
1. Essay topics are based on one of the AP exam prompts-Options are on this week’s blog. Print selection to attach to your essay 2. Be sure, with this.
Past Paper Friday You wouldn’t take your driving test without practising in the car first!!? Would you? Make sure you go into your exams having practised.
Summarise Check your working. What are you trying to find out?
Computational Thinking
Quiz: Computational Thinking
BIT 142:Programming & Data Structures in C#
Digital Literacies for learning
Presentation transcript:

CS1010: Programming Methodology Preparing for Practical Exam (PE) http://www.comp.nus.edu.sg/~cs1010/3_ca/pe.html

Important Notes (1/2) Have you been practising? In a simulated test environment? Manage your time well. Read the instructions carefully. Refer to CS1010 website: http://www.comp.nus.edu.sg/~cs1010/3_ca/pe.html Read the questions carefully! When in doubt, ask. Do not start coding right away. Spend first 10 – 15 on thinking and writing the algorithm first. We will not allow any coding in the first 10 minutes of PE1. Check that your algorithm works before you start coding. CS1010: Preparing for PE

Important Notes (2/2) If the problem seems hard, simplify it, break it into smaller sub-problems. In the worst case, solve a simplified version. A partial program is better than no program. Save your program from time to time. Make sure that your programs can be compiled! Practise Incremental Coding (which I have demonstrated during week 4 lecture) Test your programs thoroughly with your own test data. You programs will be graded not only on correctness, but also on style and design. CS1010: Preparing for PE