brentwoodhigh.com

AP Central Classroom | repl.it | code.org | BlueJ.org | w3schools | Draw.io | Site Stats
Game | Food Drink | Tardy | login Submissions | Honesty | Absence Late Work |
pl1 Schedule | pl1 LogIn | pl1 Archive | pl1 Resources |
PL2 Schedule | PL2 LogIn | PL2 Archive | PL2 Resources |
APP schedule | APP LogIn | APP Archive | APP Resources |

Archive 22-23

 

 

 

Mon-Nov-28

 

https://resources.youscience.com/exam-catalog

While Statements - all due midnight tonight.

 

Tue-Nov-29

Check grades for things that didn't come in. I know many things failed.

Many submission failed - I will go over how email them.
Emailing Resubmission due by the EOC TODAY.

While statements part 2 - all due midnight tonight.

 

Wed-Nov-30

 

 

Thu-Dec-1

For loops - all due midnight tonight.

 

Fri-Dec-2

Do While - all due midnight tonight.

 

7  
Mon-Dec-5

https://codehs.com/curriculum/catalog

Nested Loops - all due midnight tonight.

Tue-Dec-6

Unconditional Transfer of Control - Continue Statement - all due midnight tonight.

 

Wed-Dec-7

Labs

Exam Review

Thu-Dec-8

 

Code Exam - Card Class

1. Create a project named Five Card Stud Poker

1

2. Project | Add Class    Add Card.cs

2

3. Write Card Class.

3

4. Test the class with the code below. See me when this works.

 
 static void Main(string[] args)
    {
      Card c1 = new Card("10",1,10);
      Card c2= new Card("Q", 3, 12);
      Card c3 = new Card("5", 2, 2);
      Card c4 = new Card("10", 1, 10);
      Console.WriteLine(c1);
      Console.WriteLine(c2);
      Console.WriteLine(c3);
      Console.WriteLine(c4);
      Console.WriteLine(c2.Name);
      Console.WriteLine(c3.Suit);
      Console.WriteLine(c4.Rank);

      Console.ReadKey();
    }//end Main
             
    
            

 

 

Fri-Dec-9

Substitute

FE Exam Review UPDATED

All Questions in one study guide

8  

 

 

Mon-Nov-14

Programs - any 4 of the 5 due Friday EOC

PE-5-01.htm | PE-5-03.htm | PE-5-04.htm | PE-5-05.htm | PE-5-06.htm

Tue-Nov-15

Programs - any 4 of the 5 due Friday EOC

PE-5-01.htm | PE-5-03.htm | PE-5-04.htm | PE-5-05.htm | PE-5-06.htm

Wed-Nov-16 All cell phones on the table by my desk except for Nathan.

Programs - any 4 of the 5 due Friday EOC
PE-5-01.htm | PE-5-03.htm | PE-5-04.htm | PE-5-05.htm | PE-5-06.htm

Thu-Nov-17

Substitute

Programs - any 4 of the 5 due Friday EOC
PE-5-01.htm | PE-5-03.htm | PE-5-04.htm | PE-5-05.htm | PE-5-06.htm

Fri-Nov-18

Programs - any 4 of the 5 due Today by EOC
PE-5-01.htm | PE-5-03.htm | PE-5-04.htm | PE-5-05.htm | PE-5-06.htm

https://resources.youscience.com/exam-catalog

7  
Mon-Nov-21 No School
Tue-Nov-22 No School
Wed-Nov-23 No School
Thu-Nov-24 No School
Fri-Nov-25 No School
6  

 

 

Mon-Nov-7

 

Boolean Expression - due by the end of class today. Read and answer the different reading questions.

Tue-Nov-8

PD - No Students

 

Wed-Nov-9

 

If Else Selection Statements - due midnight tonight

 

Thu-Nov-10

Substitute

Switch Statement - due midnight tonight

Order of Operations - due midnight tonight

Fri-Nov-11

Substitute

Programs

PE-5-01.htm
PE-5-03.htm
PE-5-04.htm
PE-5-05.htm
PE-5-06.htm

6  

 

 

Mon-Oct-31

 

Submit at the start of class. Fraction Class Part 2 (from Friday)

1. Phone on the computers. Access them during the video, you will place on the phone on the table below the video.

2. If you are behind in programming, you may multitasking and work on missing programs. You will only have to take half of the notes on the video.

3. ALL sites will be blocked except for brentwoodhigh.

The Creepy Line - due last 5 minutes of class.

