Computer Science is a course taught by Mrs. Tarrico. We first start off with designing, developing our own websites (which you are on right now!). We then are responsible for maintaining these websites through this year and next. We also focus on object-oriented programming, where we explore different methodologies to attack computational thinking. We have to learn to apply problem-solving skills and perseverance to tackle tough problems and bugs.
This is a code in Java that takes informational input from the user, marital status as well as income, to calculate the federal taxes the user owes. This was done using if then statements based on the users input.
The Sieve of Eratosthenes is an ancient algorithm employed to find all prime numbers up to a certain limit. This is done by systematically eliminating all multiples of each prime number, starting with 2, which results in only prime numbers remaining. We did this using array lists: we found a prime within the list, looping through the array list while removing all multiples of this prime.