This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | CommentingOnCodeExercise { | |
| public static void cartValues() { | |
| //Declaring and Initialising a variable. Datatype = Integer. Variable name = CartValue and assigning the minimum number value of 50. | |
| Integer minimumCartValue = 50; | |
| // Declaring and Initialising the variables. | |
| Integer itemA = 10; | |
| Integer itemB = 20; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //I am going to use the example of taking out the trash as apart of the week 1 Psuedocode activity | |
| //Step 1 is to remove the existing trash from the trash bag | |
| /*Lift the lid from the bin you would like to remove the trash from. Remove lid completely and place it besides the bin | |
| if the lid is able to be completely removed*/ | |
| //Step 2 is to seal the internal garbage bag liner and remove from the external garbage bag | |
| /*Gather the top handles of the internal garbage bag line and tie this into a knot and completely seal the garbage within | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Welcome.apxc | |
| //Ok, let's get started! | |
| public static void youDoThisPart() { | |
| /*Your assignment is to write two comments below this one. They should describe the few lines of code you see below. | |
| Simply describe what the code is doing based on what you learned from readings and in class. | |
| Make one as a single line comment using the // notation. Make the other one a multi line comment using the /* notation. | |
| When you're done, save this file so that it is compiled and stored in Salesforce. */ |