My Individual Feature
My feature is a search bar built into the website’s frontend. It’s a handy tool that allows users to search for specific topics or keywords within our database of posts and questions. Users simply type their search query into the bar, hit enter, and the magic happens. The frontend sends the query to the backend, which sifts through all the posts to find matches. These matching posts are then neatly displayed, making it effortless for users to locate relevant content without sorting through unnecessary information. It’s a straightforward yet impactful feature that boosts the usability of our application.
Trimester 2 Review
This trimester, I've gained a solid understanding of handling HTTP requests and implementing complex algorithms. It's been a steep learning curve, but each coding session has been an opportunity to grow. I'm proud of the progress I've made and the skills I've developed. Moving forward, I'm eager to tackle new challenges and continue expanding my knowledge in coding. Me and my group collaborated very well with one another and I have learned lots from them. Overall, it's been a fulfilling trimester of growth and discovery.
Table with explination of code above that satifies collegeboard requirements:
College Board | Me | ||||||
---|---|---|---|---|---|---|---|
Instructions for input from one of the following: the user, a device, an online data stream, a file. | Users input search queries into the search bar to find relevant content within the chat interface. This input is typically in the form of keywords or phrases related to the information they are seeking. Users may also interact with the search bar via device input such as typing on a keyboard or tapping on a touchscreen. | ||||||
Use of at least one list (or other collection type) to represent a collection of data that is stored and used to manage program complexity and help fulfill the user's purpose. | The search functionality relies on collections of data to perform its task efficiently. These collections may include a list of all chat messages, a list of user-generated questions, and responses, or a structured database containing user information and chat history. The search algorithm scans through these collections to identify matches based on the user's input, returning relevant results to the user's search query. | ||||||
At least one procedure that contributed to the program’s intended purpose where you have defined: the name, return type, one or more parameters. | An algorithm that includes sequencing, selection, and iteration that is in the body of the selected procedure. |
Calls to your student-developed procedure. |
Instructions for output (tactile, audible, visual, or ) based on input and program functionality. |
|