Quick actions

cmd+k|ctrl+k

Navigation

Languages

Week1Mock1MCQ18

Snippet info

Language

Java

Visibility

public

Author

masterhun

Created

2024-04-02T03:13:22.670427Z

Updated

2024-04-02T03:24:26.225627Z

public class Main {
    
    public static void main(String[] args) {
        
        // Harbor, Week 1, Mock 1, PR_PracticeTest_1.pdf
        
        // AP CS A 
        
        // MCQ 18
        
        Tile t1 = new Tile(785, "grey", "ceramic", 6.95);
        t1.chgMaterial("marble");
        System.out.print(t1.toString());
        // Output: 785 grey 0.0 0.0 ceramic 0.0
        
        
        System.out.println();
        
        // MCQ 19 
        
        Tile t2 = new Tile(101, "blue");
        System.out.print(t2);
        // Output: 101 blue 0.0 0.0 null 0.0
    

        
    }
}
INFO