Answer:
its D
Explanation:
The social worker likes to work with other people, so he/she might not like working alone.
Answer:
Neither A nor B
Explanation:
<em>Reserve capacity</em> is the number of minutes that a new, fully charged battery can discharge continuously and maintain a terminal voltage equal to or greater than 1.75 volts per cell.
<em>An ampere-hour </em>is an electric charge unit and its abbreviation is Ah.
It measures the amount of electric charge flowing through a battery in the case that amount supplies a current of 1 amp for 1 hour.
Answer:
a while loop
Explanation:
for an example, while x<4:
the program will end when the value of x greater than 4.
Answer:
A BorderLayout corresponds to a layout type where the components are organized along geographical directions represented by NORTH, SOUTH, EAST, WEST, and CENTER.
Explanation:
The layout class is awt determines the actual placement of components in the user interface. BorderLayout is a layout where the components are organized along geographical directions represented by NORTH, SOUTH, EAST, WEST, and CENTER. For example:
Panel p = new Panel();
p.setLayout(new BorderLayout());
p.add(new TextArea(), BorderLayout.CENTER);
p.add(new Button("Close"), BorderLayout.SOUTH);
This code segment will add a textarea at the CENTER of the interface and a button 'Close' towards the SOUTH.