Open isabelle926 opened 8 months ago
GRADING:
Isabelle did a good job of explaining her FRQs - she was concise and to the point and understood all the key algorithms. Her associations were solid, and for the 2D arrays where there was not necessarily an implementation in her current project, she explained how she could implement one in the future for a feature.
CODE: 3.6/3.6 FRQ ASSOCIATION: 3.6/3.6
FRQ 1:
The first FRQ focused on 1D arrays, 2D arrays, and ArrayLists. Concepts that are tested in this FRQ can be seen when examining the Person.java class:
During the creation of the object, an ArrayList is assigned to the "roles" field so that it can store PersonRole objects. Since the ArrayList is stored as a collection it will be able to store multiple user roles. In our project, we have not yet implemented the different roles that a user can have, but this is a good baseline that we will utilize in Trimester 3.
For my project in particular, which involves dividing users into job-posters, job-seekers, and mentors, ArrayLists would be helpful for determining which user can interact with which functionality.
FRQ 2:
This FRQ was mainly about classes and subtopics dealt with accessing methods within the classes and iteration, among other things. Once again, the PersonRole.java class is very useful in showcasing this:
For my project, I created a unique user class which shows whether a user is online or not so that they can be shown on our interview page. To do this, I created a method within the signup function that automatically changed the user's status to online upon registering and whenever they logged in, and in the future I will have a method that will change the user's status to offline after closing the tab or signing out.
FRQ 3
This FRQ was mainly about 2D arrays as well as method and control structures. This can be implemented into our group's final project since one of our plans for the future is to list jobs based on user's interests. Using a 2D array would be crucial for this because a feature that uses this could include showing jobs based on a user's education level or known coding languages.
FRQ 4
This FRQ was also about classes, more specifically with interfacing with classes. Our project currently uses a KNN algorithm to search for relevant users for people who are posting jobs:
Overall Reflection:
Not only did doing the FRQ practice exams help me prepare for the AP exam, it also showed me how many of the topics which are tested on the AP exam are also relevant in constructing fully functional backends for websites and how applicable these skills are in the real world