<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://mathorama.com/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://mathorama.com/wiki/feed.php">
        <title>APCS: AP Computer Science A @sfhs</title>
        <description></description>
        <link>https://mathorama.com/wiki/</link>
        <image rdf:resource="https://mathorama.com/wiki/lib/exe/fetch.php?media=wiki:logo.png" />
       <dc:date>2026-05-18T22:08:27+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=adding_sound_to_your_application&amp;rev=1778084268&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=start&amp;rev=1778081733&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=morsecode&amp;rev=1778006403&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=peekaboo&amp;rev=1777233382&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=peekaboo.java&amp;ns=0&amp;rev=1777233268&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=20_questions&amp;rev=1776091053&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=questions20game.java&amp;ns=0&amp;rev=1776091039&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=question.java&amp;ns=0&amp;rev=1776090986&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=questions.txt&amp;ns=0&amp;rev=1776090936&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=twentyquestionsgamegui.java&amp;ns=0&amp;rev=1776090917&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=qtr_3_exam_study_guide&amp;rev=1772815685&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?id=virtual_pet&amp;rev=1772395356&amp;do=diff"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=peteat.gif&amp;ns=0&amp;rev=1772392794&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=pethappy.gif&amp;ns=0&amp;rev=1772392701&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=binarysearch.java&amp;ns=0&amp;rev=1769635598&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=sortitout.java&amp;ns=0&amp;rev=1769635425&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=sqrt_r_1_-_r_2_.png&amp;ns=0&amp;rev=1749922538&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=reviewanalysistesterclasses.txt&amp;ns=0&amp;rev=1748403672&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=book.java&amp;ns=0&amp;rev=1748401559&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://mathorama.com/wiki/doku.php?image=grid.java&amp;ns=0&amp;rev=1736264821&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://mathorama.com/wiki/lib/exe/fetch.php?media=wiki:logo.png">
        <title>APCS: AP Computer Science A @sfhs</title>
        <link>https://mathorama.com/wiki/</link>
        <url>https://mathorama.com/wiki/lib/exe/fetch.php?media=wiki:logo.png</url>
    </image>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=adding_sound_to_your_application&amp;rev=1778084268&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-06T16:17:48+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>adding_sound_to_your_application - [Making and Editting your own sounds] </title>
        <link>https://mathorama.com/wiki/doku.php?id=adding_sound_to_your_application&amp;rev=1778084268&amp;do=diff</link>
        <description>Adding Sound to Your Application

Here is a Java method to play a short bell sound effect that is in a wav format.

You will need the file bell.wav


import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;

public void playBell() 
{
  File bellFile = new File(&quot;bell.wav&quot;);
  try 
  {
      Clip bell = AudioSystem.getClip();
      bell.open(AudioSystem.getAudioInputStream(bellFile));
      bell.start();
  } catch (Exception e) 
  {
      e.printStackTrace();
  }
		
}</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=start&amp;rev=1778081733&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-06T15:35:33+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>start - [Projects] </title>
        <link>https://mathorama.com/wiki/doku.php?id=start&amp;rev=1778081733&amp;do=diff</link>
        <description>2025 AP Comp Sci A Wiki

New (2025) Course and Exam Description used for the first time in May 2026

Summer Assignment

- See AP Comp Sci A (Summer) in Portals (Blackbaud) under Groups

Overview of the NEW 2025 Course Description

Starter Code for Old AP Questions

	*  2013 to present
		*  2003-2012

Projects

	* Starter code your own applications
	* RaspberyPi Labs</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=morsecode&amp;rev=1778006403&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-05-05T18:40:03+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>morsecode</title>
        <link>https://mathorama.com/wiki/doku.php?id=morsecode&amp;rev=1778006403&amp;do=diff</link>
        <description>Morse Coder

ToneTester

This demonstrates how to generate a morse code tone. The timing is all based on the length of the “dit”

ToneTester demonstrates how to use the javax sound
 library to generate a morse code “CQ CQ”
 which is what a HAM radio operator will
 call to seek out a conversation from
 anyone who might be able to be listening</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=peekaboo&amp;rev=1777233382&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-26T19:56:22+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>peekaboo</title>
        <link>https://mathorama.com/wiki/doku.php?id=peekaboo&amp;rev=1777233382&amp;do=diff</link>
        <description>Peek A Boo



This is a educational game or challenge that also demonstrates a timer and a KeyListener.

The user is presented with a letter to type, then disappears
They then will need to type that key.

Now try this:

	*  keep score: show how many correct and incorrect</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=peekaboo.java&amp;ns=0&amp;rev=1777233268&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-26T19:54:28+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>peekaboo.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=peekaboo.java&amp;ns=0&amp;rev=1777233268&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;peekaboo.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=20_questions&amp;rev=1776091053&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-13T14:37:33+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>20_questions</title>
        <link>https://mathorama.com/wiki/doku.php?id=20_questions&amp;rev=1776091053&amp;do=diff</link>
        <description>20 Questions Game

