Answer:agency
Explanation:
In social science, agency refers to how one is able to independently make their own decision and choices without being influenced by any institution. It works against structure under which certain institution may have influence and restrictions on one's own agent and their decision making.
Michelle is protesting against structure which my impose certain values on her peers , restricting them on how they make choices and decisions.
Structures like those maybe political laws , religion or University rules
He increased authoritarianism in government.
Answer:
The answer is a social trap.
Explanation:
The term decribe a decision with short-term benefits that may result in social disadvantages in the long run. In the example, Lucas' decision will negatively affect society as a whole.
In contrast, an <u>individual trap</u> has only consequences for the decision-maker. An example would be smoking, which provides short-term relief but may end up in lung cancer and other respiratory diseases.
The answer for the given question is explained below.
<u>Explanation</u>:
public class Parking Meter
{
int time Left = 0;
int max Time;
public Parking Meter( int max ){
max Time = max;
}
public boolean add ( int coin )
{
if ( coin == 25 )
{
if ( time Left + 30 < max Time )
{
time Left += 30;
return true;
}
}
return false;
}
public void tick()
{
if ( time Left > 0 )
{
time Left -= 1;
}
}
public boolean is Expired()
{
return time Left == 0;
}
}