Answer:
Enumerator- The person who collects data by conducting an enquiry or an investigation. Often the enumerator is a trained person for field work.
import java.util.Scanner;
public class JavaApplication33 {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int total = 0;
System.out.println("Enter positive numbers (-1 to stop)");
while (true){
int num = scan.nextInt();
if (num == -1){
break;
}
else{
total += num;
}
}
System.out.println("Sum is "+total);
}
}
I hope this helps!
Answer:
C.Study different organizational structures
Explanation:
The best thing you could do to prepare yourself to work for a company that has embraced globalization is to <u>study different organizational structures.</u>
This would help you to gather knowledge about different organizational working structures and figure out planing strategies to deal with each organization accordingly.
It helps in effective and efficient work output.
I hope the answer was helpful.
Thanks for asking.
The two words that complete the sentence are: selection and bubble.
The complete sentence is: The selection sort usually performs fewer exchanges than the bubble sort.
Both, selection and bubble are sorting algorithms used in computer programs. This is they are procedures to arrange data.
Bubble is the most simple algorithm but it is too slow and impractical, so selecting sort, still simple, performs better than bubble sort.
Selection sort divides the list of data into two parts: one contains the data already sorted and the other has the part of data pending to be sorted.
Bubble sort goes through every pair of elements, compares the two data and moves them if necessary.