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.
Solution:
When a customer makes a request or complaint, the goal of customer service is to show the customer how to remain calm and courteous.
Because the work of the costumer care is to serve as customers' first point of contact for complaints, questions, requests, feedback, or any other needs; these professionals are essentially charged with managing relationships between clients and the company.
Thus the required answer is D
Answer:c)both a and b
Explanation: java.lang.Enum class is the class having the enumeration feature and having base class as common. It indulges in the inheritance feature from the java.lang.Object and has the feature of supporting the other class object. .The inheritance of the object from the object class to the enumeration class takes place .Therefore, the correct answer is option(c).