Which of the following is an example of a functional interface, having a single abstract method
Example: creating the functional interface in java
package com.concretepage;
@FunctionalInterface
public interface Calculator {
long calculate(long num1, long num2);
}