Answer: Lisp which is the short for list processing is a special purpose programming language and it was developed for processing strings which is being exploited in the field of artificial intelligence.
Explanation:
Lisp is used for artificial intelligence as it can compute symbolic expressions, so a common lisp which it later came to be known as is used for development of application with artificial intelligence and is being widely used today. Lisp was actually developed in the early 1980s.
Answer:
File-exchange compatibility.
Explanation:
File exchange compatibility is the aspect of modern productivity apps that allows files generated in a software package to also be accessed from another software product.
In other words, it is that type of feature by which the user creates any file in his desktops software then that file is also compatible with another desktop or any other software also.
The answer is Document Inspector
Answer:
See explaination
Explanation:
//class extends Exception
class ParameterNotAllowedException extends Exception {
//Instance variable
private int input;
//Argumented constructor
public ParameterNotAllowedException(String message, int input) {
super(message);
this.input = input;
}
public int getInput() {
return input;
}
public void setInput(int input) {
this.input = input;
}
atOverride // Replace the "at" with at symbol ie shift 2
public String getMessage() {
//Returns the message
return input+" is invalid. "+super.getMessage();
}
}
class Main {
public static void main(String[] args) throws ParameterNotAllowedException {
int n = -1;
//Throw negative not allowed exception
if(n<0){
throw new ParameterNotAllowedException("negative number",n);
}
}
}