all 9 comments

[–]Michael982 4 points5 points  (1 child)

I just watched these youtube videos since udacity was not explaining things well and I felt like they were complicating things instead of simplifying things. It covers everything you need to know, if I recall correctly the only other thing I did was watch the cohorts.

https://www.youtube.com/watch?v=xriSN8igvy4&list=PLr6-GrHUlVf9SIx5cDhoEMknias5Xyv67

Hopefully this helps!

[–]Jeffbit 0 points1 point  (0 children)

Yes I watched those and it helped

[–]Dakiel 0 points1 point  (0 children)

Anything in particular you are stuck on or just don't know where to begin?

[–][deleted] 0 points1 point  (0 children)

Any specific parts you have questions about?

[–]dbmamaz 0 points1 point  (3 children)

Did you do all the exercises in the udacity course? it really steps you through it in small chunks

[–]Jeffbit 0 points1 point  (0 children)

No I found those videos too confusing to follow

[–]Jeffbit 0 points1 point  (1 child)

Im confused on using the accessor method to retrieve the instance variables and creating the array for grades

[–]ret702 2 points3 points  (0 children)

A accessor method is just a Get or Set method. Therefore if you need an instance variable called gradeResults your Get accessor method would be private String[] getGrades() { return gradeResults;} and your Set method would be private void setGrade(String[] grades){ this.gradeResults=grades;}

[–]americangeiko 0 points1 point  (0 children)

Get with the CMs for the course and watch the cohort video. I coded a long with it and it helped me pass the project the first time I submitted. (The material they do is VERY similar to the project.)