Which of the following is a productivity strategy for collaboration?
-
A. Saving focused work for a time of day when you feel most creative.
- B. Employing the 80/20 rule to prioritize tasks.
- C. Posting files to a web-based shared site.
- D. Using white noise to block distractions in the office.
<u>Answer:</u>
Posting files to a web-based shared site is a productivity strategy for collaboration.
- C. Posting files to a web-based shared site.
<u>Explanation:</u>
Collaborative software or groupware is application programming intended to help individuals taking a shot at a typical errand to achieve their objectives. This permits individual to impart thoughts and their abilities to different individuals with the goal that the assignment can be done both proficiently and adequately.
Joint effort stages ordinarily incorporate an email customer, Web conferencing, internet based life sharing, video capacities, report sharing abilities, texting and that's just the beginning. Endeavor joint effort stages are intended to be introduced on-premises or conveyed by means of the Web as cloud-based administrations.
Answer:
CPU is known as <u>Central</u><u> </u><u>Processing</u><u> </u><u>Unit</u><u>.</u>
Your answer is -
B. Folder Is the best place to save it
Document design techniques that make
your document easier for readers to skim and therefore gives your writing
"High Skim Value" is true. The answer is letter A. Documents that
give you a high skim value are the headings and subheadings, white space and
the toposgraphy.
Answer:
p(x,n)
1. if(n==0) [if power is 0]
2. then result =1.
3.else
4. { result=1.
5. for i=1 to n.
6. { result = result * x. } [each time we multiply x once]
7. return result.
8. }
Let's count p(3,3)
3
0, so come to else part.
i=1: result = result *3 = 3
i=2: result = result *3 = 9
i=2: result = result *3 = 27
Explanation:
here the for loop at step 4 takes O(n) time and other steps take constant time. So overall time complexity = O(n)