Programming Assignment 6 – Programming Workflow
Due Tuesday November 9 10:00pm Pacific Time
PA6 – Programming Workflow
This PA will give you an opportunity to reflect on how you work through programs.
Submission checklist:
[ ]
PDF to Gradescope assignmentPA6-notes
[ ]
Two code files for completed tasks toPA6
Different assignments in this course have different collaboration policies. On this assignment, you cannnot collaborate with anyone. Your submission must be your own work and you cannot share or post code from your submission anywhere other than to hand in the assignment.
You can get a fresh repository with run
and tester.jar
here:
https://github.com/ucsd-cse11-s20/pa6
There are no checkoffs for PA6, though you are welcome to come for help.
FAQ
-
You only need to finish/submit 2 of the 4 tasks, and PA6 assignment on Gradescope is due on the same day as PA6-notes ().
-
Q: In
AveragePositives.java
, is the number of values that we average over all the numbers passed as command line arguments or just the positive numbers?- A: We are only considering positive numbers. So for both the total and the count they should only be of the positive numbers.
Task
Make a copy of this Google Doc. You will fill it in as you work.
Your task is to complete two of the following programs of your choice, and also complete a reflection while you are working.
When you’re ready to start programming, set a timer for 20 minutes – work on these tasks for that much time. Then, take a screenshot or copy/paste (a) your code and (b) the output of the most recent time you ran the program. It’s totally fine if running your code is producing errors at this point, the idea is just to take notes on progress.
Put that output into the Google Doc at the 20 minute mark, and write down a few sentences about your thought process at this point. Also note if you got distracted by another browser tab, your phone, etc during that 20 minutes. You don’t have to tell us how, just say yes/no and how many minutes you think you were distracted for.
When you work again, set another 20 minute timer and work for that time, then repeat taking notes. Then do this one more time, for a total of three 20 minute sessions each followed by note-taking.
If you don’t finish the task, still stop after the three sessions and put the notes for the reflection in place (it’s not expected that you must finish in 60 minutes, though you do have to finish, see below). If you finish early, note the time you finished.
The tasks, which you should complete two of, are here:
-
In a file called
AveragePositives.java
, write a classAveragePositives
with amain
method that expects all the command-line arguments to be appropriate inputs toDouble.parseDouble
. It should print the average (mean) of the command-line arguments that, when parsed as doubles, are strictly greater than 0. If there are no numbers that are greater than 0, it should produce 0.Try out at least six different uses of
AveragePositives
at the command line with different lists of numbers that convince you it works for all of the important cases. Include a screenshot or copy/paste of what you tried in your document. -
In a file called
PairSelect.java
, add a classPair
with fieldsa
andb
of typeint
(add a constructor to initalize those fields). In a class calledPairSelect
, write a methodgetAs
that takes an array ofPair
and returns an array ofint
that contains thea
field of all thePair
s in the array given as an argument. Write at least 4checkExpect
tests for it to cover interesting cases. Include a screenshot or copy/paste of the tests in your document. -
In a file called
LongStrings.java
, write a class calledLongStrings
with a method calledlongStrings
that takes an array ofString
and an integern
and produces a new array ofString
s that are just the strings in the array that have lengthn
or greater (the returned array might be shorter than the input array). Write at least 4checkExpect
tests for it to cover interesting cases. Include a screenshot or copy/paste of the tests in your document. -
Copy the
Point
class from lecture into a new file calledClosestPoints.java
. Write a class calledClosestPoints
with amain
method that expects to get six command line arguments, representing the x and y coordinates of three points. For example:$ java ClosestPoints 0 0 3 4 3 900
Would represent the points (0, 0), (3, 4), and (3, 900). Your program should print out the pair of points that are closest to one another out of the three points, using the format below:
$ java ClosestPoints 0 0 3 4 3 900 The closest points are (0, 0) and (3, 4) at distance 5.0
Try out at least 6 different uses of the command line, and include a screenshot or copy/paste of what you tried in your document.
Reflection
After you’re done with all three sessions (not necessarily the whole assignment), reflect on the following:
- Where did you spend the most time? You might have different descriptions,
some I can think of that I spend a lot of time on are below; you might have
others.
- Thinking about a particular part of the program
- Understanding an error message
- Figuring out why a particular test wasn’t working
- Typing
- What could you do to reduce the time taken in the future?
- How did this process compare to how you usually complete PAs?
- Overall, what did you learn from this experience about your programming workflow, if anything?
Some comments on this process: this may not be the ideal way for you to work. Sometimes I get a lot of “programming” done while walking my dog, and sometimes setting a problem down for a while and coming back to it is the best thing. You might be working on a day where other urgent obligations interrupt you every 5 minutes. Sometimes you may need to focus really hard for several hours to make any progress. So I don’t expect that you can or should always follow this process. However, doing it once might give you a useful scaffolding strategy, and it does help you understand how your time management and focus works while you’re programming, where you got stuck, etc. So for that reason I think this is a really useful exercise.
We are grading this on general completeness and effort; there’s no minimum or maximum word limit, or required format, or need to answer every question comprehensively. Complete the assignment in the spirit of reflection and learning about your programming workflow.
Finishing
You must finish two of these programs as part of the assignment. There is an autograder you can use to check your work while the assignment is out. Come ask for help in tutor hours (help sessions) if you need help finishing them! We do ask that you spend at least one 30-minute session with notes before coming to help sessions on PA6, and we might ask to see your notes for a sense of your progress when you come.
Submission
Export your notes document as a PDF using Google Docs (under the File menu).
You’ll hand it in under the PA6-notes
assignment on Gradescope.
You’ll hand in the two .java
files with your completed tasks to the
PA6
assignment on Gradescope.
Challenges and Extra Practice
If you want more practice or an extra challenge, try writing the programs below. These are not for credit, but feel free to ask us about them on Piazza if you found them interesting!
- Make
ClosestPoints
work for any number of points input on the command line. - Write a method
zip
that takes two arrays ofint
that have the same length and produces an array ofPair
where thePair
’sa
andb
fields are the values in the corresponding index in the first and second providedint
array. - Write a method
unzip
that takes an array ofPair
and returns two arrays, one containing thea
elements and one containing theb
elements. Decide how to represent the return value yourself.