1 A. SmartArt.
2 C. He needs to check to see if they are compatible with Word.
3 A. It has many different style samples that can be applied., and D. It is found under the Home tab.
Answers:
A. SmartArt.
The SmartArt option in Microsoft Word can be found in the Insert tab. Here you will find different pre-defined options of Lists, Processes, Cycles, Hierachy, etc. After selecting the visual aid of your choice, you will then be able to edit the contents using the editing dialog box or by directly clicking on the element that you wish to edit.
B. He needs to make sure that the dimensions match the Avery labels.
Emilio will need to make sure that the cheaper brand match the dimensions of the Avery labels, this is due to the fact that Microsoft Word already has a setting for making Avery labels. Making sure the number of labels is the same does not affect it all, checking to see if they are compatible with Word does not also affect the outcome of the labels, and most likely the cheaper labels will not have a pre-defined setting in Microsoft Word.
A. It has many different style samples that can be applied.
D. It is found under the Home tab.
E. A user can save custom styles to be used in the future.
The style settings are pre-defined settings that can help in the creation of a document. These settings help especially when the document is not a simple text document. These settings can also be edited by pressing Shirt+F1 to change certain aspects of the style that the user would like to change.
PLEASE HELP
Please complete this sentence
"Your Digital Footprint is more permanent ...... because ........"
online stuff dont ever get permanently erased even if the person or website deletes the file someone could download it before it is taken down. The internet has so many different websites that it flags that your computer visited them doesn't matter how long. also cookies evaluate what you viewed on their website and act accordingly. Anyone with good hacking skills can break into any online account or website and use the digital footprint to track you to your scource.
Answer: down below......
The irs offers free tax filling software named
The software is called free file
software is called free file is your correct amswer
Discuss three ways you could (or currently do)use the excel software in your personal life.Provide examples of the why excel is an effective choice over other programs or apps
Uses of excels
1. Personal fitness log: log the things you eat along with its calories and record it every day. Make a pivot of the data and see how much you have consumed. Along with this, add sleep duration, and measure the number of hours that you have slept each day during the month.
2. Budget Planner: Make a monthly budget and maintain a log of things you buy in order to keep a track of your budget. This will help to keep a track and you will be more or less in the limits of the budget allocated during the start of the month.
3. Headache Log: If you experience frequent headaches, then log that and when there is enough data a comparison can be done.
You can make charts and other graphical representations of the data to compare and contrast your trends and can make an efficient analysis. All these features which are present in excel are not available in other applications all at one time.
What are effective ways to get ready for a test
Vitamins and minerals dissolve easily in water.True or false?
Answer:
true
Vitamins and minerals dissolve easily in water.
Read the following code used to calculate the percentage of calories from fat in an item:
calories = input("How many calories are in the item? ")
caloriesFat = input("How many calories are from fat? ")
percentFat = caloriesFat / calories
There is an error in the code. What type of function needs to be used?
float() [I think it is this one. Is it right?]
int()
print() [NOT this one!]
str()
Explanation:
Problem is to cast your input values either in int() or float() this this up to you in which format you want your output,
Example2:
calories = int(input("How many calories are in the item? "))
caloriesFat = int(input("How many calories are from fat? "))
percentFat = int(caloriesFat / calories)
Now output on the screen:
print(percentFat)
Example2:
calories = float(input("How many calories are in the item? "))
caloriesFat = float(input("How many calories are from fat? "))
percentFat = float(caloriesFat / calories)
Now output on the screen:
print(percentFat)
I hope you got the idea Thanks
Answer:
The answer is int ()
Explanation:
Process of elimination. Only int and float are used for calculation (division obvs falls under that). Disregard the other two options. Float is for numerical values with a decimal. Calories are never shown with decimal points. So, it's int()