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:
b. 2.9!
Explanation:
There are is a mistake in the question.
Suppose the group consist of 10 kids and 2 adults, the number of ways in which they can form the line is:
= 2! 10!
= 2× 1× 10!
= 2.10!
But since that is not in the given option.
Let assume that the group consists of 9 kids and 2 adults, the number of ways in which they can form the line is:
No of ways the kids can be permutated = 9 ways
No of ways the adult can be permutated = two ways.
Thus; the number of ways in which they can form the line = 2! 9!
= 2 × 1× 9!
= 2.9!
Answer:
I believe the answer is B
Explanation:
Answer:
“Think of it this way: When we’re done, your connection will be faster than it ever was before.”
Correct label:
positive reappraisal
“Okay, let’s put the connection speed issue aside for later and work on changing your password for our company website.”
Correct label:
distraction
“At least your router isn’t talking back at you! I can’t get my digital assistant to shut up.”
Correct label:
humor
Explanation:
Answer:
Code is given below and output is attached as an image.
Explanation:
#include <iostream>
#include <fstream>
using namespace std;
bool isPalindrome(int n)
{
// Find reverse of n
int rev = 0;
for (int i = n; i > 0; i /= 10)
rev = rev * 10 + i % 10;
// If n and rev are same,then n is a palindrome
return (n == rev);
}
int main()
{
int min = 1; // Lower Bound
int max = 200; // Upper Bound
ofstream myfile;
myfile.open("palindrome.txt");
for (int i = min + 1; i < max; i++)
if (isPalindrome(i))
myfile << i << endl;
myfile.close();
return 0;
}