top of page

ACTIVITIES

Pencil Code

Pencil Code is an software developed for CS programmers to learn the fundamentals of coding. From Google programmers to AP CS students, Pencil Code offers a variety of languages and concepts to master.

​​

See the file below on the right for instructions. Make sure you have an account set up on pencilcode.net before proceeding. The pdf on the right has an ultimate challenge. I would highly recommend completing the ultimate challenge prior to learning other languages of kool kode.

HTML

HTML is the foundation of all web pages. Without HTML, you wouldn't be able to organize text or add images or videos to your web pages. HTML is the beginning of everything you need to know to someday create beautiful web pages! - Code Academy

​

We will use Sololearn and Thimble. To save progress, I recommend you create an account on both platforms. See the file below for instructions. The pdf on the left provides course instructions while the pdf on the right includes challenges.

​

The powerpoint below has key HTML tips/tricks. Although it is not completely original, note that the colored text is used often with coding.

​

Java!!!

Java is a programming language designed to build secure, powerful applications that run across multiple operating systems, including Linux, Mac OS X, and Windows. The Java language is known to be flexible, scalable, and maintainable.- Code Academy

 

We will use my presentations and J Doodle. To save progress, Mostly, I will "lecture" and lead tutorials which will foster most of the learning.

                   Lab 1     Applet    Hello World (See embedded site below)

public class KoolKoding //template - source code to copy & paste (t1)
{
    public static void main (String[] args)
    {
        int a;
        int b;
        String c;
        String d;
        boolean e;
        char f;
        System.out.println();
        System.out.print();
    }
}

bottom of page