CS1010: Programming Methodology Preparing for Practical Exam (PE)

Slides:



Advertisements
Similar presentations
The Reading paper Some things to remember. Read the questions carefully You will be asked to: Find answers to straightforward questions; Deduce and infer.
Advertisements

Lord of the Flies Exam Technique
Test Taking Strategies for Aviation Meteorology (AMT 220)
Problem Solving and Algorithm Design
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, CMPT 102, Sept CMPT 102 Introduction to Scientific Computer Programming The software development method algorithms.
© 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 /
6-1 Problem Solving Problem solving is the act of finding a solution to a perplexing, distressing, vexing, or unsettled question.
1 Focusing on the FCAT/FCAT 2.0 Test-Taking Strategies Grades 3-5 Nancy E. Brito, Department of Assessment , PX47521.
1 Focusing on the FCAT/FCAT 2.0 Test-Taking Strategies Grades 9-11 Nancy E. Brito, Department of Assessment , PX47521.
C OMPUTER P ROGRAMMING 1 Introduction to Programming.
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.
Abstraction IS 101Y/CMSC 101 Computational Thinking and Design Tuesday, September 17, 2013 Carolyn Seaman University of Maryland, Baltimore County.
Course Information and Introductions Intro to Computer Science CS1510 Dr. Sarah Diesburg University of Northern Iowa 1.
CS 150 PERSONAL PRODUCTIVITY USING TECHNOLOGY Instructor: Xenia Mountrouidou.
1 Focusing on the FCAT Test-Taking Strategies Grades 3-5 Nancy E. Brito, Department of Assessment , PX47521 Information.
Problem Solving and Algorithm Design. 2 Problem Solving Problem solving The act of finding a solution to a perplexing, distressing, vexing, or unsettled.
Introduction Open Response Question from MCAS Exam 2001, Grade 10 #22 The following is an “Open Response” question. It is important to practice these types.
Program Development Life Cycle (PDLC)
Preparing for the test Be rested and comfortable. Learn ahead of time where and when it will be held, and what materials to bring. Arrive early to avoid.
CodeCrunch (CS1020 AY2014/5 Sem 2) Getting Started.
CS 1308 Computer Literacy and The Internet Software.
CS1010E Programming Methodology Tutorial 1 Basic Data Type and Input/output, Characters and Problem Solving C14,A15,D11,C08,C11,A02.
BRING YOUR CALCULATOR How to revise for Maths BRING YOUR CALCULATOR.
CSC Programming for Science Lecture 16: Debugging.
CS 111 – Nov. 22 Chapter 7 Software engineering Systems analysis Commitment –Please read Section 7.4 (only pp ), Sections –Homework #2.
AP Computer Science Programming Conventions. Why coding conventions? 80% of the lifetime cost of a piece of software goes to maintenance. Hardly any.
STEPS FOR MULTIPLYING A 2-DIGIT NUMBER BY ANOTHER 2-DIGIT NUMBER With Partial Products.
OPEN RESPONSE QUESTION FROM MCAS SPRING 2004, GRADE 10, #17 The following is an “Open Response” question. It is important to practice these types of questions.
Test Taking Strategies By: Jessica Wheatley and Katie Ward.
CS 108 Computing Fundamentals Notes for Tuesday, February 24, 2015.
Partial Quotient Method In this division algorithm the children record on the right side of the problem. The first thing they do is divide. They ask themselves.
CSC 213 – Large Scale Programming Prof. Matthew Hertz WTC 207D /
Introduction to Methods Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 1, 2013.
CS1101: Programming Methodology Preparing for Practical Exam (PE)
Becoming a Successful college student By: Kristi Kile.
1 Focusing on the FCAT Test-Taking Strategies Grades 6-8 Nancy E. Brito, Department of Assessment , PX47521
1 Focusing on the FCAT Test-Taking Strategies Grades 9-11 Nancy E. Brito, Department of Assessment , PX47521
WEEK 1 Class Activities.
CS1101: Programming Methodology Preparing for Practical Exam (PE)
Ways to act like a computer scientist. Be curious Look at different menus Run code to see what happens Check the effects of different settings Answer.
Efficiently Solving Computer Programming Problems Doncho Minkov Telerik Corporation Technical Trainer.
Compilers and Interpreters
Course Information and Introductions Intro to Computer Science CS1510 Dr. Sarah Diesburg University of Northern Iowa 1.
Problem Solving.  Similar to Solving Math Word Problem  Read the Problem  Decide how to go about Solving the Problem  Solve the Problem  Test the.
COMP 103 Exam Tips. 2 The Exam (Example) answer all questions manage your time Dumb calculators & non- electronic dictionaries are OK.
CMSC 104, Version 8/061L16IncrementalProg.ppt Incremental Programming Topics Review of Incremental Programming Example of Incremental Programming Reading.
WEEK 1 Class Activities.
 Programming methodology: ◦ is a process of developing programs that involves strategically dividing important tasks into functions to be utilized by.
A Guide to Dr. Young’s CS331 Project Report Writing
Searching and Sorting Algorithms
English Language Component 1 – 20th Century Literature
CS1010 Programming Methodology
C #include <stdio.h> int main() { printf ("hello class\n");
CS1010: Programming Methodology Preparing for Practical Exam (PE)
You have 10 minutes to prepare for your groups’ presentation
A Guide to Dr. Young’s CS331 Project Report Writing
Problem Solving and Algorithm Design
Who Wants to be an Equationaire?. Who Wants to be an Equationaire?
Seating “chart” Front Back 4 rows 5 rows 5 rows 2 rows 4 rows 2 rows
Summarise Check your working. What are you trying to find out?
Computational Thinking
Breaking Factors into Smaller Factors
Quiz: Computational Thinking
Breaking Each Number Into Its Place Value
If the two arrows represent the integers 2 and 3…
Math Giants (but still in sixth grade)!
Presentation transcript:

CS1010: Programming Methodology Preparing for Practical Exam (PE)

CS1010: Preparing for PE2 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: 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. Check that your algorithm works before you start coding.

CS1010: Preparing for PE3 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. Make sure that your programs can be compiled! Code incrementally. Test your programs thoroughly with your own test data. You programs will be graded not only on correctness, but also on style and design.