AP Free Response Strategies

Slides:



Advertisements
Similar presentations
Test Taking Strategies
Advertisements

ACT English Assessment Strategies for Success. English-- one 45-minute section with 75 English Questions I. Usage /Mechanics Punctuation Punctuation Grammar.
CSC 160 Computer Programming for Non-Majors Lecture #7: Variables Revisited Prof. Adam M. Wittenstein
Ch 2.5 – Multiplication of Real Numbers
Ch 7.1 – Solving Linear Systems by Graphing
Solving Algebraic Equations
AP English Language & Composition Exam Review
AP Bio Free Response Section 2 long Essays : 20 min each -Include multiple parts a, b, c, d 6 Short Essay Questions: 6 min each 90 minutes total after.
AP Study Guide Test on May 10, Outline of the AP Biology Exam: 100 multiple choice in 80 minutes= 60% of test 4 Free Response Essay Questions in.
Exam Tips. 1. There are lots of questions on the paper, if you can’t do one don’t panic.
Programming for Beginners Martin Nelson Elizabeth FitzGerald Lecture 5: Software Design & Testing; Revision Session.
Making Decisions uCode: October Review What are the differences between: o BlueJ o Java Computer objects represent some thing or idea in the real.
For additional study information go to:
Algebra – Solving Systems of Linear Inequalities Objective: Students will solve systems of linear inequalities by graphing.
BELL RINGER At 2:30 pm, Brian’s home was burglarized while he was at work. His wife yells at him because she said he should have taken the day off, gotten.
Mr/Ms Period ---- Class. Take a couple of minutes and write down a couple of sentences explaining what Science means to you.
AP Exam Development and Grading The AP Physics exams are developed by a committee of high school and college physics faculty After the exams are administered,
Part I – 50% of grade  40 Multiple Choice Questions  90 Minutes  Obviously minutes per question.  Do the EASY ones FIRST!
The ACT Test General Tips for Taking the ACT. Feel Confident! Know what to expect – and now you will! Think positively and focus on what you can do. Feeling.
Tips for taking the FCAT.
Test Taking Strategies
Plus: Exam Scoring How is it done. How many questions are there
Tips for Taking the Paper-Based FSA ELA Reading Assessments
Ch 3.3 – Solving Multi-Step Equations
Mr. Bernstein AP Exams 2017 April 2017
A guide to scoring well on Free Response Questions
IST256 : Applications Programming for Information Systems
Introducing Instructions
© 2013 McGraw-Hill Companies. All Rights Reserved.
CSC 221: Computer Programming I Spring 2010
Steps to scoring higher on an FRQ for AP Psych.
Strategies for AP FRQs.
How to show what you know!
CMSC202 Computer Science II for Majors Lecture 08 – Overloaded Constructors Dr. Katherine Gibson Based on slides by Chris Marron at UMBC.
Paper 1 Exam Technique: How to structure your answers and use your time! Mr. Guiney’s Guide to success. As you only have 60 minutes, plus 5 minutes reading.
Foundations of Programming: Introduction to Programming
ENGLISH TEST 45 Minutes – 75 Questions
Writing a Free Response Essay For the APES Exam
Tips for Taking the Paper-Based FSA ELA Reading Assessments
Tips for Taking the Paper-Based FSA ELA Reading Assessments
Tips for Taking the Paper-Based FSA ELA Reading Assessments
A few more tips for APCSA
ACT English Assessment
Do Now: How do you learn best. Do you like to look at pictures
Tips for taking the FCAT.
The Art of Taking Tests:
Writing Methods AP Computer Science A.
Tips for Taking the Paper-Based FSA ELA Reading Assessments
Ap Physics 1 Exam Tips.
Arithmetic Expressions & Data Conversions
6-8 Learning Community Smarter Balance Test Strategies
Test Tips Preparing for exam day.
Solving Multi-Step Equations
Software Development Process
Exam Study Strategies that REALLY Work!
Writing a Free Response Essay
An Introduction to Debugging
AP Computer Science A 2/6/2018.
AP Test Hints!!!.
Tips for taking the FCAT.
Reading Strategies and Techniques
Test Taking Strategies
Steps to scoring higher on an FRQ for AP Psych.
How to Successfully Prepare for Your EXAMS
Arithmetic Expressions & Data Conversions
A.P. LANGUAGE AND COMP EXAM
Mistakes in writing a research paper
A strategy to help you learn for the long term
Constructing a Test We now know what makes a good question:
Presentation transcript:

AP Free Response Strategies Organize Alpha by First Name

Learning Objectives Review with a couple of Dry Runs Incorporate best practices in solving FRQs. Practice solving FRQs

Dry Run Dry run give for each of the following I. a = 5, b = 6, c = 7 if (a < b) { if (b < c) if (c < 10) System.out.println("one") } else if (c < a) System.out.println("two") else if (c < a) System.out.println("three") System.out.println("four") Dry Run   Dry run give for each of the following I. a = 5, b = 6, c = 7 II. a = 8, b = 7, c = 6 III. a = 10, b = 20, c = 30

Dry Run String phrase = "Here is the word"; int psn = phrase.indexOf("e"); while (psn >= 0) { System.out.print(psn + " "); phrase = phrase.substring(psn + 1); psn = phrase.indexOf("e"); }

Free Response Questions Best Practices Next we will take a look at some suggestions for attacking AP Free Response Questions

Read the Questions Carefully The questions are usually presented in three ways: a paragraph, through code, or with an example. As you read, underline the tasks you need to accomplish as well as the variables and methods you have at your disposal. It’s important to read through preconditions and postconditions so that you’re aware of what you can expect to be true at the start of writing a method and what must be true at the conclusion of the method. Also consider the method headers carefully: they can be used to identify the parameters available to write the solution and type for the return value. While examples provide guidance and clarity in a question, avoid writing code that only suits those examples.

Answer the Question you’re most confident about Determine which questions you feel most prepared to answer. Then you can start to solve the questions in a sequence that allows you to perform your best.

Keep and Eye on Your Time Monitor your time carefully. Make sure not to spend too much time on any one question so that you have enough time to answer all of them. If you do work that you think is incorrect, simply put an “X” through it instead of spending time erasing it completely: crossed-out work won’t be graded.

Try to Solve All Parts of a Question Many free-response questions are divided into parts such as (a), (b), and (c), with each part requiring a different response. Credit for each part is awarded independently, so you should attempt to solve each part. For example, you may receive no credit for your answer to part (a), but still receive full credit for part (b), or (c). If the answer to a later part of a question depends on the answer to an earlier part, you may still be able to receive full credit for the later part, even if that earlier answer is wrong.

Be Organized and Clear in Your Programming Organize, indent, assign meaningful variable names, and write neatly. Take the time to plan out your solution before beginning to write code. When writing your solution, leave room between lines of code in case you need to insert something you forgot. And remember that comments are not a substitute for correct code!

Only Use Classes Given To You Tor The Exam Avoid using classes that aren't specifically given to you as part of the exam and aren’t part of the AP Java subset. While you may have developed or used other classes in your AP course (such as Date or Sort), don't use them in your responses on the exam. The Quick Reference guide (.pdf/49.4KB) gives the classes and methods that are part of the AP Java subset.

Practice Answering free-response questions from previous AP Exams is a great way to practice: it allows you to compare your own responses with those that have already been evaluated and scored. Free-response questions and scoring guidelines are available on the Exam Practice page for AP Computer Science A.

Summary Read the Questions Carefully Answer the Question you’re most confident about Keep and Eye on Your Time Try to Solve All Parts of a Question Be Organized and Clear in Your Programming Only Use Classes Given To You Tor The Exam Practice