java 10. Briefly explain composition. List five real examples of composition.
Example: composition java
public class motherboard{
private CPU cpu;
}
public class CPU{
private int amtOfCores;
private String brand;
}
public class motherboard{
private CPU cpu;
}
public class CPU{
private int amtOfCores;
private String brand;
}