helps us for typing letters, numbers and symbols etc.
 
        
                    
             
        
        
        
Answer:
i am still a beginner in this but i hope it helps.
- add scanner object;
- declare string FavColour;
- print msg to ask user for input
- print msg (" your favourite colour is " + FavColour)
 
        
             
        
        
        
Hi,
JVM - Java Virtual Machine
Hope this helps.
r3t40
        
             
        
        
        
<u>Explanation:</u>
Remember, an algorithm in simple words means a set of instructions or steps to be followed in other to solve a problem.
Note, to decide which commute is cheaper, it means the output of the algorithm should be the cheaper way to commute.
Using pseudocode do the following;
-  determine the inputs and outputs of the problem
-  arrange the identified problem into micro-tasks
- describe each micro-tasks in the pseudocode
-  Test the pseudocode by solving the problem.
                        
 
        
             
        
        
        
Answer:
The main method should simply terminate if the FileNotFoundException occurs.
Explanation:
Considering the full code snippet
snippet:public static void main(String[] args) throws FileNotFoundException
public static void main(String[]) 
represent the entry point method to a java main method 
The addition of
throws FileNotFoundException
widens the scope of the main method to explicitly specifies that an exception named the FileNotFoundException may be thrown.
So, if any part of the code explicitly throws the FileNotFoundException the compiler makes use of this to throw an exception.
By throwing an exception, the main method is not catching any exceptions, instead it handles the FileNotFoundException by throwing it to the source which invoked the main method
This is required by the compiler to terminate the program if the FileNotFoundException occurs.