Answer: You would be a person of integrity.
Explanation: Look up Integrity for details.
Answer: True
Explanation:
Yes, the given statement is true that the due to the very low feasibility the IT (Information technology) department are not aware of the hidden backlog that basically contain projects.
The feasibility is the main factor in the IT department as it helps to study whole objective of the project and then also uncover all the strength and weakness of the project so that we can easily go through the details to make the project more efficient and reliable.
To direct the employees and respond to any calls/emails regarding a problem or upgrade that should be changed/fixed. (I don't know if that's what you wanted)
Answer:
B. {1, 2, 2, 3, 3, 4, 5}
Explanation:
Given
The above code segment
Required
Determine which list does not work
The list that didn't work is 
Considering options (A) to (E), we notice that only list B has consecutive duplicate numbers i.e. 2,2 and 3,3
All other list do not have consecutive duplicate numbers
Option B can be represented as:
![nums[0] = 1](https://tex.z-dn.net/?f=nums%5B0%5D%20%3D%201)
![nums[1] = 2](https://tex.z-dn.net/?f=nums%5B1%5D%20%3D%202)
![nums[2] = 2](https://tex.z-dn.net/?f=nums%5B2%5D%20%3D%202)
![nums[3] = 3](https://tex.z-dn.net/?f=nums%5B3%5D%20%3D%203)
![nums[4] = 3](https://tex.z-dn.net/?f=nums%5B4%5D%20%3D%203)
![nums[5] = 4](https://tex.z-dn.net/?f=nums%5B5%5D%20%3D%204)
![nums[6] = 5](https://tex.z-dn.net/?f=nums%5B6%5D%20%3D%205)
if (nums.get(j).equals(nums.get(j + 1)))
The above if condition checks for duplicate numbers.
In (B), when the elements at index 1 and 2 (i.e. 2 and 2) are compared, one of the 2's is removed and the Arraylist becomes:
![nums[0] = 1](https://tex.z-dn.net/?f=nums%5B0%5D%20%3D%201)
![nums[1] = 2](https://tex.z-dn.net/?f=nums%5B1%5D%20%3D%202)
![nums[2] = 3](https://tex.z-dn.net/?f=nums%5B2%5D%20%3D%203)
![nums[3] = 3](https://tex.z-dn.net/?f=nums%5B3%5D%20%3D%203)
![nums[4] = 4](https://tex.z-dn.net/?f=nums%5B4%5D%20%3D%204)
![nums[5] = 5](https://tex.z-dn.net/?f=nums%5B5%5D%20%3D%205)
The next comparison is: index 3 and 4. Meaning that comparison of index 2 and 3 has been skipped.
<em>This is so because of the way the if statement is constructed.</em>
D I,II and III is the answer i think