Ethan and Uma are co-workers who got into an argument about…

Ethan and Uma are co-workers who got into an argument about who would do what part of a project they are both working on. Ethan decided to start spreading a rumor about Uma that she only got her job because she was dating the hiring manager. What kind of counterproductive work behavior is Ethan engaging in?

Joe wants to know if it’s normal to work from home if you ar…

Joe wants to know if it’s normal to work from home if you are sick so he starts a conversation with a co-worker about the flu that is going around hoping to get some information about any informal work from home policies. Which information-seeking tactic is he engaging in?

Suppose that the input stream cin contains the IP address: 2…

Suppose that the input stream cin contains the IP address: 298.173.41.142Assuming that the variables A and B are declared as ints, which of the following code fragments will correctly read the second part of the IP address (173) into the variable B? 1) cin >> A;    cin.ignore(100, ‘.’);    cin >> B; 2) cin >> A;    cin >> B; 3) cin.ignore(100, ‘.’);    cin >> B;  4) cin.get(A);    cin.get(B);