Answer:
technicians
Explanation:
the answer is technicians. in my freshmen year we made flash cards and i still have them so i remember it.
You can do something like this :
Scanner sc = new Scanner(System.in);
int[] nums = new int[4];
for(int i = 0; i < nums.length; i++) {
System.out.println("Enter next number: ");
nums[i] = sc.nextInt();
The third option is correct.
Microscope - 1
Telescope - 2
Ruler - 3
Streak plate - 4
Answer:
defines a class in terms of another class = inheritance
inherits the properties of a base class = derived class
provides only essential information to the world = data abstraction
binds data and functions together = encapsulation
Explanation: