Answer:
The management dashboard is the visual and display the KPI ( Key performance indicator) and metrics for monitoring the specific process and department.
It is basically used for checking whether the organization achieve or meet its specific goals not as per the requirement of the particular department in the organization.
The main part of the management dashboard is that it provide the visibility and alignment in the particular organization so that it meets according to the requirements of the organization. The basic requirement in the organization are:
- Business user
- Organization needs
- Information technology (IT) needs
Answer: 3
Explanation:
Because X = 18 and our condition given to the code if > and < which do not match with the input so it prints 3.
Answer:
Thank you have a nice day:)
When numbers are divided, the integer portion is kept and the remainder is disregarded (meaning 10/9 would return 1). Following this format, we get the answer of <span>6 6 6 3 7 7 9 5 8 8.
I also see that this program can be optimized because you use the same for loop twice, and both of them manipulate list elements in some way. A more optimized program would be:
</span><span>int a [] = {64 , 66 , 67 , 37 , 73 , 70 , 95 , 52 , 81 , 82};
for (int i = 0; i < a.length; i++) {
a[i] = a[i] / 10;
</span>System.out.print(a[i] + " ");<span>
}
Or maybe you don't need to store the list values for later on. You could do:
</span>for (int i = 0; i < a.length; i++) {
System.out.print(a[i] / 10 + " ");
}
In any situation, your answer is choice 2.