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
    
  
  
    
  | public static void conditionalsExercise() { | |
| Boolean result; | |
| //You do this part! | |
| // 1. Write a comparison statement that evauates to false and assign the result to our result variable | |
| //Don't forget to maintain indentation! | |
| Integer i = 4; | 
  
    
      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
    
  
  
    
  | public static void primitivesExercise() { | |
| //You do this part! | |
| //1. Declare three primitives variables, an Integer, a String and a Decimal | |
| Integer i; | |
| String myHomework; | |
| Decimal dec; | |
| //2. Assign values to your three new variables |