Answer:
option A ) true is right answer.
Answer:
I'm pretty sure it's photogenic drawing.
Answer:
Object-oriented programming
Explanation:
When used in object-oriented programming , a class is a factory for creating object. An object is a collection of data and behavaiors that represent some entity(real or abstract).
Answer:
<h2> <u>NETWORK</u> <u>TOPOLOGY</u> .</h2>
This tefers to how nodes are connected to the network.
Types of topology.
- Physical topology.
- Logical topology.
In physical topology,nodes are connected physically using wires(cables).
Types of physical topology include:
- Bus topology
- Tree topology
- Hybrid topology
- Star topology
- Ring topology.
Hope it helps you,any question so far...comment !!!
Answer:
interface GUIComponent{
public void open();
public boolean close();
public void resize(int width, int height);
public void move(int x, int y);
}
Explanation: