Example

public interface InterfaceA {
final static char Name = 'a';
final static int Value = 5;

}
Solution
In the example 'Name' and 'Value' are two fields in interface "InterfaceA." All the chareaters in 'Name' and 'Value' are in not in uppercase. All the charecters of the fields of an Interface should be in upper case

public interface InterfaceA {
final static char NAME = 'a';
final static int VALUE = 5;

}