When you open MS Word, selecting the insert option and clicking
SmartArt, will pop up SmartArt dialog box. Double-clicking on one of the
graphic options in the middle panel will automatically select and place the
graphic art you want. It is an easy way of inserting a SmartArt of your choice without selecting
the art itself and clicking OK.
Answer:
biometrics
Explanation:
Voice and fingerprint <u>biometrics</u> can significantly improve the security of physical devices and provide stronger authentication for remote access or cloud services.
Answer:
Webbed storyboard technique
Explanation:
There are several storyboard techniques; however, the best for a website is the webbed storyboard technique.
Coined from the word "web", this technique does not only help in linking pages within the website where a page can be access from other pages, it also links pages of the website to external pages.
An illustration is as follows:
From the homepage of a website, one can access the contact page, the about page, etc.
Each of the listed pages also have link back to the homepage and to every other pages.
Answer:
nums = []
while True:
in = input()
if in:
nums.append(in)
else:
break
if nums:
avg = sum(nums) / len(nums)
for i in range(len(nums)):
if nums[i] == avg:
print(f"index: {i+1}")
print(nums[i])
else:
print(-1) # if there aren't any values in nums
Explanation:
Assuming that you are coding in Python 3x. The last 'else' statement is an edge case that you might want to consider, I don't know what you want to put there, but I'm just going to leave it as -1.
Answer:
B. Use the auto-summary command.
Explanation:
With the implementation of dynamic routing protocols, RIP summarizes networks at classful boundaries by default. To configure a router to automatically summarize networks, the auto-summary command would be used.