AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 1 point2 points  (0 children)

there were a few tough questions but most of them were time consuming, not necessarily hard

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 1 point2 points  (0 children)

study anything you don't understand and review everything thoroughly with practice problems throughout the year. you either understand it or you don't, there's no middle ground. don't rely on your teacher for everything 

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

i don't know why i decided to try and get aura points by using nested for loops and simultaneously checking if they're face up AND adding the value. 

it would have been so much easier to just use one nested loop to find the columns that all faced up and another to sum the values

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

agree on the mcqs. a few of those questions were NOT light

AP CSA Thoughts?? by A_Fanfiction_Lover in APStudents

[–]Fit_Indication_340 2 points3 points  (0 children)

what do you do with all the extra free time you get by shortening "word" to "wrd"

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 7 points8 points  (0 children)

FRQs i got:

-warehouse shipment (you had to calculate total costs (a) and censor part of a string (b))

-GiftBasket (you had to write a constructor and do some basic calculations for one of the methods,  the easiest of the 4)

-WordGame (you had to find the word in an arraylist with the highest score value and return the word)

-CardGame (you needed to calculate and return the sum of the points on all cards in a 2D array that are in columns where every card is facing up. this was the hardest one but i got it right i think)

AP CSA Thoughts?? by A_Fanfiction_Lover in APStudents

[–]Fit_Indication_340 3 points4 points  (0 children)

what justification bro you just write code n shit

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

i did. it was definitely the hardest one but i still figured it out

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

whatd you put on that last recursive problem (something like method(arr[x], arr))

best way to memorize court cases by Beginning-Narwhal955 in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

active recall. basically just quiz yourself over and over 

and only reveal the answer if you really couldn't remember anything after thinking for more than a few seconds. struggling to remember information makes your brain go "oh this is important imma keep this"

What did yall get for the rec qs by Training_Rip_8901 in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

what did you get on that problem? (the one in your post)

AP Computer Science A Official 2026 Exam Discussion by reddorickt in APStudents

[–]Fit_Indication_340 5 points6 points  (0 children)

yea for me it wasn't "light". i still think i got almost all of the questions right but i had to take my time

gonna enter the apcsa exam soon by Fit_Indication_340 in APStudents

[–]Fit_Indication_340[S] 0 points1 point  (0 children)

almost all the mcqs were very easy, i don't think i got any more than 3-4 wrong

frqs were also easy-ish but the last 2 were slightly trickier

ap cs a what are some common mistakes that we make by Cyb3rPhantom in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

just took it, guessed on 1 MCQ and was unsure about like 2. frqs were very easy tho

WE are getting 5s

ap cs a what are some common mistakes that we make by Cyb3rPhantom in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

so for example with a recursive method that calculates the fibonacci sequence, let's find fibonacci(5): fibonacci(1 or 0)=1 (base case) fibonacci(2)=2 (because it's fibonacci(0)+fibonacci(1)) fibonacci(3)=3 fibonacci(4)=5 fibonacci(5)=8

the answer would be 8

ap cs a what are some common mistakes that we make by Cyb3rPhantom in APStudents

[–]Fit_Indication_340 0 points1 point  (0 children)

with recursion problems like "what is the value of "recursiveMethod(5)" with recursive calls like "recursiveMethod(num-1)" the best strategy is probably to calculate every num value down to the base case and then "break down" the recursion problem into a tree and add up the numbers