Answer:
You would use a Bullet Point on a slide presentation because its concise and to the point.
Explanation:
The correct way to use a Bullet point is to keep it simple. Its not made to be a full sentence. You need to create a bullet point you can expand upon. when you keep it plain and simple you can get more info on your points.
Answer:
the depth of the shaft,
the carrying load of the skip and the mass of the counterweight,
the approximate size of the winding drum,
the approximate height of the headgear and the sheave wheel
A place to watch daisy Taylor vids
Answer:
False
Explanation:
An abstract class is a class declared abstract — it may or may not include abstract techniques. It is not possible to instantiate abstract classes, but they can be sub-classed.
<u></u>
<u>Abstract method declaration</u>
abstract void moveTo(double X, double Y);
Usually the subclass offers solutions for all of the abstract techniques in its parent class when an abstract class is sub-classed. If not, however, the subclass must be declared abstract as well.
<u>Example</u>
public abstract class GraphicObject {
// declaring fields
// declaring non-abstract methods
abstract void draw();
}