Tue-Nov-1

 

Reflections 2nd period

The Creepy Line - due last 5 minutes of class.

Wed-Nov-2

Remaining video - no notes

Due midnight tonight

 

Thu-Nov-3

Sub

 

Fri-Nov-4

Grading day

 

5  

 

Mon-Oct-24

Point Class

Submit these Point class methods today.

 

Tue-Oct-25

 

Submit this Point method DistanceFromOrigin today.

Wed-Oct-26

 

Submit all methods above by midnight tonight.

Thu-Oct-27

 

Project named - Fraction Stuff.

Create a Fraction class. A fraction consists of a numerator and a denominator. Here is the Fraction class framework

1

 

You have to write the Constructor and the ToString method. These method MUST work with my Main method.

You can NOT alter my Main method. Here is a picture of Main.

2

This is the required Main method you must have - copy and paste it AND do not MODIFY any of my statements (lines 9-14)

 

                   
            
using System;

namespace Fraction_Stuff
{
  class Program
  {
    static void Main()
    {
      Console.Write("Enter the numerator: ");
      int num = Int32.Parse(Console.ReadLine());
      Console.Write("Enter the denominator: ");
      int den = Int32.Parse(Console.ReadLine());
      Fraction f1 = new Fraction(num, den);
      Console.WriteLine("{0}", f1);
      Console.ReadKey();
    }//end  main
  }//end class
}//end name
            
            
            
       
            

Submit this by the END of Class today.

 

Fri-Oct-28

Substitute

Write these helper methods

IsUndefined - any fraction that has a denominator of zero
IsWholeNumber - any fraction that the denominator divides evenly into the numerator.
IsProper - numerator is less than the denominator.
IsImproper - numerator is greater than the denominator.

//mutators
SetSigns - if the fraction is -3/-4 the fraction will become 3/4. If the fraction is 4/-5 the fraction will become -4/5.

4  

 

Mon-Oct-17

 

9 weeks Grade Calculation for a class with weighted grades - Here are the assigned classes to write this program for. due EOC Friday

