Explanation:
1 Ms word - b. Word processing software
2 Pagemaker - c desktop publishing
3 Ms excel - f finance and data analyses
4 dbase - a database management system
6 Mcafee/Norton - d anti-virus software
7 virus - h computer program that can replicate itself
8 inbox, compose,.............. - parts of an email account
<span>Answer: Ring end gap
Ring end gap is the split or gap in the ring. The piston ring is split at one point and it is not completely solid ring and the split/ gap is termed as ring end gap.</span>
Answer:
Takumi Usui and Misaki Ayuzawa
Explanation:
don't know why this is here
Id say (B)
File, Permissions, Restrict Editing, Editing Restrictions, Comments, Start Enforcement, then enter her password
However much you may want your reviewers to make comments
and suggest changes in a document, there may be times when you want to restrict them from changing the content you have created. To restrict formatting in a
document, you can click restrict formatting in the protect section of the
review tab and follow the procedure in the answer above.
Answer:
The complete code is as follows:
from array import *
myArr = array('f',[3, 5, 7,3, 10])
location = myArr.index(7)
print(str("7")+" is at position "+str(location+1))
Explanation:
I made corrections to the third line of the code and I added a line
This line gets the index of 7 from the array myArr using the index keyword
location = myArr.index(7)
This line prints the position of the 7 in the array
print(str("7")+" is at position "+str(location+1))