AP Computer Science A
*********
*********
Due Date: January 26, 2024
Exam on IP address:

Click on this link to practice:

 

*********
*********
 
You may need to sign into College Board AP for additional information.
Click here to sign on to AP College Board.

**********
**********
Due Date: Feb 7, 2024
Unit 6 Arrays 6.1,6.2,6.3,6.4 MCQ

Purpose: Gain an understanding of Unit 6 Arrays 6.1,6.2,6.3,6.4 MCQ Grade Sheet.
	-Build your Grading sheet.
	-Follow the instruction found on the Grading sheet.
	-Once build, e-mail only the LINK to Mr. Cusack.
	-jcusack1@kleinisd.net
				
Instructions: 
-Duplicate the google document below.
-Insert your last name in front of "Unit 6 Arrays 6.1,6.2,6.3,6.4 MCQ" - Grade Sheet
Insert a standard heading.

-Review Sample:
-Click on the site tab at the top.
-Select "Standard Heading"
Configure the google document below.
-duplicate the google document
-You will find the signature boxes.
-Pick the table that is associated with your team.
-Delete all other tables.
-Copy the link from your google document
-Email me ONLY the link for this google document.
-(DO NOT Share the google document with Me)

I will print it.

Click here to access the google document.

**********
**********
Due Date: Feb 23, 2024

Unit 6 Arrays 6.1,6.2,6.3,6.4 MCQ

Click here to see your actual assignments.

*********
*********
Due Date: February 26, 2024

Be sure to create the following files:
PX_rockPaper_lastname.py (Actual python program)
PX_rockPaper_lastname.txt (Copy of python program (use google docs))
PX_rockPaper_lastname.png (Screen shot of program running)
PX_rockPaper_lastname.mp4 (Video of you running the program)
Be sure to drop these off into google classroom.

Source code:
from random import randint

#create a list of play options
t = ["Rock", "Paper", "Scissors"]

#assign a random play to the computer
computer = t[randint(0,2)]

#set player to False
player = False

while player == False:
#set player to True
    player = input("Rock, Paper, Scissors?")
    if player == computer:
        print("Tie!")
    elif player == "Rock":
        if computer == "Paper":
            print("You lose!", computer, "covers", player)
        else:
            print("You win!", player, "smashes", computer)
    elif player == "Paper":
        if computer == "Scissors":
            print("You lose!", computer, "cut", player)
        else:
            print("You win!", player, "covers", computer)
    elif player == "Scissors":
        if computer == "Rock":
            print("You lose...", computer, "smashes", player)
        else:
            print("You win!", player, "cut", computer)
    else:
        print("That's not a valid play. Check your spelling!")
    #player was set to True, but we want it to be False so the loop continues
    player = False
    computer = t[randint(0,2)]
	

*********
*********

Assignment instruction for above code:
-Copy and paste the code above into 
-Your cyber range / file PX_rockPaper_lastname.py

Click here to see watch a video on how to do this.
(www.cusack2.com)
Click here to see watch a video on how to do this.
(Youtube)

*********
*********
 
  
Cyber Range Passwords 
Sign on ids for Period 5
Click here and get your id and password.

Click here for your cyber range.
https://apps.cyber.org/login

*********
*********

Assignment
-Using Linux and the python interpreter

If you have forgotten how to boot up your Kali Linux machine and run python.
Click here for full instructions.

**********
**********

AFRQ Unit 1 and 2 FRQ 1 Methods and Control Structures 2 Class

Click here to see your actual assignments.

**********
**********

AFRQ Unit 1 and 2 FRQ 1 Methods and Control Structures 2 Class


*********
*********