Answer:
The correct answer for the given question is option(B) i.e cyberloafing.
Explanation:
Cyberloafing is defined as using the internet for non-work activities such as sending personal emails, chatting on social media sites etc during working .In this the employee using the internet for their personal use during working hours.
False. You can filter by multiple columns.
Answer:
A
Explanation:
A common approach to a daily scrum (although not the only approach) is for each member of the development team to address the following three daily scrum questions:
1. What did I accomplish since the last daily scrum?
2. What do I plan to work on by the next daily scrum?
3. What are the obstacles or impediments that are preventing me from making progress?
Development teams are typically between five to nine people. Each development team member should need no more than 90 seconds to address the three questions listed above. So, if you had a team of nine people, each of whom took 90 seconds to cover the questions, combined with some overhead of getting the meeting started and transitioning from person to person, you would end up with a meeting duration of about 15 minutes.
To emphasize that 15 minutes should be thought of as a timeboxed limit.
Answer:
D: 4:1
Explanation:
If you divide 48 by 12, you get 4. 12 is 1/4 of 48. Therefore, you keep it at 4:1.
Answer:
def encrypt_digit(digit):
if type(digit) is int or float:
digit = str(digit)
hold = list()
for x in digit:
d = str((int(x) + 3)%10)
hold.append(d)
first = hold.pop(0)
second = hold.pop(0)
third = hold.pop(0)
fourth = hold.pop()
print(int("".join([third,fourth, first, second])))
encrypt_digit(7836)
Explanation:
The python function accepts a four-digit parameter which represents the data transmitted over the company's telephone network. The function encrypts the data by adding 3 to each digit and getting the modulus of division 10, then the digits are swapped and printed out encrypted and ready for transmission.