Discuss why different user interfaces require the use of different types of input device. Page 15. What is Secondary Storage? List 3 Storage Mediums: What is ...
mark me brain list 
 
        
             
        
        
        
Answer:
Please find the complete solution in the attached file.
Explanation:
 
        
             
        
        
        
Answer:
<u>Window.java</u>
- public class Window {
-     int width;
-     int height;
- 
-     public Window(int width, int height){
-         this.width = width;
-         this.height = height;
-     }
-     public int getWidth(){
-         return width;
-     }
-     public int getHeight(){
-         return height;
-     }
- 
-     public int getClientAreaHeight(){
-         return getHeight();
-     }
- }
<u>Main.java</u>
- public class Main {
-     public static void main (String [] args) {
-         Window win1 = new Window(12, 15);
-         System.out.println(win1.getClientAreaHeight());
-     }
- }
Explanation:
<u>Window.java</u>
There is a Window class with two int type attributes, width and height (Line 1 - 3). 
The constructor of this class will take two inputs, width and height and set these input to its attributes (Line 5 - 8). There are two methods getWidth and getHeight which will return the value of attributes width and height, respectively (Line 10 - 16). 
The required new method getClientAreaHeight is defined in line 18 -20. This method will call the getHeight method to return the height value of the window (Line 19). 
<u>Main.java</u>
We test the Window class by creating one Window instance and call the getClientAreaHeight method and print the return output (Line 1 -6).
We shall see 15 is printed.
 
        
             
        
        
        
Thesaurus is a tool use to find the synonym of the of a word.
Here's the way to use the thesaurus in the word processor.
=> highlight the word, then right-click, Navigate to synonyms and the words will  display.
        
                    
             
        
        
        
Answer:
Microsoft Excel
Explanation:
Microsoft Excel is a Microsoft application package. It is a spreadsheet application used to analyse and manipulate data. It has columns which are referred to fields and rows also known as records.There are various features in excel that used to create statistical and graphical esctasies and data presentations.
It can be used to create template for CVs/resumes, Bank draft, receipts and invoice etc.