This is the classic game you can play in the car on a road trip.  It usually starts with One person thinking of something that is either an animal, or a mineral, or a vegetable.  The player gets 20 chances to ask a yes or no question.  Here is a video of</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=questions20game.java&amp;ns=0&amp;rev=1776091039&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-13T14:37:19+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>questions20game.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=questions20game.java&amp;ns=0&amp;rev=1776091039&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;questions20game.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=question.java&amp;ns=0&amp;rev=1776090986&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-13T14:36:26+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>question.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=question.java&amp;ns=0&amp;rev=1776090986&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;question.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=questions.txt&amp;ns=0&amp;rev=1776090936&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-13T14:35:36+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>questions.txt - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=questions.txt&amp;ns=0&amp;rev=1776090936&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/txt.svg&quot; alt=&quot;questions.txt&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=twentyquestionsgamegui.java&amp;ns=0&amp;rev=1776090917&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-13T14:35:17+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>twentyquestionsgamegui.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=twentyquestionsgamegui.java&amp;ns=0&amp;rev=1776090917&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;twentyquestionsgamegui.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=qtr_3_exam_study_guide&amp;rev=1772815685&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T16:48:05+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>qtr_3_exam_study_guide - [Preparation Suggestions] </title>
        <link>https://mathorama.com/wiki/doku.php?id=qtr_3_exam_study_guide&amp;rev=1772815685&amp;do=diff</link>
        <description>Qtr 3 Study Guide

Topics Covered

To prepare for the actual AP exam in May, we will be using several practice exams from the College Board in the next few months, starting with the Qtr 3 Exam. The AP exam in May will have two parts: 42 Multiple choice (90  minutes, worth 55% of your score) and 4 Free Response Questions (90 min worth 45% of your score). This year's AP exam is on your chromebook. This years Qtr 3 Exam will be taken on paper in three parts.  Part 1 will be on our last classduring …</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?id=virtual_pet&amp;rev=1772395356&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-01T20:02:36+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>virtual_pet - [Part C] </title>
        <link>https://mathorama.com/wiki/doku.php?id=virtual_pet&amp;rev=1772395356&amp;do=diff</link>
        <description>Virtual Pet

Example of a Virtual Pet

Activity 3


public class VirtualPet
{
  /* 
   * Activity 3
   * @author (your name)
   * @version (a version number or a date)
   * 
   * enter code for instance variables, constructor, 
   * getName, and toString methods
   * 
   **/
  public VirtualPet(String str)
  {
      
  }
  public String getName(){
      return &quot;&quot;;
  }
}</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=peteat.gif&amp;ns=0&amp;rev=1772392794&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-01T19:19:54+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>peteat.gif - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=peteat.gif&amp;ns=0&amp;rev=1772392794&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=71749b&amp;amp;media=peteat.gif&quot; alt=&quot;peteat.gif&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=pethappy.gif&amp;ns=0&amp;rev=1772392701&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-01T19:18:21+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>pethappy.gif - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=pethappy.gif&amp;ns=0&amp;rev=1772392701&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=bb0d3f&amp;amp;media=pethappy.gif&quot; alt=&quot;pethappy.gif&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=binarysearch.java&amp;ns=0&amp;rev=1769635598&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-01-28T21:26:38+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>binarysearch.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=binarysearch.java&amp;ns=0&amp;rev=1769635598&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;binarysearch.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=sortitout.java&amp;ns=0&amp;rev=1769635425&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2026-01-28T21:23:45+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>sortitout.java</title>
        <link>https://mathorama.com/wiki/doku.php?image=sortitout.java&amp;ns=0&amp;rev=1769635425&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;sortitout.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=sqrt_r_1_-_r_2_.png&amp;ns=0&amp;rev=1749922538&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2025-06-14T17:35:38+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>sqrt_r_1_-_r_2_.png - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=sqrt_r_1_-_r_2_.png&amp;ns=0&amp;rev=1749922538&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=789599&amp;amp;media=sqrt_r_1_-_r_2_.png&quot; alt=&quot;sqrt_r_1_-_r_2_.png&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=reviewanalysistesterclasses.txt&amp;ns=0&amp;rev=1748403672&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2025-05-28T03:41:12+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>reviewanalysistesterclasses.txt - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=reviewanalysistesterclasses.txt&amp;ns=0&amp;rev=1748403672&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/txt.svg&quot; alt=&quot;reviewanalysistesterclasses.txt&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=book.java&amp;ns=0&amp;rev=1748401559&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2025-05-28T03:05:59+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>book.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=book.java&amp;ns=0&amp;rev=1748401559&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;book.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://mathorama.com/wiki/doku.php?image=grid.java&amp;ns=0&amp;rev=1736264821&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2025-01-07T15:47:01+00:00</dc:date>
        <dc:creator>frchris (frchris@undisclosed.example.com)</dc:creator>
        <title>grid.java - created</title>
        <link>https://mathorama.com/wiki/doku.php?image=grid.java&amp;ns=0&amp;rev=1736264821&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://mathorama.com/wiki/lib/images/fileicons/svg/java.svg&quot; alt=&quot;grid.java&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
</rdf:RDF>