Adams - Algebra 2 (only the categories that have a weight greater than 0

Cherney - Statistics
Duke - Spanish
Jett - Personal Finance
Pautienus - English 3
Saxena - Chemistry I
Sears - AP History of Art
Seifu - Algebra 2
White - AP Physics

Brust - see me about your modification.

Program Class Grade

 

Tue-Oct-18

 

 

Wed-Oct-19

 

Grading Day and MakeUp

Current status of labs

 

Thu-Oct-20

 

 

Fri-Oct-21

Voting

Voting 7th - vote for 5
Voting 8th - vote for 5

Complete Demo on Point class.

What access level should nearly all constructors have?

What is the default access level for constructors?

What makes a method a constructor?

3  

 

Mon-Oct-10 PD
Tue-Oct-11 Parent Teacher Conference Day - No Students
Wed-Oct-12 Fall Break - No Students
Thu-Oct-13 Fall Break - No Students
Fri-Oct-14 Fall Break - No Students
2  

 

Mon-Oct-3

Input and formatting output Demo1003 - submit when done.

Formatting Output Reading and Questions

 

 

Tue-Oct-4

Senior ACT day.

Schedule rest of day
6th period 12:30-1:10
7th period 1:17-2:00
8th period 2:07-2:47

Lab: Take Home Pay - due end of class Friday

Wed-Oct-5

End 1st 9 Weeks

brustnat000@myplae.wcs.edu - resubmit Take-home pay with a real email address.

Lab: Making Change - due EOC Friday



Thu-Oct-6

9 weeks Grade Calculation for a class with weighted grades - Here are the assigned classes to write this program for. due EOC Friday

Adams - Algebra 2 (only the categories that have a weight greater than 0
Brust - AP Physics
Cherney - Statistics
Duke - Spanish
Jett - Personal Finance
Pautienus - English 3
Saxena - Chemistry I
Sears - AP History of Art
Seifu - Algebra 2
White - AP Physics

 

Program Class Grade

Fri-Oct-7

 

Substitute

Work on labs, all due end of class Today.

 

1  

 

 

Mon-Sep-26


Mixed Expressions
Casting Data Types
Order of Operations

Lab Week

IDOC expected on all programs
Miles Feet
Miles to Kilometers
Celsius to Fahrenheit
Ruggy Shoes

If you have time or the desire to promote homecoming activities that would be great.  Below are items for Monday:

  • During 5B, we will do a best dressed competition, a prize is involved 
  • Tuesday theme is Temple Run:  Safari  
  • Can food drive:  we will take anything, but Monday, Pasta is the theme for the drive
  • Collection is happening in the front lobby
  • Tuesday theme is canned fruit
  •  
  • Monday during lunch a Chik-Fil-A lunch can be bought:  Sandwich, chips, cookies, water for $8 :  
  •  
  • Bruin Hunt:  There is a Paper Bruin Head hidden in the school:  if found there is a prize (gift card or their choice)  
  • Float Builds begin Monday:  check class Instagram for location 
  • Tickets for the Homecoming Dance go on sale for $15 per person.  Sold during lunch in the front lobby. 
Tue-Sep-27

More Labs

 

Wed-Sep-28

Part 1 should have been compeled Monday. Do this first!!!  This means you Sid!

IDOC expected on all programs
Miles Feet
Miles to Kilometers
Celsius to Fahrenheit
Ruggy Shoes

Do NOT do the part 2 Program until you have completed the original program FIRST!
If you do, you will get a 0 for the orginal program.

IDOC expected on all programs
Miles Feet part 2
Miles to Kilometers part 2
Celsius to Fahrenheit part 2 - Add necessary constants. Submission form online later.
Ruggy Shoes part 2 - ADD 2 constants. Set values that could change in the future. Submission form online later.

 

Thu-Sep-29

Work on Labs and Modifications

Homecoming Information for Thursday

  • Today is the last day that we will be collecting canned food.
  • Tomorrow dress up theme:  Blue and Gold: All things Brentwood
  • All students have received a link to sign up for a food truck for Friday
  • Dance Tickets are being sold during lunch for $15
  • If students ORDERED a Homecoming shirt, it can be picked up during lunch.  All the extra shirts have been sold.  
Fri-Sep-30

All work this week due midnight Sunday

 

9  

 

Mon-Sep-19

Slideshow - ppt or pdf

(9) Character Sets - due EOC
(17) Identifiers due EOC
(5) Literal Values due EOC
(11) Variables due midnight tonight

 

Tue-Sep-20

(18) Types - Due EOC
(3) Classes - Due EOC
(3) Objects - Due EOC
(19) Pre-Defined Data Types due midnight tonight

 

Wed-Sep-21

 

(18) Integral Data Types - due EOC
(20) Floating Point Types - due EOC
(12) Decimal Types (c# sharp only) - due midnight

Thu-Sep-22

 

(9) Boolean Types - due EOC
(6) Declaring Strings - due EOC
(10) Making Data Constant - due midnight
Assignment Statements - read
Basic Math Operators - due midnight

 

Fri-Sep-23

Demo Program


Formatting Output
Width Specifiers
Coding Standards

 

8  

 

Mon-Sep-12

 

All phones on the white table.

Ch 1 test - 25 MC, 15 TF, Completion - 0, Matching -6, short answer/essay - 0.

Chapter 1 Study guides - Must be successfully completed by midnight.

Have this open when you go through the study guides. Submit when done.

Set 1
Set 2

Tue-Sep-13

Use this period to study for the test tomorrow.

Slideshow about some of the questions sent to me yesterday. PPT or PDF

Here are some randomly generated sample tests. Give them a try, see how much you need to study.

Sample Study Guide Test 1
Sample Study Gudie Test 2
Sample Study Gudie Test 3

Wed-Sep-14

Test Chapter 1 (200)

Don't sit next to anyone.

Version 1 | Version 2
Version 3 | Versions 4

Thu-Sep-15

Substitute

Bits - due midnight tonight
Bytes - due midnight tonight

Fri-Sep-16

Substitute

1st Period: 7:40 AM – 8:21 AM
2nd Period: 8:28 AM – 9:09 AM
Break: 9:09 AM – 9:19 AM
3rd Period: 9:19 AM – 10:00 AM
4th Period: 10:07 AM – 10:53 AM
5th Period: 10:59 AM – 11:45 AM
Enrichment Ends: 11:22 AM
6th Period: 11:51 AM – 12:32 PM
7th Period: 12:39 PM – 1:20 PM
8th Period: 1:27 PM – 2:08 PM
Pep Rally: 2:08 PM – 2:47 PM

  Binary Number System - due midnight Sunday (help each other)

7  

 

Mon-Sep-5

Labor Day - No School

 

Tue-Sep-6

Check grades

Everyone EXCEPT for Bru, Sea, Jet put cell phones on white table.

Debugging Applications - due by EOC

Work out outstanding work.

 

Wed-Sep-7

 

PE 1-3 Graduation with three compilers. Due midnight tonight.

 

Thu-Sep-8

Escape sequences - due midnight tonight

Demo0908

PE 1-6 Phrases
PE 1-7 PI
PE 1-8 Hang Man

 

Fri-Sep-9

 

PE 1-9 Schedule Link

 

6  

 

 

Mon-Aug-29

 

Demo Program082229 - due upon completion

Evolutions of C# - due midnight tonight
Why C# - due midnight tonight

 

 

Tue-Aug-30

 

Types of C# Applications - Three submissions due by EOC. IDOC not required on Windows Form Applications.

 

Wed-Aug-31

 

 

Thu-Sep-1

Elements of a Program - all due midnight tonight

Csharp program - due by EOC friday

Fri-Sep-2

 

The following students place phone on the white table: Duk, Pau, Sax

Check Grades - all missing worth half credit.

Compiling, Building, and Running - all due midnight Monday

 

5  

 

Mon-Aug-22

PNP Study Guide

Software Development Process - 3 submissions due midnight tonight.

Tue-Aug-23

Internet slowness

1. Find a computer with MS Visual Studio. Submit this form

2. Structured Procedural Programming - 3 submission due midnight Wednesday

3. PNP Study Guide

 

Wed-Aug-24

 

Login on brentwoodhigh.com

1. check gradebook, I put in the practice test scores. If you take test today, only the highest one counts.
2. Phone on computer, backpack up front.
3. Follow a dead test link.

PNP Test - Ignore the test name. Using test from previous classes.

Odd Stations Version A | Version B
Even Stations Version C | Version D

Thu-Aug-25

No one can sit next to someone.

Find or install Visual studio on this computer - this will be your testing computer.

Go back to your regular spot, some may not change.

Find or install Visual studio on this computer - this will be your daily computer.

Go to Replit.com and set up an account.

Send me an email at larryk@wcs.edu telling me both computers have visual studio working. Don't send an email if they are not.

Fri-Aug-26

 

 

4  

 

Mon-Aug-15

 

Cell phone on computer or in backpacks

Introduction to this class.

Cancer and Absences

Hawks and Toads.

Start on Policies.

Good email address - only one submission per policy

 

Tue-Aug-16

Policies and Procedures - One submission for each. All due midnight tonight.

Tardy Policy
Late Work/Absence
Academic Honesty
Logins/Submissions
Food Drink
Games
Cell and Earbuds

Leave Room

Hawk and Toads
Classroom Terminology

 

Wed-Aug-17

Meds did me in last night, schedule change. Updated 8-17

Computer History - Two assignments on this page, one due EOC, one midnight.

System and Application Software - Three assignment due by EOC, one midnight.

 

Thu-Aug-18

PNP Test - Testing in this class.

1. Move to a station where I can see the screen from my desk.
2. Put cell phone on the computer.
3. Back pack under the screen.
4. Take test

Odd Stations ver 1 | ver 3
Even Stations ver 2 | ver 4

5. When finished get your backpack and move to a station NOT by someone still taking the test.

Fri-Aug-19

Substitute - We will be on the pep rally schedule on Friday.

PI questions due by EOC.
Learning Types - Submit your type

1st Period: 7:40 AM – 8:21 AM
2nd Period: 8:28 AM – 9:09 AM
Break: 9:09 AM – 9:19 AM
3rd Period: 9:19 AM – 10:00 AM
4th Period: 10:07 AM – 10:53 AM
5th Period: 10:59 AM – 11:45 AM
Enrichment Ends: 11:22 AM
6th Period: 11:51 AM – 12:32 PM
7th Period: 12:39 PM – 1:20 PM
8th Period: 1:27 PM – 2:08 PM
Pep Rally: 2:08 PM – 2:47 PM

3  

 

Mon-Aug-8

 

 

Tue-Aug-9

 

 

Wed-Aug-10

 

 

Thu-Aug-11

 

 

Fri-Aug-12

 

 

2  

 

 

Mon-Aug-1

No Students

 

Tue-Aug-2

No Students

 

Wed-Aug-3

No Students

 

Thu-Aug-4

No Students

 

Fri-Aug-5

1/2 day Students

 

1  

 

 

 

 

 

Updated: Wednesday, December 14, 2022 6:54 AM

About Us | Contact Us | ©2005 brentwoodhigh.com

>>>>