Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
The correct answer is Home.
Indentation is useful to make the document easier to read. To increase the indentation of the paragraph, you press the increase indentation in the <u>Home</u> tab.
you can increase/ decrease indentation in Home tab under the Paragraph groups of command.
Othe options are not correct because:
View tab has settings related to how the document looks like. Insert tab has settings related to the insertion of image, shape, pages, tables, illustration, and links, etc into a document. The review tab allows you to review the document with different available settings.
Answer:
Java Class given below
Explanation:
class ReadOnly
{
protected int val;
public ReadOnly(int arg)
{
val = arg;
}
public int getVal()
{
return val;
}
}
class ReadWrite extends ReadOnly
{
private boolean dirty;
public ReadWrite(int arg)
{
super(arg);
dirty = false;
}
public void setVal(int arg)
{
val = arg;
dirty = true;
}
public boolean isDirty()
{
return dirty;
}
}
Answer:
thats what i was about to ask. im not sure
Explanation:
sorry '-'
The correct statements about financial literacy from the given options are as follows:
- Financial literacy is the knowledge about money and what you do with money.
- Financial literacy includes information about income, banking, loans, career, credit, and consumer rights.
- One reason to become financially literate is to save you money.
- One reason to become financially literate is to help you make smart financial decisions.
The only option that isn’t included is: <em>One reason to become financially literate is to make you rich</em>. Though knowledge about financial literacy can help you in managing your finances, you would need great amount of knowledge about other fields to be able to become rich - not just financial literacy.